From cdde11de2d2b845f4342677a133d734c9600f653 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Thu, 17 Oct 2019 21:36:13 +0200 Subject: [PATCH 01/13] Ping replaced with PingMonitor --- .../NETworkManager/ApplicationViewManager.cs | 8 +- .../Controls/DragablzTabHostWindow.xaml.cs | 2 +- Source/NETworkManager/MainWindow.xaml.cs | 21 +- .../Documentation/DocumentationManager.cs | 2 +- .../Models/Export/ExportManager.cs | 2 +- Source/NETworkManager/NETworkManager.csproj | 16 +- Source/NETworkManager/ProfileViewManager.cs | 2 +- .../Localization/Strings.Designer.cs | 9 + .../Resources/Localization/Strings.resx | 3 + Source/NETworkManager/SettingsViewManager.cs | 8 +- ...stViewModel.cs => PingMonitorViewModel.cs} | 126 +++---- .../ViewModels/SettingsViewModel.cs | 2 +- Source/NETworkManager/Views/PingHostView.xaml | 331 ----------------- .../NETworkManager/Views/PingHostView.xaml.cs | 53 --- .../NETworkManager/Views/PingMonitorView.xaml | 346 ++++++++++++++++++ .../Views/PingMonitorView.xaml.cs | 34 ++ 16 files changed, 478 insertions(+), 487 deletions(-) rename Source/NETworkManager/ViewModels/{PingHostViewModel.cs => PingMonitorViewModel.cs} (78%) delete mode 100644 Source/NETworkManager/Views/PingHostView.xaml delete mode 100644 Source/NETworkManager/Views/PingHostView.xaml.cs create mode 100644 Source/NETworkManager/Views/PingMonitorView.xaml create mode 100644 Source/NETworkManager/Views/PingMonitorView.xaml.cs diff --git a/Source/NETworkManager/ApplicationViewManager.cs b/Source/NETworkManager/ApplicationViewManager.cs index f2cce233a..3f6aa78aa 100644 --- a/Source/NETworkManager/ApplicationViewManager.cs +++ b/Source/NETworkManager/ApplicationViewManager.cs @@ -34,8 +34,8 @@ public static string GetTranslatedNameByName(Name name) return Resources.Localization.Strings.IPScanner; case Name.PortScanner: return Resources.Localization.Strings.PortScanner; - case Name.Ping: - return Resources.Localization.Strings.Ping; + case Name.PingMonitor: + return Resources.Localization.Strings.PingMonitor; case Name.Traceroute: return Resources.Localization.Strings.Traceroute; case Name.DNSLookup: @@ -92,7 +92,7 @@ public static Canvas GetIconByName(Name name) case Name.PortScanner: canvas.Children.Add(new PackIconModern { Kind = PackIconModernKind.NetworkPort }); break; - case Name.Ping: + case Name.PingMonitor: canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.LanConnect }); break; case Name.Traceroute: @@ -156,7 +156,7 @@ public enum Name WiFi, IPScanner, PortScanner, - Ping, + PingMonitor, Traceroute, DNSLookup, RemoteDesktop, diff --git a/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs b/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs index e0247c593..646c49409 100644 --- a/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs +++ b/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs @@ -95,7 +95,7 @@ private void CloseItemAction(ItemActionCallbackArgs args) case ApplicationViewManager.Name.PortScanner: ((PortScannerView)((DragablzTabItem)args.DragablzItem.Content).View).CloseTab(); break; - case ApplicationViewManager.Name.Ping: + case ApplicationViewManager.Name.PingMonitor: ((PingView)((DragablzTabItem)args.DragablzItem.Content).View).CloseTab(); break; case ApplicationViewManager.Name.Traceroute: diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index 89d55aa05..fd52dc97d 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -23,7 +23,6 @@ using NETworkManager.ViewModels; using NETworkManager.Models.EventSystem; using ContextMenu = System.Windows.Controls.ContextMenu; -using DnsClient; namespace NETworkManager { @@ -473,7 +472,7 @@ private async void MetroWindowMain_Closing(object sender, CancelEventArgs e) private WiFiView _wiFiView; private IPScannerHostView _ipScannerHostView; private PortScannerHostView _portScannerHostView; - private PingHostView _pingHostView; + private PingMonitorView _pingMonitorView; private TracerouteHostView _tracerouteHostView; private DNSLookupHostView _dnsLookupHostView; private RemoteDesktopHostView _remoteDesktopHostView; @@ -560,13 +559,13 @@ private void ChangeApplicationView(ApplicationViewManager.Name name, bool refres ContentControlApplication.Content = _portScannerHostView; break; - case ApplicationViewManager.Name.Ping: - if (_pingHostView == null) - _pingHostView = new PingHostView(); + case ApplicationViewManager.Name.PingMonitor: + if (_pingMonitorView == null) + _pingMonitorView = new PingMonitorView(); else - _pingHostView.OnViewVisible(); + _pingMonitorView.OnViewVisible(); - ContentControlApplication.Content = _pingHostView; + ContentControlApplication.Content = _pingMonitorView; break; case ApplicationViewManager.Name.Traceroute: if (_tracerouteHostView == null) @@ -734,8 +733,8 @@ private void EventSystem_RedirectProfileToApplicationEvent(object sender, EventA case ApplicationViewManager.Name.PortScanner: _portScannerHostView.AddTab(profile.Profile); break; - case ApplicationViewManager.Name.Ping: - _pingHostView.AddTab(profile.Profile); + case ApplicationViewManager.Name.PingMonitor: + //_pingMonitorView.AddTab(profile.Profile); break; case ApplicationViewManager.Name.Traceroute: _tracerouteHostView.AddTab(profile.Profile); @@ -790,8 +789,8 @@ private void EventSystem_RedirectDataToApplicationEvent(object sender, EventArgs case ApplicationViewManager.Name.PortScanner: _portScannerHostView.AddTab(data.Args); break; - case ApplicationViewManager.Name.Ping: - _pingHostView.AddTab(data.Args); + case ApplicationViewManager.Name.PingMonitor: + // _pingMonitorView.AddTab(data.Args); break; case ApplicationViewManager.Name.Traceroute: _tracerouteHostView.AddTab(data.Args); diff --git a/Source/NETworkManager/Models/Documentation/DocumentationManager.cs b/Source/NETworkManager/Models/Documentation/DocumentationManager.cs index 5b397f6af..73a2bd346 100644 --- a/Source/NETworkManager/Models/Documentation/DocumentationManager.cs +++ b/Source/NETworkManager/Models/Documentation/DocumentationManager.cs @@ -87,7 +87,7 @@ public static DocumentationIdentifier GetIdentifierByAppliactionName(Application return DocumentationIdentifier.ApplicationIpScanner; case ApplicationViewManager.Name.PortScanner: return DocumentationIdentifier.ApplicationPortScanner; - case ApplicationViewManager.Name.Ping: + case ApplicationViewManager.Name.PingMonitor: return DocumentationIdentifier.ApplicationPing; case ApplicationViewManager.Name.Traceroute: return DocumentationIdentifier.ApplicationTraceroute; diff --git a/Source/NETworkManager/Models/Export/ExportManager.cs b/Source/NETworkManager/Models/Export/ExportManager.cs index b815514b1..14bf45e33 100644 --- a/Source/NETworkManager/Models/Export/ExportManager.cs +++ b/Source/NETworkManager/Models/Export/ExportManager.cs @@ -436,7 +436,7 @@ public static void CreateXML(IEnumerable collection, string filePath) { var document = new XDocument(DefaultXDeclaration, - new XElement(ApplicationViewManager.Name.Ping.ToString(), + new XElement(ApplicationViewManager.Name.PingMonitor.ToString(), new XElement(nameof(PingInfo) + "s", from info in collection diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj index 1d1031c2d..088342e13 100644 --- a/Source/NETworkManager/NETworkManager.csproj +++ b/Source/NETworkManager/NETworkManager.csproj @@ -268,6 +268,7 @@ + @@ -300,7 +301,6 @@ - @@ -340,6 +340,9 @@ CustomCommandDialog.xaml + + PingMonitorView.xaml + WiFiView.xaml @@ -427,9 +430,6 @@ PuTTYHostView.xaml - - PingHostView.xaml - PingSettingsView.xaml @@ -689,6 +689,10 @@ MSBuild:Compile Designer + + MSBuild:Compile + Designer + MSBuild:Compile Designer @@ -805,10 +809,6 @@ MSBuild:Compile Designer - - MSBuild:Compile - Designer - MSBuild:Compile Designer diff --git a/Source/NETworkManager/ProfileViewManager.cs b/Source/NETworkManager/ProfileViewManager.cs index 7bd452c62..8bcebd8dd 100644 --- a/Source/NETworkManager/ProfileViewManager.cs +++ b/Source/NETworkManager/ProfileViewManager.cs @@ -15,7 +15,7 @@ public static class ProfileViewManager new ProfileViewInfo(Name.NetworkInterface, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.NetworkInterface)), new ProfileViewInfo(Name.IPScanner, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.IPScanner)), new ProfileViewInfo(Name.PortScanner,ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PortScanner)), - new ProfileViewInfo(Name.Ping, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Ping)), + new ProfileViewInfo(Name.Ping, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PingMonitor)), new ProfileViewInfo(Name.Traceroute, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Traceroute)), new ProfileViewInfo(Name.DNSLookup, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.DNSLookup)), new ProfileViewInfo(Name.RemoteDesktop, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.RemoteDesktop)), diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index e741a5a3f..f7c55d1ba 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -4012,6 +4012,15 @@ public class Strings { } } + /// + /// Looks up a localized string similar to Ping Monitor. + /// + public static string PingMonitor { + get { + return ResourceManager.GetString("PingMonitor", resourceCulture); + } + } + /// /// Looks up a localized string similar to Pink. /// diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index f1881db89..e73cef224 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -2453,4 +2453,7 @@ URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose Show error message + + Ping Monitor + \ No newline at end of file diff --git a/Source/NETworkManager/SettingsViewManager.cs b/Source/NETworkManager/SettingsViewManager.cs index 6badd3807..88ba20928 100644 --- a/Source/NETworkManager/SettingsViewManager.cs +++ b/Source/NETworkManager/SettingsViewManager.cs @@ -24,7 +24,7 @@ public static class SettingsViewManager new SettingsViewInfo(Name.Dashboard, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Dashboard), Group.Applications), new SettingsViewInfo(Name.IPScanner, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.IPScanner), Group.Applications), new SettingsViewInfo(Name.PortScanner,ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PortScanner), Group.Applications), - new SettingsViewInfo(Name.Ping, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Ping), Group.Applications), + new SettingsViewInfo(Name.PingMonitor, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PingMonitor), Group.Applications), new SettingsViewInfo(Name.Traceroute, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Traceroute), Group.Applications), new SettingsViewInfo(Name.DNSLookup, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.DNSLookup), Group.Applications ), new SettingsViewInfo(Name.RemoteDesktop, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.RemoteDesktop), Group.Applications), @@ -67,8 +67,8 @@ public static string TranslateName(Name name) return Resources.Localization.Strings.IPScanner; case Name.PortScanner: return Resources.Localization.Strings.PortScanner; - case Name.Ping: - return Resources.Localization.Strings.Ping; + case Name.PingMonitor: + return Resources.Localization.Strings.PingMonitor; case Name.Traceroute: return Resources.Localization.Strings.Traceroute; case Name.DNSLookup: @@ -122,7 +122,7 @@ public enum Name Dashboard, IPScanner, PortScanner, - Ping, + PingMonitor, Traceroute, DNSLookup, RemoteDesktop, diff --git a/Source/NETworkManager/ViewModels/PingHostViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs similarity index 78% rename from Source/NETworkManager/ViewModels/PingHostViewModel.cs rename to Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index de7dfa452..1d0acd521 100644 --- a/Source/NETworkManager/ViewModels/PingHostViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -1,50 +1,74 @@ -using System.Collections.ObjectModel; -using NETworkManager.Controls; -using Dragablz; +using NETworkManager.Models.Settings; +using System.Net; using System.Windows.Input; -using NETworkManager.Views; -using NETworkManager.Utilities; -using NETworkManager.Models.Settings; -using System.ComponentModel; +using MahApps.Metro.Controls.Dialogs; +using System.Windows; using System; +using NETworkManager.Models.Network; +using System.ComponentModel; using System.Windows.Data; +using NETworkManager.Utilities; +using System.Threading.Tasks; using System.Linq; -using MahApps.Metro.Controls.Dialogs; -using System.Windows; +using MahApps.Metro.Controls; namespace NETworkManager.ViewModels { - public class PingHostViewModel : ViewModelBase, IProfileManager + public class PingMonitorViewModel : ViewModelBase, IProfileManager { - #region Variables + #region Variables private readonly IDialogCoordinator _dialogCoordinator; - public IInterTabClient InterTabClient { get; } - public ObservableCollection TabItems { get; } - private readonly bool _isLoading; - private int _tabId; + private string _host; + public string Host + { + get => _host; + set + { + if (value == _host) + return; + + _host = value; + OnPropertyChanged(); + } + } + + public ICollectionView HostHistoryView { get; } - private int _selectedTabIndex; - public int SelectedTabIndex + private bool _displayStatusMessage; + public bool DisplayStatusMessage { - get => _selectedTabIndex; + get => _displayStatusMessage; set { - if (value == _selectedTabIndex) + if (value == _displayStatusMessage) return; - _selectedTabIndex = value; + _displayStatusMessage = value; OnPropertyChanged(); } } - #region Profiles + private string _statusMessage; + public string StatusMessage + { + get => _statusMessage; + set + { + if (value == _statusMessage) + return; + _statusMessage = value; + OnPropertyChanged(); + } + } + + #region Profiles public ICollectionView Profiles { get; } - private ProfileInfo _selectedProfile = new ProfileInfo(); + private ProfileInfo _selectedProfile; public ProfileInfo SelectedProfile { get => _selectedProfile; @@ -52,7 +76,7 @@ public ProfileInfo SelectedProfile { if (value == _selectedProfile) return; - + _selectedProfile = value; OnPropertyChanged(); } @@ -123,27 +147,18 @@ public GridLength ProfileWidth #endregion #region Constructor, load settings - public PingHostViewModel(IDialogCoordinator instance) + public PingMonitorViewModel(IDialogCoordinator instance) { - _isLoading = true; + _isLoading = true; _dialogCoordinator = instance; - InterTabClient = new DragablzInterTabClient(ApplicationViewManager.Name.Ping); - - TabItems = new ObservableCollection - { - new DragablzTabItem(Resources.Localization.Strings.NewTab, new PingView(_tabId), _tabId) - }; - Profiles = new CollectionViewSource { Source = ProfileManager.Profiles }.View; Profiles.GroupDescriptions.Add(new PropertyGroupDescription(nameof(ProfileInfo.Group))); Profiles.SortDescriptions.Add(new SortDescription(nameof(ProfileInfo.Group), ListSortDirection.Ascending)); Profiles.SortDescriptions.Add(new SortDescription(nameof(ProfileInfo.Name), ListSortDirection.Ascending)); Profiles.Filter = o => { - - if (!(o is ProfileInfo info)) return false; @@ -163,13 +178,14 @@ public PingHostViewModel(IDialogCoordinator instance) // This will select the first entry as selected item... SelectedProfile = Profiles.SourceCollection.Cast().Where(x => x.Ping_Enabled).OrderBy(x => x.Group).ThenBy(x => x.Name).FirstOrDefault(); + LoadSettings(); _isLoading = false; } private void LoadSettings() - { + { ExpandProfileView = SettingsManager.Current.Ping_ExpandProfileView; ProfileWidth = ExpandProfileView ? new GridLength(SettingsManager.Current.Ping_ProfileWidth) : new GridLength(GlobalStaticConfiguration.Profile_WidthCollapsed); @@ -178,20 +194,8 @@ private void LoadSettings() } #endregion - #region ICommand & Actions - public ICommand AddTabCommand => new RelayCommand(p => AddTabAction()); - - private void AddTabAction() - { - AddTab(); - } - - public ICommand PingProfileCommand => new RelayCommand(p => PingProfileAction()); - - private void PingProfileAction() - { - AddTab(SelectedProfile); - } + #region ICommands & Actions + public ICommand AddProfileCommand => new RelayCommand(p => AddProfileAction()); @@ -234,16 +238,10 @@ private void ClearSearchAction() { Search = string.Empty; } - - public ItemActionCallback CloseItemCommand => CloseItemAction; - - private static void CloseItemAction(ItemActionCallbackArgs args) - { - ((args.DragablzItem.Content as DragablzTabItem)?.View as PingView)?.CloseTab(); - } #endregion #region Methods + private void ResizeProfile(bool dueToChangedSize) { _canProfileWidthChange = false; @@ -268,20 +266,6 @@ private void ResizeProfile(bool dueToChangedSize) _canProfileWidthChange = true; } - public void AddTab(string host = null) - { - _tabId++; - - TabItems.Add(new DragablzTabItem(host ?? Resources.Localization.Strings.NewTab, new PingView(_tabId, host), _tabId)); - - SelectedTabIndex = TabItems.Count - 1; - } - - public void AddTab(ProfileInfo profile) - { - AddTab(profile.Ping_Host); - } - public void OnViewVisible() { RefreshProfiles(); @@ -308,4 +292,4 @@ public void OnProfileDialogClose() } #endregion } -} \ No newline at end of file +} diff --git a/Source/NETworkManager/ViewModels/SettingsViewModel.cs b/Source/NETworkManager/ViewModels/SettingsViewModel.cs index 34532eeaa..cee926e20 100644 --- a/Source/NETworkManager/ViewModels/SettingsViewModel.cs +++ b/Source/NETworkManager/ViewModels/SettingsViewModel.cs @@ -248,7 +248,7 @@ private void ChangeSettingsContent(SettingsViewInfo settingsViewInfo) SettingsContent = _portScannerSettingsView; break; - case SettingsViewManager.Name.Ping: + case SettingsViewManager.Name.PingMonitor: if (_pingSettingsViewModel == null) _pingSettingsViewModel = new PingSettingsView(); diff --git a/Source/NETworkManager/Views/PingHostView.xaml b/Source/NETworkManager/Views/PingHostView.xaml deleted file mode 100644 index fc395256a..000000000 --- a/Source/NETworkManager/Views/PingHostView.xaml +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Source/NETworkManager/Views/PingHostView.xaml.cs b/Source/NETworkManager/Views/PingHostView.xaml.cs deleted file mode 100644 index d4198e14e..000000000 --- a/Source/NETworkManager/Views/PingHostView.xaml.cs +++ /dev/null @@ -1,53 +0,0 @@ -using MahApps.Metro.Controls.Dialogs; -using NETworkManager.ViewModels; -using System.Windows; -using System.Windows.Controls; -using NETworkManager.Models.Settings; - -namespace NETworkManager.Views -{ - public partial class PingHostView - { - private readonly PingHostViewModel _viewModel = new PingHostViewModel(DialogCoordinator.Instance); - - public PingHostView() - { - InitializeComponent(); - DataContext = _viewModel; - - InterTabController.Partition = ApplicationViewManager.Name.Ping.ToString(); - } - - private void ContextMenu_Opened(object sender, RoutedEventArgs e) - { - if (sender is ContextMenu menu) - menu.DataContext = _viewModel; - } - - private void ListBoxItem_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e) - { - if (e.ChangedButton == System.Windows.Input.MouseButton.Left) - _viewModel.PingProfileCommand.Execute(null); - } - - public void AddTab(string host) - { - _viewModel.AddTab(host); - } - - public void AddTab(ProfileInfo profile) - { - _viewModel.AddTab(profile); - } - - public void OnViewHide() - { - _viewModel.OnViewHide(); - } - - public void OnViewVisible() - { - _viewModel.OnViewVisible(); - } - } -} diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml b/Source/NETworkManager/Views/PingMonitorView.xaml new file mode 100644 index 000000000..80002a407 --- /dev/null +++ b/Source/NETworkManager/Views/PingMonitorView.xaml @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml.cs b/Source/NETworkManager/Views/PingMonitorView.xaml.cs new file mode 100644 index 000000000..23f9e11d0 --- /dev/null +++ b/Source/NETworkManager/Views/PingMonitorView.xaml.cs @@ -0,0 +1,34 @@ +using MahApps.Metro.Controls.Dialogs; +using NETworkManager.ViewModels; +using System.Windows; +using System.Windows.Controls; + +namespace NETworkManager.Views +{ + public partial class PingMonitorView + { + private readonly PingMonitorViewModel _viewModel = new PingMonitorViewModel(DialogCoordinator.Instance); + + public PingMonitorView() + { + InitializeComponent(); + DataContext = _viewModel; + } + + private void ContextMenu_Opened(object sender, RoutedEventArgs e) + { + if (sender is ContextMenu menu) + menu.DataContext = _viewModel; + } + + public void OnViewHide() + { + _viewModel.OnViewHide(); + } + + public void OnViewVisible() + { + _viewModel.OnViewVisible(); + } + } +} From 4ea021a07eb7440e0195cc497117a70e1c758433 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Thu, 17 Oct 2019 21:43:51 +0200 Subject: [PATCH 02/13] Revert "Ping replaced with PingMonitor" This reverts commit cdde11de2d2b845f4342677a133d734c9600f653. --- .../NETworkManager/ApplicationViewManager.cs | 8 +- .../Controls/DragablzTabHostWindow.xaml.cs | 2 +- Source/NETworkManager/MainWindow.xaml.cs | 21 +- .../Documentation/DocumentationManager.cs | 2 +- .../Models/Export/ExportManager.cs | 2 +- Source/NETworkManager/NETworkManager.csproj | 16 +- Source/NETworkManager/ProfileViewManager.cs | 2 +- .../Localization/Strings.Designer.cs | 9 - .../Resources/Localization/Strings.resx | 3 - Source/NETworkManager/SettingsViewManager.cs | 8 +- ...nitorViewModel.cs => PingHostViewModel.cs} | 126 ++++--- .../ViewModels/SettingsViewModel.cs | 2 +- Source/NETworkManager/Views/PingHostView.xaml | 331 +++++++++++++++++ .../NETworkManager/Views/PingHostView.xaml.cs | 53 +++ .../NETworkManager/Views/PingMonitorView.xaml | 346 ------------------ .../Views/PingMonitorView.xaml.cs | 34 -- 16 files changed, 487 insertions(+), 478 deletions(-) rename Source/NETworkManager/ViewModels/{PingMonitorViewModel.cs => PingHostViewModel.cs} (78%) create mode 100644 Source/NETworkManager/Views/PingHostView.xaml create mode 100644 Source/NETworkManager/Views/PingHostView.xaml.cs delete mode 100644 Source/NETworkManager/Views/PingMonitorView.xaml delete mode 100644 Source/NETworkManager/Views/PingMonitorView.xaml.cs diff --git a/Source/NETworkManager/ApplicationViewManager.cs b/Source/NETworkManager/ApplicationViewManager.cs index 3f6aa78aa..f2cce233a 100644 --- a/Source/NETworkManager/ApplicationViewManager.cs +++ b/Source/NETworkManager/ApplicationViewManager.cs @@ -34,8 +34,8 @@ public static string GetTranslatedNameByName(Name name) return Resources.Localization.Strings.IPScanner; case Name.PortScanner: return Resources.Localization.Strings.PortScanner; - case Name.PingMonitor: - return Resources.Localization.Strings.PingMonitor; + case Name.Ping: + return Resources.Localization.Strings.Ping; case Name.Traceroute: return Resources.Localization.Strings.Traceroute; case Name.DNSLookup: @@ -92,7 +92,7 @@ public static Canvas GetIconByName(Name name) case Name.PortScanner: canvas.Children.Add(new PackIconModern { Kind = PackIconModernKind.NetworkPort }); break; - case Name.PingMonitor: + case Name.Ping: canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.LanConnect }); break; case Name.Traceroute: @@ -156,7 +156,7 @@ public enum Name WiFi, IPScanner, PortScanner, - PingMonitor, + Ping, Traceroute, DNSLookup, RemoteDesktop, diff --git a/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs b/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs index 646c49409..e0247c593 100644 --- a/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs +++ b/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs @@ -95,7 +95,7 @@ private void CloseItemAction(ItemActionCallbackArgs args) case ApplicationViewManager.Name.PortScanner: ((PortScannerView)((DragablzTabItem)args.DragablzItem.Content).View).CloseTab(); break; - case ApplicationViewManager.Name.PingMonitor: + case ApplicationViewManager.Name.Ping: ((PingView)((DragablzTabItem)args.DragablzItem.Content).View).CloseTab(); break; case ApplicationViewManager.Name.Traceroute: diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index fd52dc97d..89d55aa05 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -23,6 +23,7 @@ using NETworkManager.ViewModels; using NETworkManager.Models.EventSystem; using ContextMenu = System.Windows.Controls.ContextMenu; +using DnsClient; namespace NETworkManager { @@ -472,7 +473,7 @@ private async void MetroWindowMain_Closing(object sender, CancelEventArgs e) private WiFiView _wiFiView; private IPScannerHostView _ipScannerHostView; private PortScannerHostView _portScannerHostView; - private PingMonitorView _pingMonitorView; + private PingHostView _pingHostView; private TracerouteHostView _tracerouteHostView; private DNSLookupHostView _dnsLookupHostView; private RemoteDesktopHostView _remoteDesktopHostView; @@ -559,13 +560,13 @@ private void ChangeApplicationView(ApplicationViewManager.Name name, bool refres ContentControlApplication.Content = _portScannerHostView; break; - case ApplicationViewManager.Name.PingMonitor: - if (_pingMonitorView == null) - _pingMonitorView = new PingMonitorView(); + case ApplicationViewManager.Name.Ping: + if (_pingHostView == null) + _pingHostView = new PingHostView(); else - _pingMonitorView.OnViewVisible(); + _pingHostView.OnViewVisible(); - ContentControlApplication.Content = _pingMonitorView; + ContentControlApplication.Content = _pingHostView; break; case ApplicationViewManager.Name.Traceroute: if (_tracerouteHostView == null) @@ -733,8 +734,8 @@ private void EventSystem_RedirectProfileToApplicationEvent(object sender, EventA case ApplicationViewManager.Name.PortScanner: _portScannerHostView.AddTab(profile.Profile); break; - case ApplicationViewManager.Name.PingMonitor: - //_pingMonitorView.AddTab(profile.Profile); + case ApplicationViewManager.Name.Ping: + _pingHostView.AddTab(profile.Profile); break; case ApplicationViewManager.Name.Traceroute: _tracerouteHostView.AddTab(profile.Profile); @@ -789,8 +790,8 @@ private void EventSystem_RedirectDataToApplicationEvent(object sender, EventArgs case ApplicationViewManager.Name.PortScanner: _portScannerHostView.AddTab(data.Args); break; - case ApplicationViewManager.Name.PingMonitor: - // _pingMonitorView.AddTab(data.Args); + case ApplicationViewManager.Name.Ping: + _pingHostView.AddTab(data.Args); break; case ApplicationViewManager.Name.Traceroute: _tracerouteHostView.AddTab(data.Args); diff --git a/Source/NETworkManager/Models/Documentation/DocumentationManager.cs b/Source/NETworkManager/Models/Documentation/DocumentationManager.cs index 73a2bd346..5b397f6af 100644 --- a/Source/NETworkManager/Models/Documentation/DocumentationManager.cs +++ b/Source/NETworkManager/Models/Documentation/DocumentationManager.cs @@ -87,7 +87,7 @@ public static DocumentationIdentifier GetIdentifierByAppliactionName(Application return DocumentationIdentifier.ApplicationIpScanner; case ApplicationViewManager.Name.PortScanner: return DocumentationIdentifier.ApplicationPortScanner; - case ApplicationViewManager.Name.PingMonitor: + case ApplicationViewManager.Name.Ping: return DocumentationIdentifier.ApplicationPing; case ApplicationViewManager.Name.Traceroute: return DocumentationIdentifier.ApplicationTraceroute; diff --git a/Source/NETworkManager/Models/Export/ExportManager.cs b/Source/NETworkManager/Models/Export/ExportManager.cs index 14bf45e33..b815514b1 100644 --- a/Source/NETworkManager/Models/Export/ExportManager.cs +++ b/Source/NETworkManager/Models/Export/ExportManager.cs @@ -436,7 +436,7 @@ public static void CreateXML(IEnumerable collection, string filePath) { var document = new XDocument(DefaultXDeclaration, - new XElement(ApplicationViewManager.Name.PingMonitor.ToString(), + new XElement(ApplicationViewManager.Name.Ping.ToString(), new XElement(nameof(PingInfo) + "s", from info in collection diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj index 088342e13..1d1031c2d 100644 --- a/Source/NETworkManager/NETworkManager.csproj +++ b/Source/NETworkManager/NETworkManager.csproj @@ -268,7 +268,6 @@ - @@ -301,6 +300,7 @@ + @@ -340,9 +340,6 @@ CustomCommandDialog.xaml - - PingMonitorView.xaml - WiFiView.xaml @@ -430,6 +427,9 @@ PuTTYHostView.xaml + + PingHostView.xaml + PingSettingsView.xaml @@ -689,10 +689,6 @@ MSBuild:Compile Designer - - MSBuild:Compile - Designer - MSBuild:Compile Designer @@ -809,6 +805,10 @@ MSBuild:Compile Designer + + MSBuild:Compile + Designer + MSBuild:Compile Designer diff --git a/Source/NETworkManager/ProfileViewManager.cs b/Source/NETworkManager/ProfileViewManager.cs index 8bcebd8dd..7bd452c62 100644 --- a/Source/NETworkManager/ProfileViewManager.cs +++ b/Source/NETworkManager/ProfileViewManager.cs @@ -15,7 +15,7 @@ public static class ProfileViewManager new ProfileViewInfo(Name.NetworkInterface, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.NetworkInterface)), new ProfileViewInfo(Name.IPScanner, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.IPScanner)), new ProfileViewInfo(Name.PortScanner,ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PortScanner)), - new ProfileViewInfo(Name.Ping, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PingMonitor)), + new ProfileViewInfo(Name.Ping, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Ping)), new ProfileViewInfo(Name.Traceroute, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Traceroute)), new ProfileViewInfo(Name.DNSLookup, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.DNSLookup)), new ProfileViewInfo(Name.RemoteDesktop, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.RemoteDesktop)), diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index f7c55d1ba..e741a5a3f 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -4012,15 +4012,6 @@ public class Strings { } } - /// - /// Looks up a localized string similar to Ping Monitor. - /// - public static string PingMonitor { - get { - return ResourceManager.GetString("PingMonitor", resourceCulture); - } - } - /// /// Looks up a localized string similar to Pink. /// diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index e73cef224..f1881db89 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -2453,7 +2453,4 @@ URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose Show error message - - Ping Monitor - \ No newline at end of file diff --git a/Source/NETworkManager/SettingsViewManager.cs b/Source/NETworkManager/SettingsViewManager.cs index 88ba20928..6badd3807 100644 --- a/Source/NETworkManager/SettingsViewManager.cs +++ b/Source/NETworkManager/SettingsViewManager.cs @@ -24,7 +24,7 @@ public static class SettingsViewManager new SettingsViewInfo(Name.Dashboard, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Dashboard), Group.Applications), new SettingsViewInfo(Name.IPScanner, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.IPScanner), Group.Applications), new SettingsViewInfo(Name.PortScanner,ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PortScanner), Group.Applications), - new SettingsViewInfo(Name.PingMonitor, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PingMonitor), Group.Applications), + new SettingsViewInfo(Name.Ping, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Ping), Group.Applications), new SettingsViewInfo(Name.Traceroute, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Traceroute), Group.Applications), new SettingsViewInfo(Name.DNSLookup, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.DNSLookup), Group.Applications ), new SettingsViewInfo(Name.RemoteDesktop, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.RemoteDesktop), Group.Applications), @@ -67,8 +67,8 @@ public static string TranslateName(Name name) return Resources.Localization.Strings.IPScanner; case Name.PortScanner: return Resources.Localization.Strings.PortScanner; - case Name.PingMonitor: - return Resources.Localization.Strings.PingMonitor; + case Name.Ping: + return Resources.Localization.Strings.Ping; case Name.Traceroute: return Resources.Localization.Strings.Traceroute; case Name.DNSLookup: @@ -122,7 +122,7 @@ public enum Name Dashboard, IPScanner, PortScanner, - PingMonitor, + Ping, Traceroute, DNSLookup, RemoteDesktop, diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingHostViewModel.cs similarity index 78% rename from Source/NETworkManager/ViewModels/PingMonitorViewModel.cs rename to Source/NETworkManager/ViewModels/PingHostViewModel.cs index 1d0acd521..de7dfa452 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingHostViewModel.cs @@ -1,74 +1,50 @@ -using NETworkManager.Models.Settings; -using System.Net; +using System.Collections.ObjectModel; +using NETworkManager.Controls; +using Dragablz; using System.Windows.Input; -using MahApps.Metro.Controls.Dialogs; -using System.Windows; -using System; -using NETworkManager.Models.Network; +using NETworkManager.Views; +using NETworkManager.Utilities; +using NETworkManager.Models.Settings; using System.ComponentModel; +using System; using System.Windows.Data; -using NETworkManager.Utilities; -using System.Threading.Tasks; using System.Linq; -using MahApps.Metro.Controls; +using MahApps.Metro.Controls.Dialogs; +using System.Windows; namespace NETworkManager.ViewModels { - public class PingMonitorViewModel : ViewModelBase, IProfileManager + public class PingHostViewModel : ViewModelBase, IProfileManager { - #region Variables + #region Variables private readonly IDialogCoordinator _dialogCoordinator; - private readonly bool _isLoading; - - private string _host; - public string Host - { - get => _host; - set - { - if (value == _host) - return; - - _host = value; - OnPropertyChanged(); - } - } + public IInterTabClient InterTabClient { get; } + public ObservableCollection TabItems { get; } - public ICollectionView HostHistoryView { get; } - - private bool _displayStatusMessage; - public bool DisplayStatusMessage - { - get => _displayStatusMessage; - set - { - if (value == _displayStatusMessage) - return; + private readonly bool _isLoading; - _displayStatusMessage = value; - OnPropertyChanged(); - } - } + private int _tabId; - private string _statusMessage; - public string StatusMessage + private int _selectedTabIndex; + public int SelectedTabIndex { - get => _statusMessage; + get => _selectedTabIndex; set { - if (value == _statusMessage) + if (value == _selectedTabIndex) return; - _statusMessage = value; + _selectedTabIndex = value; OnPropertyChanged(); } } #region Profiles + public ICollectionView Profiles { get; } - private ProfileInfo _selectedProfile; + private ProfileInfo _selectedProfile = new ProfileInfo(); public ProfileInfo SelectedProfile { get => _selectedProfile; @@ -76,7 +52,7 @@ public ProfileInfo SelectedProfile { if (value == _selectedProfile) return; - + _selectedProfile = value; OnPropertyChanged(); } @@ -147,18 +123,27 @@ public GridLength ProfileWidth #endregion #region Constructor, load settings - public PingMonitorViewModel(IDialogCoordinator instance) + public PingHostViewModel(IDialogCoordinator instance) { - _isLoading = true; + _isLoading = true; _dialogCoordinator = instance; + InterTabClient = new DragablzInterTabClient(ApplicationViewManager.Name.Ping); + + TabItems = new ObservableCollection + { + new DragablzTabItem(Resources.Localization.Strings.NewTab, new PingView(_tabId), _tabId) + }; + Profiles = new CollectionViewSource { Source = ProfileManager.Profiles }.View; Profiles.GroupDescriptions.Add(new PropertyGroupDescription(nameof(ProfileInfo.Group))); Profiles.SortDescriptions.Add(new SortDescription(nameof(ProfileInfo.Group), ListSortDirection.Ascending)); Profiles.SortDescriptions.Add(new SortDescription(nameof(ProfileInfo.Name), ListSortDirection.Ascending)); Profiles.Filter = o => { + + if (!(o is ProfileInfo info)) return false; @@ -178,14 +163,13 @@ public PingMonitorViewModel(IDialogCoordinator instance) // This will select the first entry as selected item... SelectedProfile = Profiles.SourceCollection.Cast().Where(x => x.Ping_Enabled).OrderBy(x => x.Group).ThenBy(x => x.Name).FirstOrDefault(); - LoadSettings(); _isLoading = false; } private void LoadSettings() - { + { ExpandProfileView = SettingsManager.Current.Ping_ExpandProfileView; ProfileWidth = ExpandProfileView ? new GridLength(SettingsManager.Current.Ping_ProfileWidth) : new GridLength(GlobalStaticConfiguration.Profile_WidthCollapsed); @@ -194,8 +178,20 @@ private void LoadSettings() } #endregion - #region ICommands & Actions - + #region ICommand & Actions + public ICommand AddTabCommand => new RelayCommand(p => AddTabAction()); + + private void AddTabAction() + { + AddTab(); + } + + public ICommand PingProfileCommand => new RelayCommand(p => PingProfileAction()); + + private void PingProfileAction() + { + AddTab(SelectedProfile); + } public ICommand AddProfileCommand => new RelayCommand(p => AddProfileAction()); @@ -238,10 +234,16 @@ private void ClearSearchAction() { Search = string.Empty; } + + public ItemActionCallback CloseItemCommand => CloseItemAction; + + private static void CloseItemAction(ItemActionCallbackArgs args) + { + ((args.DragablzItem.Content as DragablzTabItem)?.View as PingView)?.CloseTab(); + } #endregion #region Methods - private void ResizeProfile(bool dueToChangedSize) { _canProfileWidthChange = false; @@ -266,6 +268,20 @@ private void ResizeProfile(bool dueToChangedSize) _canProfileWidthChange = true; } + public void AddTab(string host = null) + { + _tabId++; + + TabItems.Add(new DragablzTabItem(host ?? Resources.Localization.Strings.NewTab, new PingView(_tabId, host), _tabId)); + + SelectedTabIndex = TabItems.Count - 1; + } + + public void AddTab(ProfileInfo profile) + { + AddTab(profile.Ping_Host); + } + public void OnViewVisible() { RefreshProfiles(); @@ -292,4 +308,4 @@ public void OnProfileDialogClose() } #endregion } -} +} \ No newline at end of file diff --git a/Source/NETworkManager/ViewModels/SettingsViewModel.cs b/Source/NETworkManager/ViewModels/SettingsViewModel.cs index cee926e20..34532eeaa 100644 --- a/Source/NETworkManager/ViewModels/SettingsViewModel.cs +++ b/Source/NETworkManager/ViewModels/SettingsViewModel.cs @@ -248,7 +248,7 @@ private void ChangeSettingsContent(SettingsViewInfo settingsViewInfo) SettingsContent = _portScannerSettingsView; break; - case SettingsViewManager.Name.PingMonitor: + case SettingsViewManager.Name.Ping: if (_pingSettingsViewModel == null) _pingSettingsViewModel = new PingSettingsView(); diff --git a/Source/NETworkManager/Views/PingHostView.xaml b/Source/NETworkManager/Views/PingHostView.xaml new file mode 100644 index 000000000..fc395256a --- /dev/null +++ b/Source/NETworkManager/Views/PingHostView.xaml @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/NETworkManager/Views/PingHostView.xaml.cs b/Source/NETworkManager/Views/PingHostView.xaml.cs new file mode 100644 index 000000000..d4198e14e --- /dev/null +++ b/Source/NETworkManager/Views/PingHostView.xaml.cs @@ -0,0 +1,53 @@ +using MahApps.Metro.Controls.Dialogs; +using NETworkManager.ViewModels; +using System.Windows; +using System.Windows.Controls; +using NETworkManager.Models.Settings; + +namespace NETworkManager.Views +{ + public partial class PingHostView + { + private readonly PingHostViewModel _viewModel = new PingHostViewModel(DialogCoordinator.Instance); + + public PingHostView() + { + InitializeComponent(); + DataContext = _viewModel; + + InterTabController.Partition = ApplicationViewManager.Name.Ping.ToString(); + } + + private void ContextMenu_Opened(object sender, RoutedEventArgs e) + { + if (sender is ContextMenu menu) + menu.DataContext = _viewModel; + } + + private void ListBoxItem_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e) + { + if (e.ChangedButton == System.Windows.Input.MouseButton.Left) + _viewModel.PingProfileCommand.Execute(null); + } + + public void AddTab(string host) + { + _viewModel.AddTab(host); + } + + public void AddTab(ProfileInfo profile) + { + _viewModel.AddTab(profile); + } + + public void OnViewHide() + { + _viewModel.OnViewHide(); + } + + public void OnViewVisible() + { + _viewModel.OnViewVisible(); + } + } +} diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml b/Source/NETworkManager/Views/PingMonitorView.xaml deleted file mode 100644 index 80002a407..000000000 --- a/Source/NETworkManager/Views/PingMonitorView.xaml +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml.cs b/Source/NETworkManager/Views/PingMonitorView.xaml.cs deleted file mode 100644 index 23f9e11d0..000000000 --- a/Source/NETworkManager/Views/PingMonitorView.xaml.cs +++ /dev/null @@ -1,34 +0,0 @@ -using MahApps.Metro.Controls.Dialogs; -using NETworkManager.ViewModels; -using System.Windows; -using System.Windows.Controls; - -namespace NETworkManager.Views -{ - public partial class PingMonitorView - { - private readonly PingMonitorViewModel _viewModel = new PingMonitorViewModel(DialogCoordinator.Instance); - - public PingMonitorView() - { - InitializeComponent(); - DataContext = _viewModel; - } - - private void ContextMenu_Opened(object sender, RoutedEventArgs e) - { - if (sender is ContextMenu menu) - menu.DataContext = _viewModel; - } - - public void OnViewHide() - { - _viewModel.OnViewHide(); - } - - public void OnViewVisible() - { - _viewModel.OnViewVisible(); - } - } -} From 7855c07e28a291b5cd363c5805944c2a8603614e Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Thu, 17 Oct 2019 21:52:32 +0200 Subject: [PATCH 03/13] Ping monitor added --- .../NETworkManager/ApplicationViewManager.cs | 8 +- Source/NETworkManager/MainWindow.xaml.cs | 9 + Source/NETworkManager/NETworkManager.csproj | 8 + .../Localization/Strings.Designer.cs | 9 + .../Resources/Localization/Strings.resx | 3 + .../ViewModels/PingMonitorViewModel.cs | 295 +++++++++++++++ .../NETworkManager/Views/PingMonitorView.xaml | 346 ++++++++++++++++++ .../Views/PingMonitorView.xaml.cs | 34 ++ 8 files changed, 711 insertions(+), 1 deletion(-) create mode 100644 Source/NETworkManager/ViewModels/PingMonitorViewModel.cs create mode 100644 Source/NETworkManager/Views/PingMonitorView.xaml create mode 100644 Source/NETworkManager/Views/PingMonitorView.xaml.cs diff --git a/Source/NETworkManager/ApplicationViewManager.cs b/Source/NETworkManager/ApplicationViewManager.cs index f2cce233a..a47d1ff5d 100644 --- a/Source/NETworkManager/ApplicationViewManager.cs +++ b/Source/NETworkManager/ApplicationViewManager.cs @@ -36,7 +36,9 @@ public static string GetTranslatedNameByName(Name name) return Resources.Localization.Strings.PortScanner; case Name.Ping: return Resources.Localization.Strings.Ping; - case Name.Traceroute: + case Name.PingMonitor: + return Resources.Localization.Strings.PingMonitor; + case Name.Traceroute: return Resources.Localization.Strings.Traceroute; case Name.DNSLookup: return Resources.Localization.Strings.DNSLookup; @@ -95,6 +97,9 @@ public static Canvas GetIconByName(Name name) case Name.Ping: canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.LanConnect }); break; + case Name.PingMonitor: + canvas.Children.Add(new PackIconModern { Kind = PackIconModernKind.RadarScreen }); + break; case Name.Traceroute: canvas.Children.Add(new PackIconModern { Kind = PackIconModernKind.TransitConnection }); break; @@ -157,6 +162,7 @@ public enum Name IPScanner, PortScanner, Ping, + PingMonitor, Traceroute, DNSLookup, RemoteDesktop, diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index 89d55aa05..d2499860f 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -474,6 +474,7 @@ private async void MetroWindowMain_Closing(object sender, CancelEventArgs e) private IPScannerHostView _ipScannerHostView; private PortScannerHostView _portScannerHostView; private PingHostView _pingHostView; + private PingMonitorView _pingMonitorView; private TracerouteHostView _tracerouteHostView; private DNSLookupHostView _dnsLookupHostView; private RemoteDesktopHostView _remoteDesktopHostView; @@ -568,6 +569,14 @@ private void ChangeApplicationView(ApplicationViewManager.Name name, bool refres ContentControlApplication.Content = _pingHostView; break; + case ApplicationViewManager.Name.PingMonitor: + if (_pingMonitorView == null) + _pingMonitorView = new PingMonitorView(); + else + _pingMonitorView.OnViewVisible(); + + ContentControlApplication.Content = _pingMonitorView; + break; case ApplicationViewManager.Name.Traceroute: if (_tracerouteHostView == null) _tracerouteHostView = new TracerouteHostView(); diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj index 1d1031c2d..05e532e7a 100644 --- a/Source/NETworkManager/NETworkManager.csproj +++ b/Source/NETworkManager/NETworkManager.csproj @@ -268,6 +268,7 @@ + @@ -340,6 +341,9 @@ CustomCommandDialog.xaml + + PingMonitorView.xaml + WiFiView.xaml @@ -689,6 +693,10 @@ MSBuild:Compile Designer + + MSBuild:Compile + Designer + MSBuild:Compile Designer diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index e741a5a3f..f7c55d1ba 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -4012,6 +4012,15 @@ public class Strings { } } + /// + /// Looks up a localized string similar to Ping Monitor. + /// + public static string PingMonitor { + get { + return ResourceManager.GetString("PingMonitor", resourceCulture); + } + } + /// /// Looks up a localized string similar to Pink. /// diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index f1881db89..e73cef224 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -2453,4 +2453,7 @@ URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose Show error message + + Ping Monitor + \ No newline at end of file diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs new file mode 100644 index 000000000..1d0acd521 --- /dev/null +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -0,0 +1,295 @@ +using NETworkManager.Models.Settings; +using System.Net; +using System.Windows.Input; +using MahApps.Metro.Controls.Dialogs; +using System.Windows; +using System; +using NETworkManager.Models.Network; +using System.ComponentModel; +using System.Windows.Data; +using NETworkManager.Utilities; +using System.Threading.Tasks; +using System.Linq; +using MahApps.Metro.Controls; + +namespace NETworkManager.ViewModels +{ + public class PingMonitorViewModel : ViewModelBase, IProfileManager + { + #region Variables + private readonly IDialogCoordinator _dialogCoordinator; + + private readonly bool _isLoading; + + private string _host; + public string Host + { + get => _host; + set + { + if (value == _host) + return; + + _host = value; + OnPropertyChanged(); + } + } + + public ICollectionView HostHistoryView { get; } + + private bool _displayStatusMessage; + public bool DisplayStatusMessage + { + get => _displayStatusMessage; + set + { + if (value == _displayStatusMessage) + return; + + _displayStatusMessage = value; + OnPropertyChanged(); + } + } + + private string _statusMessage; + public string StatusMessage + { + get => _statusMessage; + set + { + if (value == _statusMessage) + return; + + _statusMessage = value; + OnPropertyChanged(); + } + } + + #region Profiles + public ICollectionView Profiles { get; } + + private ProfileInfo _selectedProfile; + public ProfileInfo SelectedProfile + { + get => _selectedProfile; + set + { + if (value == _selectedProfile) + return; + + _selectedProfile = value; + OnPropertyChanged(); + } + } + + private string _search; + public string Search + { + get => _search; + set + { + if (value == _search) + return; + + _search = value; + + RefreshProfiles(); + + OnPropertyChanged(); + } + } + + private bool _canProfileWidthChange = true; + private double _tempProfileWidth; + + private bool _expandProfileView; + public bool ExpandProfileView + { + get => _expandProfileView; + set + { + if (value == _expandProfileView) + return; + + if (!_isLoading) + SettingsManager.Current.Ping_ExpandProfileView = value; + + _expandProfileView = value; + + if (_canProfileWidthChange) + ResizeProfile(false); + + OnPropertyChanged(); + } + } + + private GridLength _profileWidth; + public GridLength ProfileWidth + { + get => _profileWidth; + set + { + if (value == _profileWidth) + return; + + if (!_isLoading && Math.Abs(value.Value - GlobalStaticConfiguration.Profile_WidthCollapsed) > GlobalStaticConfiguration.FloatPointFix) // Do not save the size when collapsed + SettingsManager.Current.Ping_ProfileWidth = value.Value; + + _profileWidth = value; + + if (_canProfileWidthChange) + ResizeProfile(true); + + OnPropertyChanged(); + } + } + #endregion + #endregion + + #region Constructor, load settings + public PingMonitorViewModel(IDialogCoordinator instance) + { + _isLoading = true; + + _dialogCoordinator = instance; + + Profiles = new CollectionViewSource { Source = ProfileManager.Profiles }.View; + Profiles.GroupDescriptions.Add(new PropertyGroupDescription(nameof(ProfileInfo.Group))); + Profiles.SortDescriptions.Add(new SortDescription(nameof(ProfileInfo.Group), ListSortDirection.Ascending)); + Profiles.SortDescriptions.Add(new SortDescription(nameof(ProfileInfo.Name), ListSortDirection.Ascending)); + Profiles.Filter = o => + { + if (!(o is ProfileInfo info)) + return false; + + if (string.IsNullOrEmpty(Search)) + return info.Ping_Enabled; + + var search = Search.Trim(); + + // Search by: Tag=xxx (exact match, ignore case) + if (search.StartsWith(ProfileManager.TagIdentifier, StringComparison.OrdinalIgnoreCase)) + return !string.IsNullOrEmpty(info.Tags) && info.Ping_Enabled && info.Tags.Replace(" ", "").Split(';').Any(str => search.Substring(ProfileManager.TagIdentifier.Length, search.Length - ProfileManager.TagIdentifier.Length).Equals(str, StringComparison.OrdinalIgnoreCase)); + + // Search by: Name, Ping_Host + return info.Ping_Enabled && (info.Name.IndexOf(search, StringComparison.OrdinalIgnoreCase) > -1 || info.Ping_Host.IndexOf(search, StringComparison.OrdinalIgnoreCase) > -1); + }; + + // This will select the first entry as selected item... + SelectedProfile = Profiles.SourceCollection.Cast().Where(x => x.Ping_Enabled).OrderBy(x => x.Group).ThenBy(x => x.Name).FirstOrDefault(); + + + LoadSettings(); + + _isLoading = false; + } + + private void LoadSettings() + { + ExpandProfileView = SettingsManager.Current.Ping_ExpandProfileView; + + ProfileWidth = ExpandProfileView ? new GridLength(SettingsManager.Current.Ping_ProfileWidth) : new GridLength(GlobalStaticConfiguration.Profile_WidthCollapsed); + + _tempProfileWidth = SettingsManager.Current.Ping_ProfileWidth; + } + #endregion + + #region ICommands & Actions + + + public ICommand AddProfileCommand => new RelayCommand(p => AddProfileAction()); + + private void AddProfileAction() + { + ProfileManager.ShowAddProfileDialog(this, _dialogCoordinator); + } + + public ICommand EditProfileCommand => new RelayCommand(p => EditProfileAction()); + + private void EditProfileAction() + { + ProfileManager.ShowEditProfileDialog(this, _dialogCoordinator, SelectedProfile); + } + + public ICommand CopyAsProfileCommand => new RelayCommand(p => CopyAsProfileAction()); + + private void CopyAsProfileAction() + { + ProfileManager.ShowCopyAsProfileDialog(this, _dialogCoordinator, SelectedProfile); + } + + public ICommand DeleteProfileCommand => new RelayCommand(p => DeleteProfileAction()); + + private void DeleteProfileAction() + { + ProfileManager.ShowDeleteProfileDialog(this, _dialogCoordinator, SelectedProfile); + } + + public ICommand EditGroupCommand => new RelayCommand(EditGroupAction); + + private void EditGroupAction(object group) + { + ProfileManager.ShowEditGroupDialog(this, _dialogCoordinator, group.ToString()); + } + + public ICommand ClearSearchCommand => new RelayCommand(p => ClearSearchAction()); + + private void ClearSearchAction() + { + Search = string.Empty; + } + #endregion + + #region Methods + + private void ResizeProfile(bool dueToChangedSize) + { + _canProfileWidthChange = false; + + if (dueToChangedSize) + { + ExpandProfileView = Math.Abs(ProfileWidth.Value - GlobalStaticConfiguration.Profile_WidthCollapsed) > GlobalStaticConfiguration.FloatPointFix; + } + else + { + if (ExpandProfileView) + { + ProfileWidth = Math.Abs(_tempProfileWidth - GlobalStaticConfiguration.Profile_WidthCollapsed) < GlobalStaticConfiguration.FloatPointFix ? new GridLength(GlobalStaticConfiguration.Profile_DefaultWidthExpanded) : new GridLength(_tempProfileWidth); + } + else + { + _tempProfileWidth = ProfileWidth.Value; + ProfileWidth = new GridLength(GlobalStaticConfiguration.Profile_WidthCollapsed); + } + } + + _canProfileWidthChange = true; + } + + public void OnViewVisible() + { + RefreshProfiles(); + } + + public void OnViewHide() + { + + } + + public void RefreshProfiles() + { + Profiles.Refresh(); + } + + public void OnProfileDialogOpen() + { + + } + + public void OnProfileDialogClose() + { + + } + #endregion + } +} diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml b/Source/NETworkManager/Views/PingMonitorView.xaml new file mode 100644 index 000000000..80002a407 --- /dev/null +++ b/Source/NETworkManager/Views/PingMonitorView.xaml @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml.cs b/Source/NETworkManager/Views/PingMonitorView.xaml.cs new file mode 100644 index 000000000..23f9e11d0 --- /dev/null +++ b/Source/NETworkManager/Views/PingMonitorView.xaml.cs @@ -0,0 +1,34 @@ +using MahApps.Metro.Controls.Dialogs; +using NETworkManager.ViewModels; +using System.Windows; +using System.Windows.Controls; + +namespace NETworkManager.Views +{ + public partial class PingMonitorView + { + private readonly PingMonitorViewModel _viewModel = new PingMonitorViewModel(DialogCoordinator.Instance); + + public PingMonitorView() + { + InitializeComponent(); + DataContext = _viewModel; + } + + private void ContextMenu_Opened(object sender, RoutedEventArgs e) + { + if (sender is ContextMenu menu) + menu.DataContext = _viewModel; + } + + public void OnViewHide() + { + _viewModel.OnViewHide(); + } + + public void OnViewVisible() + { + _viewModel.OnViewVisible(); + } + } +} From 72cb31dfdfdb6089e9c7bab5c0efd02b24d3aa3e Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Fri, 18 Oct 2019 00:17:44 +0200 Subject: [PATCH 04/13] Hosts added --- .../Models/Network/PingMonitorOptions.cs | 16 + .../Models/Settings/ProfileInfo.cs | 4 + .../Models/Settings/SettingsInfo.cs | 63 +++ Source/NETworkManager/NETworkManager.csproj | 9 + .../Localization/Strings.Designer.cs | 9 + .../Resources/Localization/Strings.resx | 3 + .../ViewModels/IPScannerViewModel.cs | 2 +- .../ViewModels/PingMonitorClientViewModel.cs | 425 ++++++++++++++++++ .../ViewModels/PingMonitorViewModel.cs | 153 ++++++- .../ViewModels/PingViewModel.cs | 3 +- .../Views/PingMonitorClientView.xaml | 113 +++++ .../Views/PingMonitorClientView.xaml.cs | 37 ++ .../NETworkManager/Views/PingMonitorView.xaml | 41 +- .../Views/PingMonitorView.xaml.cs | 3 +- Source/NETworkManager/Views/WiFiView.xaml | 2 +- 15 files changed, 844 insertions(+), 39 deletions(-) create mode 100644 Source/NETworkManager/Models/Network/PingMonitorOptions.cs create mode 100644 Source/NETworkManager/ViewModels/PingMonitorClientViewModel.cs create mode 100644 Source/NETworkManager/Views/PingMonitorClientView.xaml create mode 100644 Source/NETworkManager/Views/PingMonitorClientView.xaml.cs diff --git a/Source/NETworkManager/Models/Network/PingMonitorOptions.cs b/Source/NETworkManager/Models/Network/PingMonitorOptions.cs new file mode 100644 index 000000000..c9e70b87b --- /dev/null +++ b/Source/NETworkManager/Models/Network/PingMonitorOptions.cs @@ -0,0 +1,16 @@ +using System.Net; + +namespace NETworkManager.Models.Network +{ + public class PingMonitorOptions + { + public string Host { get; set; } + public IPAddress IPAddress { get; set; } + + public PingMonitorOptions(string host, IPAddress ipAddress) + { + Host = host; + IPAddress = ipAddress; + } + } +} diff --git a/Source/NETworkManager/Models/Settings/ProfileInfo.cs b/Source/NETworkManager/Models/Settings/ProfileInfo.cs index 3846d996f..ff12e3775 100644 --- a/Source/NETworkManager/Models/Settings/ProfileInfo.cs +++ b/Source/NETworkManager/Models/Settings/ProfileInfo.cs @@ -35,6 +35,10 @@ public class ProfileInfo public bool Ping_InheritHost { get; set; } = true; public string Ping_Host { get; set; } + public bool PingMonitor_Enabled { get; set; } + public bool PingMonitor_InheritHost { get; set; } = true; + public string PingMonitor_Host { get; set; } + public bool Traceroute_Enabled { get; set; } public bool Traceroute_InheritHost { get; set; } = true; public string Traceroute_Host { get; set; } diff --git a/Source/NETworkManager/Models/Settings/SettingsInfo.cs b/Source/NETworkManager/Models/Settings/SettingsInfo.cs index 3d6512e4c..1056f21f0 100644 --- a/Source/NETworkManager/Models/Settings/SettingsInfo.cs +++ b/Source/NETworkManager/Models/Settings/SettingsInfo.cs @@ -1433,6 +1433,69 @@ public bool Ping_HighlightTimeouts } #endregion + #region Ping Monitor + private ObservableCollection _pingMonitor_HostHistory = new ObservableCollection(); + public ObservableCollection PingMonitor_HostHistory + { + get => _pingMonitor_HostHistory; + set + { + if (value == _pingMonitor_HostHistory) + return; + + _pingMonitor_HostHistory = value; + OnPropertyChanged(); + SettingsChanged = true; + } + } + + private bool _pingMonitor_ResolveHostnamePreferIPv4 = true; + public bool PingMonitor_ResolveHostnamePreferIPv4 + { + get => _pingMonitor_ResolveHostnamePreferIPv4; + set + { + if (value == _pingMonitor_ResolveHostnamePreferIPv4) + return; + + _pingMonitor_ResolveHostnamePreferIPv4 = value; + OnPropertyChanged(); + SettingsChanged = true; + } + } + + + private bool _pingMonitor_ExpandProfileView = true; + public bool PingMonitor_ExpandProfileView + { + get => _pingMonitor_ExpandProfileView; + set + { + if (value == _pingMonitor_ExpandProfileView) + return; + + _pingMonitor_ExpandProfileView = value; + OnPropertyChanged(); + SettingsChanged = true; + } + } + + private double _pingMonitor_ProfileWidth = GlobalStaticConfiguration.Profile_DefaultWidthExpanded; + public double PingMonitor_ProfileWidth + { + get => _pingMonitor_ProfileWidth; + set + { + if (Math.Abs(value - _pingMonitor_ProfileWidth) < GlobalStaticConfiguration.FloatPointFix) + return; + + _pingMonitor_ProfileWidth = value; + OnPropertyChanged(); + SettingsChanged = true; + } + } + #endregion + #region Traceroute private ObservableCollection _traceroute_HostHistory = new ObservableCollection(); public ObservableCollection Traceroute_HostHistory diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj index 05e532e7a..06719236b 100644 --- a/Source/NETworkManager/NETworkManager.csproj +++ b/Source/NETworkManager/NETworkManager.csproj @@ -180,6 +180,7 @@ + @@ -269,6 +270,7 @@ + @@ -344,6 +346,9 @@ PingMonitorView.xaml + + PingMonitorClientView.xaml + WiFiView.xaml @@ -697,6 +702,10 @@ MSBuild:Compile Designer + + MSBuild:Compile + Designer + MSBuild:Compile Designer diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index f7c55d1ba..b33bc462c 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -222,6 +222,15 @@ public class Strings { } } + /// + /// Looks up a localized string similar to Add host. + /// + public static string AddHost { + get { + return ResourceManager.GetString("AddHost", resourceCulture); + } + } + /// /// Looks up a localized string similar to Add IPv4 address. /// diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index e73cef224..bb769ee9b 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -2456,4 +2456,7 @@ URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose Ping Monitor + + Add host + \ No newline at end of file diff --git a/Source/NETworkManager/ViewModels/IPScannerViewModel.cs b/Source/NETworkManager/ViewModels/IPScannerViewModel.cs index 045474df3..e3274d88f 100644 --- a/Source/NETworkManager/ViewModels/IPScannerViewModel.cs +++ b/Source/NETworkManager/ViewModels/IPScannerViewModel.cs @@ -305,7 +305,7 @@ public IPScannerViewModel(IDialogCoordinator instance, int tabId, string hostOrI _tabId = tabId; Host = hostOrIPRange; - // Set collection view + // Host history HostHistoryView = CollectionViewSource.GetDefaultView(SettingsManager.Current.IPScanner_HostHistory); // Result view diff --git a/Source/NETworkManager/ViewModels/PingMonitorClientViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorClientViewModel.cs new file mode 100644 index 000000000..e4e929f69 --- /dev/null +++ b/Source/NETworkManager/ViewModels/PingMonitorClientViewModel.cs @@ -0,0 +1,425 @@ +using NETworkManager.Models.Network; +using NETworkManager.Models.Settings; +using System; +using System.Collections; +using System.Linq; +using System.Net; +using System.Net.Sockets; +using System.Threading; +using System.Windows; +using System.Windows.Input; +using System.ComponentModel; +using System.Diagnostics; +using System.Windows.Threading; +using System.Windows.Data; +using Dragablz; +using NETworkManager.Controls; +using NETworkManager.Utilities; +using System.Collections.ObjectModel; +using System.Globalization; +using MahApps.Metro.Controls; +using MahApps.Metro.Controls.Dialogs; +using NETworkManager.Models.Export; +using NETworkManager.Views; + +namespace NETworkManager.ViewModels +{ + public class PingMonitorClientViewModel : ViewModelBase + { + #region Variables + private CancellationTokenSource _cancellationTokenSource; + + private readonly int _hostId; + private readonly PingMonitorOptions _pingMonitorOptions; + private bool _firstLoad = true; + + private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); + private readonly Stopwatch _stopwatch = new Stopwatch(); + + private string _host; + public string Host + { + get => _host; + set + { + if (value == _host) + return; + + _host = value; + OnPropertyChanged(); + } + } + + private IPAddress _ipAddress; + public IPAddress IPAddress + { + get => _ipAddress; + set + { + if (value == _ipAddress) + return; + + _ipAddress = value; + OnPropertyChanged(); + } + } + + private bool _isPingRunning; + public bool IsPingRunning + { + get => _isPingRunning; + set + { + if (value == _isPingRunning) + return; + + _isPingRunning = value; + OnPropertyChanged(); + } + } + + private bool _isReachable; + public bool IsReachable + { + get => _isReachable; + set + { + if (value == _isReachable) + return; + + _isReachable = value; + OnPropertyChanged(); + } + } + + private ObservableCollection _pingResults = new ObservableCollection(); + public ObservableCollection PingResults + { + get => _pingResults; + set + { + if (value != null && value == _pingResults) + return; + + _pingResults = value; + } + } + + private int _pingsTransmitted; + public int PingsTransmitted + { + get => _pingsTransmitted; + set + { + if (value == _pingsTransmitted) + return; + + _pingsTransmitted = value; + OnPropertyChanged(); + } + } + + private int _pingsReceived; + public int PingsReceived + { + get => _pingsReceived; + set + { + if (value == _pingsReceived) + return; + + _pingsReceived = value; + OnPropertyChanged(); + } + } + + private int _pingsLost; + public int PingsLost + { + get => _pingsLost; + set + { + if (value == _pingsLost) + return; + + _pingsLost = value; + OnPropertyChanged(); + } + } + + private long _minimumTime; + public long MinimumTime + { + get => _minimumTime; + set + { + if (value == _minimumTime) + return; + + _minimumTime = value; + OnPropertyChanged(); + } + } + + private long _maximumTime; + public long MaximumTime + { + get => _maximumTime; + set + { + if (value == _maximumTime) + return; + + _maximumTime = value; + OnPropertyChanged(); + } + } + + private int _averageTime; + public int AverageTime + { + get => _averageTime; + set + { + if (value == _averageTime) + return; + + _averageTime = value; + OnPropertyChanged(); + } + } + + private DateTime? _startTime; + public DateTime? StartTime + { + get => _startTime; + set + { + if (value == _startTime) + return; + + _startTime = value; + OnPropertyChanged(); + } + } + + private TimeSpan _duration; + public TimeSpan Duration + { + get => _duration; + set + { + if (value == _duration) + return; + + _duration = value; + OnPropertyChanged(); + } + } + + private DateTime? _endTime; + public DateTime? EndTime + { + get => _endTime; + set + { + if (value == _endTime) + return; + + _endTime = value; + OnPropertyChanged(); + } + } + #endregion + + #region Contructor, load settings + public PingMonitorClientViewModel(int tabId, PingMonitorOptions options) + { + _hostId = tabId; + _pingMonitorOptions = options; + + Host = options.Host; + IPAddress = options.IPAddress; + } + + public void OnLoaded() + { + if (!_firstLoad) + return; + + StartPing(); + + _firstLoad = false; + } + #endregion + + #region ICommands & Actions + /* + // Start + // Stop + // Delete + + + public ICommand PingCommand => new RelayCommand(p => PingAction(), Ping_CanExecute); + + private bool Ping_CanExecute(object paramter) => Application.Current.MainWindow != null && !((MetroWindow)Application.Current.MainWindow).IsAnyDialogOpen; + + private void PingAction() + { + if (IsPingRunning) + StopPing(); + else + StartPing(); + } + */ + #endregion + + #region Methods + private async void StartPing() + { + IsPingRunning = true; + + // Measure the time + StartTime = DateTime.Now; + _stopwatch.Start(); + _dispatcherTimer.Tick += DispatcherTimer_Tick; + _dispatcherTimer.Interval = new TimeSpan(0, 0, 0, 0, 100); + _dispatcherTimer.Start(); + EndTime = null; + + // Reset the latest results + PingResults.Clear(); + PingsTransmitted = 0; + PingsReceived = 0; + PingsLost = 0; + AverageTime = 0; + MinimumTime = 0; + MaximumTime = 0; + + _cancellationTokenSource = new CancellationTokenSource(); + + var ping = new Ping + { + Attempts = 0, + Timeout = SettingsManager.Current.Ping_Timeout, + Buffer = new byte[SettingsManager.Current.Ping_Buffer], + TTL = SettingsManager.Current.Ping_TTL, + DontFragment = SettingsManager.Current.Ping_DontFragment, + WaitTime = SettingsManager.Current.Ping_WaitTime, + ExceptionCancelCount = SettingsManager.Current.Ping_ExceptionCancelCount, + Hostname = Host + }; + + ping.PingReceived += Ping_PingReceived; + //ping.PingCompleted += Ping_PingCompleted; + //ping.PingException += Ping_PingException; + ping.UserHasCanceled += Ping_UserHasCanceled; + + ping.SendAsync(IPAddress, _cancellationTokenSource.Token); + } + + private void StopPing() + { + _cancellationTokenSource?.Cancel(); + } + + private void UserHasCanceled() + { + PingFinished(); + } + + private void PingFinished() + { + IsPingRunning = false; + + // Stop timer and stopwatch + _stopwatch.Stop(); + _dispatcherTimer.Stop(); + + Duration = _stopwatch.Elapsed; + EndTime = DateTime.Now; + + _stopwatch.Reset(); + } + + private void AddHostToHistory(string host) + { + // Create the new list + var list = ListHelper.Modify(SettingsManager.Current.Ping_HostHistory.ToList(), host, SettingsManager.Current.General_HistoryListEntries); + + // Clear the old items + SettingsManager.Current.Ping_HostHistory.Clear(); + OnPropertyChanged(nameof(Host)); // Raise property changed again, after the collection has been cleared + + // Fill with the new items + list.ForEach(x => SettingsManager.Current.Ping_HostHistory.Add(x)); + } + + public void OnClose() + { + // Stop the ping + //if (IsPingRunning) + // PingAction(); + } + #endregion + + #region Events + private void Ping_PingReceived(object sender, PingReceivedArgs e) + { + var pingInfo = PingInfo.Parse(e); + + // Add the result to the collection + Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(delegate + { + lock (PingResults) + PingResults.Add(pingInfo); + })); + + // Calculate statistics + PingsTransmitted++; + + if (pingInfo.Status == System.Net.NetworkInformation.IPStatus.Success) + { + IsReachable = true; + + PingsReceived++; + + if (PingsReceived == 1) + { + MinimumTime = pingInfo.Time; + MaximumTime = pingInfo.Time; + } + else + { + if (MinimumTime > pingInfo.Time) + MinimumTime = pingInfo.Time; + + if (MaximumTime < pingInfo.Time) + MaximumTime = pingInfo.Time; + + // lock, because the collection is changed from another thread... + // I hope this won't slow the application or causes a hight cpu load + lock (PingResults) + AverageTime = (int)PingResults.Average(s => s.Time); + } + } + else + { + IsReachable = false; + + PingsLost++; + } + } + + private void Ping_UserHasCanceled(object sender, EventArgs e) + { + UserHasCanceled(); + } + + private void DispatcherTimer_Tick(object sender, EventArgs e) + { + Duration = _stopwatch.Elapsed; + } + #endregion + } +} \ No newline at end of file diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index 1d0acd521..5e75e530c 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -11,6 +11,11 @@ using System.Threading.Tasks; using System.Linq; using MahApps.Metro.Controls; +using System.Collections.ObjectModel; +using NETworkManager.Views; +using DnsClient; +using System.Net.Sockets; +using System.Diagnostics; namespace NETworkManager.ViewModels { @@ -18,9 +23,12 @@ public class PingMonitorViewModel : ViewModelBase, IProfileManager { #region Variables private readonly IDialogCoordinator _dialogCoordinator; + private LookupClient DnsLookupClient = new LookupClient(); private readonly bool _isLoading; + private int _hostId; + private string _host; public string Host { @@ -37,6 +45,22 @@ public string Host public ICollectionView HostHistoryView { get; } + private ObservableCollection _hosts = new ObservableCollection(); + public ObservableCollection Hosts + { + get => _hosts; + set + { + if (value != null && value == _hosts) + return; + + _hosts = value; + } + } + + public ICollectionView HostsView { get; } + + private bool _displayStatusMessage; public bool DisplayStatusMessage { @@ -76,7 +100,7 @@ public ProfileInfo SelectedProfile { if (value == _selectedProfile) return; - + _selectedProfile = value; OnPropertyChanged(); } @@ -149,10 +173,17 @@ public GridLength ProfileWidth #region Constructor, load settings public PingMonitorViewModel(IDialogCoordinator instance) { - _isLoading = true; + _isLoading = true; _dialogCoordinator = instance; + // Host history + HostHistoryView = CollectionViewSource.GetDefaultView(SettingsManager.Current.PingMonitor_HostHistory); + + // Hosts + HostsView = CollectionViewSource.GetDefaultView(Hosts); + + // Profiles Profiles = new CollectionViewSource { Source = ProfileManager.Profiles }.View; Profiles.GroupDescriptions.Add(new PropertyGroupDescription(nameof(ProfileInfo.Group))); Profiles.SortDescriptions.Add(new SortDescription(nameof(ProfileInfo.Group), ListSortDirection.Ascending)); @@ -163,39 +194,46 @@ public PingMonitorViewModel(IDialogCoordinator instance) return false; if (string.IsNullOrEmpty(Search)) - return info.Ping_Enabled; + return info.PingMonitor_Enabled; var search = Search.Trim(); // Search by: Tag=xxx (exact match, ignore case) if (search.StartsWith(ProfileManager.TagIdentifier, StringComparison.OrdinalIgnoreCase)) - return !string.IsNullOrEmpty(info.Tags) && info.Ping_Enabled && info.Tags.Replace(" ", "").Split(';').Any(str => search.Substring(ProfileManager.TagIdentifier.Length, search.Length - ProfileManager.TagIdentifier.Length).Equals(str, StringComparison.OrdinalIgnoreCase)); + return !string.IsNullOrEmpty(info.Tags) && info.PingMonitor_Enabled && info.Tags.Replace(" ", "").Split(';').Any(str => search.Substring(ProfileManager.TagIdentifier.Length, search.Length - ProfileManager.TagIdentifier.Length).Equals(str, StringComparison.OrdinalIgnoreCase)); // Search by: Name, Ping_Host - return info.Ping_Enabled && (info.Name.IndexOf(search, StringComparison.OrdinalIgnoreCase) > -1 || info.Ping_Host.IndexOf(search, StringComparison.OrdinalIgnoreCase) > -1); + return info.PingMonitor_Enabled && (info.Name.IndexOf(search, StringComparison.OrdinalIgnoreCase) > -1 || info.Ping_Host.IndexOf(search, StringComparison.OrdinalIgnoreCase) > -1); }; // This will select the first entry as selected item... - SelectedProfile = Profiles.SourceCollection.Cast().Where(x => x.Ping_Enabled).OrderBy(x => x.Group).ThenBy(x => x.Name).FirstOrDefault(); - - + SelectedProfile = Profiles.SourceCollection.Cast().Where(x => x.PingMonitor_Enabled).OrderBy(x => x.Group).ThenBy(x => x.Name).FirstOrDefault(); + LoadSettings(); _isLoading = false; } private void LoadSettings() - { - ExpandProfileView = SettingsManager.Current.Ping_ExpandProfileView; + { + ExpandProfileView = SettingsManager.Current.PingMonitor_ExpandProfileView; - ProfileWidth = ExpandProfileView ? new GridLength(SettingsManager.Current.Ping_ProfileWidth) : new GridLength(GlobalStaticConfiguration.Profile_WidthCollapsed); + ProfileWidth = ExpandProfileView ? new GridLength(SettingsManager.Current.PingMonitor_ProfileWidth) : new GridLength(GlobalStaticConfiguration.Profile_WidthCollapsed); - _tempProfileWidth = SettingsManager.Current.Ping_ProfileWidth; + _tempProfileWidth = SettingsManager.Current.PingMonitor_ProfileWidth; } #endregion #region ICommands & Actions - + public ICommand AddHostCommand => new RelayCommand(p => AddHostAction()); + + private void AddHostAction() + { + AddHost(Host); + + // Add the hostname or ip address to the history + AddHostToHistory(Host); + } public ICommand AddProfileCommand => new RelayCommand(p => AddProfileAction()); @@ -241,7 +279,94 @@ private void ClearSearchAction() #endregion #region Methods - + + private async void AddHost(string host) + { + _hostId++; + + // Try to parse the string into an IP-Address + var hostIsIP = IPAddress.TryParse(Host, out var ipAddress); + + if (!hostIsIP) // Lookup + { + try + { + // Try to resolve the hostname + var ipHostEntrys = await DnsLookupClient.GetHostEntryAsync(host); + + if(ipHostEntrys.AddressList.Length == 0) + { + StatusMessage = string.Format(Resources.Localization.Strings.CouldNotResolveHostnameFor, Host); + DisplayStatusMessage = true; + + return; + } + + foreach (var ip in ipHostEntrys.AddressList) + { + switch (ip.AddressFamily) + { + // ToDo: Setting + case AddressFamily.InterNetwork when SettingsManager.Current.Ping_ResolveHostnamePreferIPv4: + ipAddress = ip; + break; + // ToDo: Setting + case AddressFamily.InterNetworkV6 when !SettingsManager.Current.Ping_ResolveHostnamePreferIPv4: + ipAddress = ip; + break; + } + } + + // Fallback --> If we could not resolve our prefered ip protocol for the hostname + foreach (var ip in ipHostEntrys.AddressList) + { + ipAddress = ip; + break; + } + } + catch // This will catch DNS resolve errors + { + StatusMessage = string.Format(Resources.Localization.Strings.CouldNotResolveHostnameFor, Host); + DisplayStatusMessage = true; + + return; + } + } + else // Reverse lookup + { + try + { + var x = await DnsLookupClient.GetHostNameAsync(ipAddress); + + if (!string.IsNullOrEmpty(x)) + host = x; + } + catch + { + + } + } + + Debug.WriteLine("Add new host:"); + Debug.WriteLine(host); + Debug.WriteLine(ipAddress); + + Hosts.Add(new PingMonitorClientView(_hostId, new PingMonitorOptions(host, ipAddress))); + } + + private void AddHostToHistory(string host) + { + // Create the new list + var list = ListHelper.Modify(SettingsManager.Current.PingMonitor_HostHistory.ToList(), host, SettingsManager.Current.General_HistoryListEntries); + + // Clear the old items + SettingsManager.Current.PingMonitor_HostHistory.Clear(); + OnPropertyChanged(nameof(Host)); // Raise property changed again, after the collection has been cleared + + // Fill with the new items + list.ForEach(x => SettingsManager.Current.PingMonitor_HostHistory.Add(x)); + } + private void ResizeProfile(bool dueToChangedSize) { _canProfileWidthChange = false; diff --git a/Source/NETworkManager/ViewModels/PingViewModel.cs b/Source/NETworkManager/ViewModels/PingViewModel.cs index bcc020aa6..e998cae82 100644 --- a/Source/NETworkManager/ViewModels/PingViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingViewModel.cs @@ -456,8 +456,7 @@ private async void StartPing() { // Try to resolve the hostname var ipHostEntrys = await Dns.GetHostEntryAsync(Host); - - + foreach (var ip in ipHostEntrys.AddressList) { switch (ip.AddressFamily) diff --git a/Source/NETworkManager/Views/PingMonitorClientView.xaml b/Source/NETworkManager/Views/PingMonitorClientView.xaml new file mode 100644 index 000000000..848e37cd9 --- /dev/null +++ b/Source/NETworkManager/Views/PingMonitorClientView.xaml @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -109,11 +100,21 @@ - - - - - + + + + + + + + + + + + + + + diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml.cs b/Source/NETworkManager/Views/PingMonitorView.xaml.cs index 23f9e11d0..44689e61e 100644 --- a/Source/NETworkManager/Views/PingMonitorView.xaml.cs +++ b/Source/NETworkManager/Views/PingMonitorView.xaml.cs @@ -14,7 +14,7 @@ public PingMonitorView() InitializeComponent(); DataContext = _viewModel; } - + private void ContextMenu_Opened(object sender, RoutedEventArgs e) { if (sender is ContextMenu menu) @@ -30,5 +30,6 @@ public void OnViewVisible() { _viewModel.OnViewVisible(); } + } } diff --git a/Source/NETworkManager/Views/WiFiView.xaml b/Source/NETworkManager/Views/WiFiView.xaml index 93095d377..c89a15ee2 100644 --- a/Source/NETworkManager/Views/WiFiView.xaml +++ b/Source/NETworkManager/Views/WiFiView.xaml @@ -171,7 +171,7 @@ - + From cbdca303671b0f5c790ae6316e8e118232d66efa Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 19 Oct 2019 22:07:06 +0200 Subject: [PATCH 05/13] Ping monitor renamed, improved --- Source/NETworkManager/NETworkManager.csproj | 9 +- .../Localization/Strings.Designer.cs | 1603 +++++++++-------- .../Resources/Localization/Strings.resx | 3 + .../Utilities/DnsLookupHelper.cs | 76 + ...ewModel.cs => PingMonitorHostViewModel.cs} | 4 +- .../ViewModels/PingMonitorViewModel.cs | 113 +- ...ientView.xaml => PingMonitorHostView.xaml} | 8 +- ...ew.xaml.cs => PingMonitorHostView.xaml.cs} | 8 +- .../NETworkManager/Views/PingMonitorView.xaml | 20 +- 9 files changed, 952 insertions(+), 892 deletions(-) create mode 100644 Source/NETworkManager/Utilities/DnsLookupHelper.cs rename Source/NETworkManager/ViewModels/{PingMonitorClientViewModel.cs => PingMonitorHostViewModel.cs} (98%) rename Source/NETworkManager/Views/{PingMonitorClientView.xaml => PingMonitorHostView.xaml} (96%) rename Source/NETworkManager/Views/{PingMonitorClientView.xaml.cs => PingMonitorHostView.xaml.cs} (71%) diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj index 06719236b..f4fbc2892 100644 --- a/Source/NETworkManager/NETworkManager.csproj +++ b/Source/NETworkManager/NETworkManager.csproj @@ -231,6 +231,7 @@ + @@ -270,7 +271,7 @@ - + @@ -346,8 +347,8 @@ PingMonitorView.xaml - - PingMonitorClientView.xaml + + PingMonitorHostView.xaml WiFiView.xaml @@ -702,7 +703,7 @@ MSBuild:Compile Designer - + MSBuild:Compile Designer diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index b33bc462c..a9720320f 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace NETworkManager.Resources.Localization { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. + // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ public class Strings { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ public class Strings { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ public class Strings { } /// - /// Looks up a localized string similar to About. + /// Sucht eine lokalisierte Zeichenfolge, die About ähnelt. /// public static string About { get { @@ -70,7 +70,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Accent. + /// Sucht eine lokalisierte Zeichenfolge, die Accent ähnelt. /// public static string Accent { get { @@ -79,7 +79,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add. + /// Sucht eine lokalisierte Zeichenfolge, die Add ähnelt. /// public static string Add { get { @@ -88,7 +88,16 @@ public class Strings { } /// - /// Looks up a localized string similar to Add a tab to perform a DNS lookup.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a host to monitor ähnelt. + /// + public static string AddAHostToMonitor { + get { + return ResourceManager.GetString("AddAHostToMonitor", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a DNS lookup... ähnelt. /// public static string AddATabToPerformADNSLookup { get { @@ -97,7 +106,7 @@ public class Strings { } /// - /// 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 { @@ -106,7 +115,7 @@ public class Strings { } /// - /// 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 { @@ -115,7 +124,7 @@ public class Strings { } /// - /// 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 { @@ -124,7 +133,7 @@ public class Strings { } /// - /// 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 { @@ -133,7 +142,7 @@ public class Strings { } /// - /// 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 { @@ -142,7 +151,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add a tab to query the HTTP headers.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query the HTTP headers... ähnelt. /// public static string AddATabToQueryTheHTTPHeaders { get { @@ -151,7 +160,7 @@ public class Strings { } /// - /// 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 { @@ -160,7 +169,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Add credentials ähnelt. /// public static string AddCredentials { get { @@ -169,7 +178,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add custom command. + /// Sucht eine lokalisierte Zeichenfolge, die Add custom command ähnelt. /// public static string AddCustomCommand { get { @@ -178,7 +187,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Add DNS server ähnelt. /// public static string AddDNSServer { get { @@ -187,7 +196,7 @@ public class Strings { } /// - /// 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 { @@ -196,7 +205,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add.... + /// Sucht eine lokalisierte Zeichenfolge, die Add... ähnelt. /// public static string AddDots { get { @@ -205,7 +214,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add entry. + /// Sucht eine lokalisierte Zeichenfolge, die Add entry ähnelt. /// public static string AddEntry { get { @@ -214,7 +223,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add entry.... + /// Sucht eine lokalisierte Zeichenfolge, die Add entry... ähnelt. /// public static string AddEntryDots { get { @@ -223,7 +232,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add host. + /// Sucht eine lokalisierte Zeichenfolge, die Add host ähnelt. /// public static string AddHost { get { @@ -232,7 +241,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add IPv4 address. + /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address ähnelt. /// public static string AddIPv4Address { get { @@ -241,7 +250,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add IPv4 address.... + /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address... ähnelt. /// public static string AddIPv4AddressDots { get { @@ -250,7 +259,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Additional command line. + /// Sucht eine lokalisierte Zeichenfolge, die Additional command line ähnelt. /// public static string AdditionalCommandLine { get { @@ -259,7 +268,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Additionals. + /// Sucht eine lokalisierte Zeichenfolge, die Additionals ähnelt. /// public static string Additionals { get { @@ -268,7 +277,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add profile. + /// Sucht eine lokalisierte Zeichenfolge, die Add profile ähnelt. /// public static string AddProfile { get { @@ -277,7 +286,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add profile.... + /// Sucht eine lokalisierte Zeichenfolge, die Add profile... ähnelt. /// public static string AddProfileDots { get { @@ -286,7 +295,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Add tab.... + /// Sucht eine lokalisierte Zeichenfolge, die Add tab... ähnelt. /// public static string AddTabDots { get { @@ -295,7 +304,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Adjust screen. + /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen ähnelt. /// public static string AdjustScreen { get { @@ -304,7 +313,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Adjust screen automatically. + /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen automatically ähnelt. /// public static string AdjustScreenAutomatically { get { @@ -313,7 +322,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Administrator. + /// Sucht eine lokalisierte Zeichenfolge, die Administrator ähnelt. /// public static string Administrator { get { @@ -322,7 +331,7 @@ public class Strings { } /// - /// Looks up a localized string similar to All. + /// Sucht eine lokalisierte Zeichenfolge, die All ähnelt. /// public static string All { get { @@ -331,7 +340,7 @@ public class Strings { } /// - /// 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 { @@ -340,7 +349,7 @@ public class Strings { } /// - /// 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 { @@ -349,7 +358,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Amber. + /// Sucht eine lokalisierte Zeichenfolge, die Amber ähnelt. /// public static string Amber { get { @@ -358,7 +367,7 @@ public class Strings { } /// - /// 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 { @@ -367,7 +376,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Answers. + /// Sucht eine lokalisierte Zeichenfolge, die Answers ähnelt. /// public static string Answers { get { @@ -376,7 +385,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Appearance. + /// Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. /// public static string Appearance { get { @@ -385,7 +394,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Application is restarted afterwards. + /// Sucht eine lokalisierte Zeichenfolge, die Application is restarted afterwards ähnelt. /// public static string ApplicationIsRestartedAfterwards { get { @@ -394,7 +403,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Applications. + /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt. /// public static string Applications { get { @@ -403,7 +412,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Apply. + /// Sucht eine lokalisierte Zeichenfolge, die Apply ähnelt. /// public static string Apply { get { @@ -412,7 +421,7 @@ public class Strings { } /// - /// 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 { @@ -421,7 +430,7 @@ public class Strings { } /// - /// 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 { @@ -430,7 +439,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Are you sure?. + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure? ähnelt. /// public static string AreYouSure { get { @@ -439,7 +448,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Arguments. + /// Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt. /// public static string Arguments { get { @@ -448,7 +457,7 @@ public class Strings { } /// - /// Looks up a localized string similar to ARP. + /// Sucht eine lokalisierte Zeichenfolge, die ARP ähnelt. /// public static string ARP { get { @@ -457,7 +466,7 @@ public class Strings { } /// - /// Looks up a localized string similar to ARP Table. + /// Sucht eine lokalisierte Zeichenfolge, die ARP Table ähnelt. /// public static string ARPTable { get { @@ -466,7 +475,7 @@ public class Strings { } /// - /// 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 { @@ -475,7 +484,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Attempts. + /// Sucht eine lokalisierte Zeichenfolge, die Attempts ähnelt. /// public static string Attempts { get { @@ -484,7 +493,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Auth. + /// Sucht eine lokalisierte Zeichenfolge, die Auth ähnelt. /// public static string Auth { get { @@ -493,7 +502,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Authentication. + /// Sucht eine lokalisierte Zeichenfolge, die Authentication ähnelt. /// public static string Authentication { get { @@ -502,7 +511,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Authentication:. + /// Sucht eine lokalisierte Zeichenfolge, die Authentication: ähnelt. /// public static string AuthenticationColon { get { @@ -511,7 +520,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Authentication level. + /// Sucht eine lokalisierte Zeichenfolge, die Authentication level ähnelt. /// public static string AuthenticationLevel { get { @@ -520,7 +529,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Authorities. + /// Sucht eine lokalisierte Zeichenfolge, die Authorities ähnelt. /// public static string Authorities { get { @@ -529,7 +538,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Automatically update every. + /// Sucht eine lokalisierte Zeichenfolge, die Automatically update every ähnelt. /// public static string AutomaticallyUpdateEvery { get { @@ -538,7 +547,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Autostart. + /// Sucht eine lokalisierte Zeichenfolge, die Autostart ähnelt. /// public static string Autostart { get { @@ -547,7 +556,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Average time. + /// Sucht eine lokalisierte Zeichenfolge, die Average time ähnelt. /// public static string AverageTime { get { @@ -556,7 +565,7 @@ public class Strings { } /// - /// Looks up a localized string similar to back. + /// Sucht eine lokalisierte Zeichenfolge, die back ähnelt. /// public static string Back { get { @@ -565,7 +574,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Background job. + /// Sucht eine lokalisierte Zeichenfolge, die Background job ähnelt. /// public static string BackgroundJob { get { @@ -574,7 +583,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Backup. + /// Sucht eine lokalisierte Zeichenfolge, die Backup ähnelt. /// public static string Backup { get { @@ -583,7 +592,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Bandwidth. + /// Sucht eine lokalisierte Zeichenfolge, die Bandwidth ähnelt. /// public static string Bandwidth { get { @@ -592,7 +601,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Dark. + /// Sucht eine lokalisierte Zeichenfolge, die Dark ähnelt. /// public static string BaseDark { get { @@ -601,7 +610,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Light. + /// Sucht eine lokalisierte Zeichenfolge, die Light ähnelt. /// public static string BaseLight { get { @@ -610,7 +619,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Baud. + /// Sucht eine lokalisierte Zeichenfolge, die Baud ähnelt. /// public static string Baud { get { @@ -619,7 +628,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Baud rate. + /// Sucht eine lokalisierte Zeichenfolge, die Baud rate ähnelt. /// public static string BaudRate { get { @@ -628,7 +637,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Beacon interval:. + /// Sucht eine lokalisierte Zeichenfolge, die Beacon interval: ähnelt. /// public static string BeaconIntervalColon { get { @@ -637,7 +646,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Black. + /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt. /// public static string Black { get { @@ -646,7 +655,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Blue. + /// Sucht eine lokalisierte Zeichenfolge, die Blue ähnelt. /// public static string Blue { get { @@ -655,7 +664,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Broadcast. + /// Sucht eine lokalisierte Zeichenfolge, die Broadcast ähnelt. /// public static string Broadcast { get { @@ -664,7 +673,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Brown. + /// Sucht eine lokalisierte Zeichenfolge, die Brown ähnelt. /// public static string Brown { get { @@ -673,7 +682,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Buffer. + /// Sucht eine lokalisierte Zeichenfolge, die Buffer ähnelt. /// public static string Buffer { get { @@ -682,7 +691,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Bytes. + /// Sucht eine lokalisierte Zeichenfolge, die Bytes ähnelt. /// public static string Bytes { get { @@ -691,7 +700,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Calculate. + /// Sucht eine lokalisierte Zeichenfolge, die Calculate ähnelt. /// public static string Calculate { get { @@ -700,7 +709,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Calculator. + /// Sucht eine lokalisierte Zeichenfolge, die Calculator ähnelt. /// public static string Calculator { get { @@ -709,7 +718,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Cancel. + /// Sucht eine lokalisierte Zeichenfolge, die Cancel ähnelt. /// public static string Cancel { get { @@ -718,7 +727,7 @@ public class Strings { } /// - /// 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 { @@ -727,7 +736,7 @@ public class Strings { } /// - /// 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 { @@ -736,7 +745,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Change. + /// Sucht eine lokalisierte Zeichenfolge, die Change ähnelt. /// public static string Change { get { @@ -745,7 +754,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Change Master Password.... + /// Sucht eine lokalisierte Zeichenfolge, die Change Master Password... ähnelt. /// public static string ChangeMasterPasswordDots { get { @@ -754,7 +763,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Channel. + /// Sucht eine lokalisierte Zeichenfolge, die Channel ähnelt. /// public static string Channel { get { @@ -763,7 +772,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Channels. + /// Sucht eine lokalisierte Zeichenfolge, die Channels ähnelt. /// public static string Channels { get { @@ -772,7 +781,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Check. + /// Sucht eine lokalisierte Zeichenfolge, die Check ähnelt. /// public static string Check { get { @@ -781,7 +790,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Check for updates. + /// Sucht eine lokalisierte Zeichenfolge, die Check for updates ähnelt. /// public static string CheckForUpdates { get { @@ -790,7 +799,7 @@ public class Strings { } /// - /// 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 { @@ -799,7 +808,7 @@ public class Strings { } /// - /// 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 { @@ -808,7 +817,7 @@ public class Strings { } /// - /// 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 { @@ -817,7 +826,7 @@ public class Strings { } /// - /// 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 { @@ -826,7 +835,7 @@ public class Strings { } /// - /// Looks up a localized string similar to CIDR. + /// Sucht eine lokalisierte Zeichenfolge, die CIDR ähnelt. /// public static string CIDR { get { @@ -835,7 +844,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Class. + /// Sucht eine lokalisierte Zeichenfolge, die Class ähnelt. /// public static string Class { get { @@ -844,7 +853,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Clear filter. + /// Sucht eine lokalisierte Zeichenfolge, die Clear filter ähnelt. /// public static string ClearFilter { get { @@ -853,7 +862,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Client. + /// Sucht eine lokalisierte Zeichenfolge, die Client ähnelt. /// public static string Client { get { @@ -862,7 +871,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Close. + /// Sucht eine lokalisierte Zeichenfolge, die Close ähnelt. /// public static string Close { get { @@ -871,7 +880,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Closed. + /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. /// public static string Closed { get { @@ -880,7 +889,7 @@ public class Strings { } /// - /// 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 { @@ -889,7 +898,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Cobalt. + /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt. /// public static string Cobalt { get { @@ -898,7 +907,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Color depth (bit). + /// Sucht eine lokalisierte Zeichenfolge, die Color depth (bit) ähnelt. /// public static string ColorDepthBit { get { @@ -907,7 +916,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Command Line Arguments. + /// Sucht eine lokalisierte Zeichenfolge, die Command Line Arguments ähnelt. /// public static string CommandLineArguments { get { @@ -916,7 +925,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Community. + /// Sucht eine lokalisierte Zeichenfolge, die Community ähnelt. /// public static string Community { get { @@ -925,7 +934,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Computer. + /// Sucht eine lokalisierte Zeichenfolge, die Computer ähnelt. /// public static string Computer { get { @@ -934,7 +943,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Configure. + /// Sucht eine lokalisierte Zeichenfolge, die Configure ähnelt. /// public static string Configure { get { @@ -943,7 +952,7 @@ public class Strings { } /// - /// 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 { @@ -952,7 +961,7 @@ public class Strings { } /// - /// 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 { @@ -961,7 +970,7 @@ public class Strings { } /// - /// 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 { @@ -970,7 +979,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Confirm. + /// Sucht eine lokalisierte Zeichenfolge, die Confirm ähnelt. /// public static string Confirm { get { @@ -979,7 +988,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Confirm close. + /// Sucht eine lokalisierte Zeichenfolge, die Confirm close ähnelt. /// public static string ConfirmClose { get { @@ -988,7 +997,7 @@ public class Strings { } /// - /// 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 { @@ -997,7 +1006,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Connect. + /// Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. /// public static string Connect { get { @@ -1006,7 +1015,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Connect as. + /// Sucht eine lokalisierte Zeichenfolge, die Connect as ähnelt. /// public static string ConnectAs { get { @@ -1015,7 +1024,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Connect as.... + /// Sucht eine lokalisierte Zeichenfolge, die Connect as... ähnelt. /// public static string ConnectAsDots { get { @@ -1024,7 +1033,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Connect external. + /// Sucht eine lokalisierte Zeichenfolge, die Connect external ähnelt. /// public static string ConnectExternal { get { @@ -1033,7 +1042,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Connecting.... + /// Sucht eine lokalisierte Zeichenfolge, die Connecting... ähnelt. /// public static string ConnectingDots { get { @@ -1042,7 +1051,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Connection. + /// Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt. /// public static string Connection { get { @@ -1051,7 +1060,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Connections. + /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. /// public static string Connections { get { @@ -1060,7 +1069,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Error. + /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt. /// public static string ConnectionState_Error { get { @@ -1069,7 +1078,7 @@ public class Strings { } /// - /// Looks up a localized string similar to OK. + /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt. /// public static string ConnectionState_OK { get { @@ -1078,7 +1087,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Warning. + /// Sucht eine lokalisierte Zeichenfolge, die Warning ähnelt. /// public static string ConnectionState_Warning { get { @@ -1087,7 +1096,7 @@ public class Strings { } /// - /// 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 { @@ -1096,7 +1105,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Continue. + /// Sucht eine lokalisierte Zeichenfolge, die Continue ähnelt. /// public static string Continue { get { @@ -1105,7 +1114,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Copy. + /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. /// public static string Copy { get { @@ -1114,7 +1123,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Copy as.... + /// Sucht eine lokalisierte Zeichenfolge, die Copy as... ähnelt. /// public static string CopyAsDots { get { @@ -1123,7 +1132,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Copy.... + /// Sucht eine lokalisierte Zeichenfolge, die Copy... ähnelt. /// public static string CopyDots { get { @@ -1132,7 +1141,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Copy. + /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. /// public static string CopyNoun { get { @@ -1141,7 +1150,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Copy profile. + /// Sucht eine lokalisierte Zeichenfolge, die Copy profile ähnelt. /// public static string CopyProfile { get { @@ -1150,7 +1159,7 @@ public class Strings { } /// - /// 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 { @@ -1159,7 +1168,7 @@ public class Strings { } /// - /// 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 { @@ -1168,7 +1177,7 @@ public class Strings { } /// - /// 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 { @@ -1177,7 +1186,7 @@ public class Strings { } /// - /// 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 { @@ -1186,7 +1195,7 @@ public class Strings { } /// - /// 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 { @@ -1195,7 +1204,7 @@ public class Strings { } /// - /// 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 { @@ -1204,7 +1213,7 @@ public class Strings { } /// - /// 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 { @@ -1213,7 +1222,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Could not resolve hostname for ip address "{0}"!. + /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve hostname for ip address "{0}"! ähnelt. /// public static string CouldNotResolveHostnameForXXXMessage { get { @@ -1222,7 +1231,7 @@ public class Strings { } /// - /// 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 { @@ -1231,7 +1240,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Credential. + /// Sucht eine lokalisierte Zeichenfolge, die Credential ähnelt. /// public static string Credential { get { @@ -1240,7 +1249,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Credential not found!. + /// Sucht eine lokalisierte Zeichenfolge, die Credential not found! ähnelt. /// public static string CredentialNotFound { get { @@ -1249,7 +1258,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Edit the Profile and select a different credential or delete the existing one. + /// Sucht eine lokalisierte Zeichenfolge, die Edit the Profile and select a different credential or delete the existing one ähnelt. /// public static string CredentialNotFoundMessage { get { @@ -1258,7 +1267,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt. /// public static string Credentials { get { @@ -1267,7 +1276,7 @@ public class Strings { } /// - /// 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 { @@ -1276,7 +1285,7 @@ public class Strings { } /// - /// Looks up a localized string similar to The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa.. + /// Sucht eine lokalisierte Zeichenfolge, die The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa. ähnelt. /// public static string CredentialsEncryptionDisclaimer { get { @@ -1285,7 +1294,7 @@ public class Strings { } /// - /// Looks up a localized string similar to A Credential with this name already exists!. + /// Sucht eine lokalisierte Zeichenfolge, die A Credential with this name already exists! ähnelt. /// public static string CredentialWithThisNameAlreadyExists { get { @@ -1294,7 +1303,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Crimson. + /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt. /// public static string Crimson { get { @@ -1303,7 +1312,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Ctrl+Alt+Del. + /// Sucht eine lokalisierte Zeichenfolge, die Ctrl+Alt+Del ähnelt. /// public static string CtrlAltDel { get { @@ -1312,7 +1321,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Current download. + /// Sucht eine lokalisierte Zeichenfolge, die Current download ähnelt. /// public static string CurrentDownload { get { @@ -1321,7 +1330,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Current upload. + /// Sucht eine lokalisierte Zeichenfolge, die Current upload ähnelt. /// public static string CurrentUpload { get { @@ -1330,7 +1339,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Custom. + /// Sucht eine lokalisierte Zeichenfolge, die Custom ähnelt. /// public static string Custom { get { @@ -1339,7 +1348,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Custom:. + /// Sucht eine lokalisierte Zeichenfolge, die Custom: ähnelt. /// public static string CustomColon { get { @@ -1348,7 +1357,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Custom commands. + /// Sucht eine lokalisierte Zeichenfolge, die Custom commands ähnelt. /// public static string CustomCommands { get { @@ -1357,7 +1366,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Custom screen size:. + /// Sucht eine lokalisierte Zeichenfolge, die Custom screen size: ähnelt. /// public static string CustomScreenSize { get { @@ -1366,7 +1375,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Cut. + /// Sucht eine lokalisierte Zeichenfolge, die Cut ähnelt. /// public static string Cut { get { @@ -1375,7 +1384,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Cyan. + /// Sucht eine lokalisierte Zeichenfolge, die Cyan ähnelt. /// public static string Cyan { get { @@ -1384,7 +1393,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Dashboard. + /// Sucht eine lokalisierte Zeichenfolge, die Dashboard ähnelt. /// public static string Dashboard { get { @@ -1393,7 +1402,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Data. + /// Sucht eine lokalisierte Zeichenfolge, die Data ähnelt. /// public static string Data { get { @@ -1402,7 +1411,7 @@ public class Strings { } /// - /// 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 { @@ -1411,7 +1420,7 @@ public class Strings { } /// - /// 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 { @@ -1420,7 +1429,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Decrypt and load.... + /// Sucht eine lokalisierte Zeichenfolge, die Decrypt and load... ähnelt. /// public static string DecryptAndLoadDots { get { @@ -1429,7 +1438,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Default. + /// Sucht eine lokalisierte Zeichenfolge, die Default ähnelt. /// public static string Default { get { @@ -1438,7 +1447,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Default application. + /// Sucht eine lokalisierte Zeichenfolge, die Default application ähnelt. /// public static string DefaultApplication { get { @@ -1447,7 +1456,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Default-Gateway. + /// Sucht eine lokalisierte Zeichenfolge, die Default-Gateway ähnelt. /// public static string DefaultGateway { get { @@ -1456,7 +1465,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Default port:. + /// Sucht eine lokalisierte Zeichenfolge, die Default port: ähnelt. /// public static string DefaultPort { get { @@ -1465,7 +1474,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete. + /// Sucht eine lokalisierte Zeichenfolge, die Delete ähnelt. /// public static string Delete { get { @@ -1474,7 +1483,7 @@ public class Strings { } /// - /// 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 { @@ -1483,7 +1492,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Delete credentials ähnelt. /// public static string DeleteCredentials { get { @@ -1492,7 +1501,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete custom command. + /// Sucht eine lokalisierte Zeichenfolge, die Delete custom command ähnelt. /// public static string DeleteCustomCommand { get { @@ -1501,7 +1510,7 @@ public class Strings { } /// - /// 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 { @@ -1510,7 +1519,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Delete DNS server ähnelt. /// public static string DeleteDNSServer { get { @@ -1519,7 +1528,7 @@ public class Strings { } /// - /// 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 { @@ -1528,7 +1537,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete.... + /// Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt. /// public static string DeleteDots { get { @@ -1537,7 +1546,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete entry. + /// Sucht eine lokalisierte Zeichenfolge, die Delete entry ähnelt. /// public static string DeleteEntry { get { @@ -1546,7 +1555,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete profile. + /// Sucht eine lokalisierte Zeichenfolge, die Delete profile ähnelt. /// public static string DeleteProfile { get { @@ -1555,7 +1564,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Selected profiles will be deleted permanently.. + /// Sucht eine lokalisierte Zeichenfolge, die Selected profiles will be deleted permanently. ähnelt. /// public static string DeleteProfileMessage { get { @@ -1564,7 +1573,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Delete table. + /// Sucht eine lokalisierte Zeichenfolge, die Delete table ähnelt. /// public static string DeleteTable { get { @@ -1573,7 +1582,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Description. + /// Sucht eine lokalisierte Zeichenfolge, die Description ähnelt. /// public static string Description { get { @@ -1582,7 +1591,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Design. + /// Sucht eine lokalisierte Zeichenfolge, die Design ähnelt. /// public static string Design { get { @@ -1591,7 +1600,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Desktop background. + /// Sucht eine lokalisierte Zeichenfolge, die Desktop background ähnelt. /// public static string DesktopBackground { get { @@ -1600,7 +1609,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Desktop composition. + /// Sucht eine lokalisierte Zeichenfolge, die Desktop composition ähnelt. /// public static string DesktopComposition { get { @@ -1609,7 +1618,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Destination. + /// Sucht eine lokalisierte Zeichenfolge, die Destination ähnelt. /// public static string Destination { get { @@ -1618,7 +1627,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Details. + /// Sucht eine lokalisierte Zeichenfolge, die Details ähnelt. /// public static string Details { get { @@ -1627,7 +1636,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Detecting network.... + /// Sucht eine lokalisierte Zeichenfolge, die Detecting network... ähnelt. /// public static string DetectingNetworkDots { get { @@ -1636,7 +1645,7 @@ public class Strings { } /// - /// 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 { @@ -1645,7 +1654,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DHCP enabled. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP enabled ähnelt. /// public static string DHCPEnabled { get { @@ -1654,7 +1663,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DHCP lease expires. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease expires ähnelt. /// public static string DHCPLeaseExpires { get { @@ -1663,7 +1672,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DHCP lease obtained. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease obtained ähnelt. /// public static string DHCPLeaseObtained { get { @@ -1672,7 +1681,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DHCP server. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP server ähnelt. /// public static string DHCPServer { get { @@ -1681,7 +1690,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PowerShell.. + /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PowerShell. ähnelt. /// public static string DisableTransparencyInTheSettingsToUsePowerShell { get { @@ -1690,7 +1699,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY.. + /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY. ähnelt. /// public static string DisableTransparencyInTheSettingsToUsePuTTY { get { @@ -1699,7 +1708,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop.. + /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop. ähnelt. /// public static string DisableTransparencyInTheSettingsToUseRemoteDesktop { get { @@ -1708,7 +1717,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use TigerVNC.. + /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use TigerVNC. ähnelt. /// public static string DisableTransparencyInTheSettingsToUseTigerVNC { get { @@ -1717,7 +1726,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Disconnect. + /// Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt. /// public static string Disconnect { get { @@ -1726,7 +1735,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Disconnected. + /// Sucht eine lokalisierte Zeichenfolge, die Disconnected ähnelt. /// public static string Disconnected { get { @@ -1735,7 +1744,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Display. + /// Sucht eine lokalisierte Zeichenfolge, die Display ähnelt. /// public static string Display { get { @@ -1744,7 +1753,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DNS. + /// Sucht eine lokalisierte Zeichenfolge, die DNS ähnelt. /// public static string DNS { get { @@ -1753,7 +1762,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DNS autconfiguration. + /// Sucht eine lokalisierte Zeichenfolge, die DNS autconfiguration ähnelt. /// public static string DNSAutoconfiguration { get { @@ -1762,7 +1771,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DNS Lookup. + /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup ähnelt. /// public static string DNSLookup { get { @@ -1771,7 +1780,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DNS Lookup.... + /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup... ähnelt. /// public static string DNSLookupDots { get { @@ -1780,7 +1789,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die DNS server ähnelt. /// public static string DNSServer { get { @@ -1789,7 +1798,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DNS server(s). + /// Sucht eine lokalisierte Zeichenfolge, die DNS server(s) ähnelt. /// public static string DNSServers { get { @@ -1798,7 +1807,7 @@ public class Strings { } /// - /// 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 { @@ -1807,7 +1816,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DNS suffix. + /// Sucht eine lokalisierte Zeichenfolge, die DNS suffix ähnelt. /// public static string DNSSuffix { get { @@ -1816,7 +1825,7 @@ public class Strings { } /// - /// Looks up a localized string similar to How to install RDP 8.1 on Windows 7/Server 2008 R2. + /// Sucht eine lokalisierte Zeichenfolge, die How to install RDP 8.1 on Windows 7/Server 2008 R2 ähnelt. /// public static string DocumentationTitle_00001 { get { @@ -1825,7 +1834,7 @@ public class Strings { } /// - /// Looks up a localized string similar to How to create a custom theme and accent?. + /// Sucht eine lokalisierte Zeichenfolge, die How to create a custom theme and accent? ähnelt. /// public static string DocumentationTitle_00002 { get { @@ -1834,7 +1843,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Domain. + /// Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. /// public static string Domain { get { @@ -1843,7 +1852,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Domain name. + /// Sucht eine lokalisierte Zeichenfolge, die Domain name ähnelt. /// public static string DomainName { get { @@ -1852,7 +1861,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Don't fragment. + /// Sucht eine lokalisierte Zeichenfolge, die Don't fragment ähnelt. /// public static string DontFragment { get { @@ -1861,7 +1870,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Download. + /// Sucht eine lokalisierte Zeichenfolge, die Download ähnelt. /// public static string Download { get { @@ -1870,7 +1879,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Duration. + /// Sucht eine lokalisierte Zeichenfolge, die Duration ähnelt. /// public static string Duration { get { @@ -1879,7 +1888,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Dynamic IPv4 address. + /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 address ähnelt. /// public static string DynamicIPv4Address { get { @@ -1888,7 +1897,7 @@ public class Strings { } /// - /// 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 { @@ -1897,7 +1906,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Edit credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Edit credentials ähnelt. /// public static string EditCredentials { get { @@ -1906,7 +1915,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Edit custom command. + /// Sucht eine lokalisierte Zeichenfolge, die Edit custom command ähnelt. /// public static string EditCustomCommand { get { @@ -1915,7 +1924,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Edit DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Edit DNS server ähnelt. /// public static string EditDNSServer { get { @@ -1924,7 +1933,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Edit.... + /// Sucht eine lokalisierte Zeichenfolge, die Edit... ähnelt. /// public static string EditDots { get { @@ -1933,7 +1942,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Edit group. + /// Sucht eine lokalisierte Zeichenfolge, die Edit group ähnelt. /// public static string EditGroup { get { @@ -1942,7 +1951,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Edit profile. + /// Sucht eine lokalisierte Zeichenfolge, die Edit profile ähnelt. /// public static string EditProfile { get { @@ -1951,7 +1960,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Emerald. + /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt. /// public static string Emerald { get { @@ -1960,7 +1969,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Enable. + /// Sucht eine lokalisierte Zeichenfolge, die Enable ähnelt. /// public static string Enable { get { @@ -1969,7 +1978,7 @@ public class Strings { } /// - /// 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 { @@ -1978,7 +1987,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Enable transparency. + /// Sucht eine lokalisierte Zeichenfolge, die Enable transparency ähnelt. /// public static string EnableTransparency { get { @@ -1987,7 +1996,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Encryption. + /// Sucht eine lokalisierte Zeichenfolge, die Encryption ähnelt. /// public static string Encryption { get { @@ -1996,7 +2005,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Encryption:. + /// Sucht eine lokalisierte Zeichenfolge, die Encryption: ähnelt. /// public static string EncryptionColon { get { @@ -2005,7 +2014,7 @@ public class Strings { } /// - /// Looks up a localized string similar to End time. + /// Sucht eine lokalisierte Zeichenfolge, die End time ähnelt. /// public static string EndTime { get { @@ -2014,7 +2023,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Enter a subnet to calculate it.... + /// Sucht eine lokalisierte Zeichenfolge, die Enter a subnet to calculate it... ähnelt. /// public static string EnterASubnetToCalculateIt { get { @@ -2023,7 +2032,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Enter location.... + /// Sucht eine lokalisierte Zeichenfolge, die Enter location... ähnelt. /// public static string EnterLocationDots { get { @@ -2032,7 +2041,7 @@ public class Strings { } /// - /// 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 { @@ -2041,7 +2050,7 @@ public class Strings { } /// - /// 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 { @@ -2050,7 +2059,7 @@ public class Strings { } /// - /// 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 { @@ -2059,7 +2068,7 @@ public class Strings { } /// - /// 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 { @@ -2068,7 +2077,7 @@ public class Strings { } /// - /// 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 { @@ -2077,7 +2086,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Enter valid file path!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter valid file path! ähnelt. /// public static string EnterValidFilePath { get { @@ -2086,7 +2095,7 @@ public class Strings { } /// - /// 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 { @@ -2095,7 +2104,7 @@ public class Strings { } /// - /// 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 { @@ -2104,7 +2113,7 @@ public class Strings { } /// - /// 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 { @@ -2113,7 +2122,7 @@ public class Strings { } /// - /// 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 { @@ -2122,7 +2131,7 @@ public class Strings { } /// - /// 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 { @@ -2131,7 +2140,7 @@ public class Strings { } /// - /// 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 { @@ -2140,7 +2149,7 @@ public class Strings { } /// - /// 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 { @@ -2149,7 +2158,7 @@ public class Strings { } /// - /// 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 { @@ -2158,7 +2167,7 @@ public class Strings { } /// - /// 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 { @@ -2167,7 +2176,7 @@ public class Strings { } /// - /// 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 { @@ -2176,7 +2185,7 @@ public class Strings { } /// - /// 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 { @@ -2185,7 +2194,7 @@ public class Strings { } /// - /// 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 { @@ -2194,7 +2203,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Enter a valid value between 25 and 100!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid value between 25 and 100! ähnelt. /// public static string EnterValidValueBetween25and100 { get { @@ -2203,7 +2212,7 @@ public class Strings { } /// - /// 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 { @@ -2212,7 +2221,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Error. + /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt. /// public static string Error { get { @@ -2221,7 +2230,7 @@ public class Strings { } /// - /// 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 { @@ -2230,7 +2239,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Error in response!. + /// Sucht eine lokalisierte Zeichenfolge, die Error in response! ähnelt. /// public static string ErrorInResponse { get { @@ -2239,7 +2248,7 @@ public class Strings { } /// - /// 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 { @@ -2248,7 +2257,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Everything. + /// Sucht eine lokalisierte Zeichenfolge, die Everything ähnelt. /// public static string Everything { get { @@ -2257,7 +2266,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Execution Policy. + /// Sucht eine lokalisierte Zeichenfolge, die Execution Policy ähnelt. /// public static string ExecutionPolicy { get { @@ -2266,7 +2275,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Expand. + /// Sucht eine lokalisierte Zeichenfolge, die Expand ähnelt. /// public static string Expand { get { @@ -2275,7 +2284,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Experience. + /// Sucht eine lokalisierte Zeichenfolge, die Experience ähnelt. /// public static string Experience { get { @@ -2284,7 +2293,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Export. + /// Sucht eine lokalisierte Zeichenfolge, die Export ähnelt. /// public static string Export { get { @@ -2293,7 +2302,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Export all. + /// Sucht eine lokalisierte Zeichenfolge, die Export all ähnelt. /// public static string ExportAll { get { @@ -2302,7 +2311,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Export.... + /// Sucht eine lokalisierte Zeichenfolge, die Export... ähnelt. /// public static string ExportDots { get { @@ -2311,7 +2320,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Export selected. + /// Sucht eine lokalisierte Zeichenfolge, die Export selected ähnelt. /// public static string ExportSelected { get { @@ -2320,7 +2329,7 @@ public class Strings { } /// - /// Looks up a localized string similar to External services. + /// Sucht eine lokalisierte Zeichenfolge, die External services ähnelt. /// public static string ExternalServices { get { @@ -2329,7 +2338,7 @@ public class Strings { } /// - /// 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 { @@ -2338,7 +2347,7 @@ public class Strings { } /// - /// Looks up a localized string similar to File. + /// Sucht eine lokalisierte Zeichenfolge, die File ähnelt. /// public static string File { get { @@ -2347,7 +2356,7 @@ public class Strings { } /// - /// 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 { @@ -2356,7 +2365,7 @@ public class Strings { } /// - /// Looks up a localized string similar to File path. + /// Sucht eine lokalisierte Zeichenfolge, die File path ähnelt. /// public static string FilePath { get { @@ -2365,7 +2374,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Filter. + /// Sucht eine lokalisierte Zeichenfolge, die Filter ähnelt. /// public static string Filter { get { @@ -2374,7 +2383,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Filter.... + /// Sucht eine lokalisierte Zeichenfolge, die Filter... ähnelt. /// public static string FilterDots { get { @@ -2383,9 +2392,9 @@ public class Strings { } /// - /// Looks up a localized string similar to Thanks for using NETworkManager! + /// Sucht eine lokalisierte Zeichenfolge, die Thanks for using NETworkManager! /// - ///To provide additional features the application uses services on the Internet that are not operated by me. No data will be sent to me at any time.. + ///To provide additional features the application uses services on the Internet that are not operated by me. No data will be sent to me at any time. ähnelt. /// public static string FirstRunMessage { get { @@ -2394,7 +2403,7 @@ public class Strings { } /// - /// 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 { @@ -2403,7 +2412,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Fixed screen size:. + /// Sucht eine lokalisierte Zeichenfolge, die Fixed screen size: ähnelt. /// public static string FixedScreenSize { get { @@ -2412,7 +2421,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Flush DNS cache. + /// Sucht eine lokalisierte Zeichenfolge, die Flush DNS cache ähnelt. /// public static string FlushDNSCache { get { @@ -2421,7 +2430,7 @@ public class Strings { } /// - /// 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 { @@ -2430,7 +2439,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Font smoothing. + /// Sucht eine lokalisierte Zeichenfolge, die Font smoothing ähnelt. /// public static string FontSmoothing { get { @@ -2439,7 +2448,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Format. + /// Sucht eine lokalisierte Zeichenfolge, die Format ähnelt. /// public static string Format { get { @@ -2448,7 +2457,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Found. + /// Sucht eine lokalisierte Zeichenfolge, die Found ähnelt. /// public static string Found { get { @@ -2457,7 +2466,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Fullscreen. + /// Sucht eine lokalisierte Zeichenfolge, die Fullscreen ähnelt. /// public static string Fullscreen { get { @@ -2466,7 +2475,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Gateway. + /// Sucht eine lokalisierte Zeichenfolge, die Gateway ähnelt. /// public static string Gateway { get { @@ -2475,7 +2484,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Gateway / Router. + /// Sucht eine lokalisierte Zeichenfolge, die Gateway / Router ähnelt. /// public static string GatewayRouter { get { @@ -2484,7 +2493,7 @@ public class Strings { } /// - /// Looks up a localized string similar to General. + /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt. /// public static string General { get { @@ -2493,7 +2502,7 @@ public class Strings { } /// - /// Looks up a localized string similar to 2.4 GHz. + /// Sucht eine lokalisierte Zeichenfolge, die 2.4 GHz ähnelt. /// public static string GHz2dot4 { get { @@ -2502,7 +2511,7 @@ public class Strings { } /// - /// Looks up a localized string similar to 5 GHz. + /// Sucht eine lokalisierte Zeichenfolge, die 5 GHz ähnelt. /// public static string GHz5 { get { @@ -2511,7 +2520,7 @@ public class Strings { } /// - /// 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 { @@ -2520,7 +2529,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Green. + /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt. /// public static string Green { get { @@ -2529,7 +2538,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Group. + /// Sucht eine lokalisierte Zeichenfolge, die Group ähnelt. /// public static string Group { get { @@ -2538,7 +2547,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Headers. + /// Sucht eine lokalisierte Zeichenfolge, die Headers ähnelt. /// public static string Headers { get { @@ -2547,7 +2556,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Height. + /// Sucht eine lokalisierte Zeichenfolge, die Height ähnelt. /// public static string Height { get { @@ -2556,11 +2565,11 @@ public class Strings { } /// - /// Looks up a localized string similar to The background job will save settings, profiles and credentials every x-minutes. + /// Sucht eine lokalisierte Zeichenfolge, die The background job will save settings, profiles and credentials every x-minutes. /// ///Value 0 will disable this feature. /// - ///Changing this value requires a restart of the application to take effect.. + ///Changing this value requires a restart of the application to take effect. ähnelt. /// public static string HelpMessage_BackgroundJob { get { @@ -2569,9 +2578,9 @@ public class Strings { } /// - /// 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 { @@ -2580,9 +2589,9 @@ public class Strings { } /// - /// 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/. + ///URL: https://api.ipify.org/ ähnelt. /// public static string HelpMessage_CheckPublicIPAddress { get { @@ -2591,7 +2600,7 @@ public class Strings { } /// - /// 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 { @@ -2600,10 +2609,10 @@ public class Strings { } /// - /// 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 { @@ -2612,7 +2621,7 @@ public class Strings { } /// - /// Looks up a localized string similar to URL to a web service that can be reached via http or https and returns an IP address as response.. + /// Sucht eine lokalisierte Zeichenfolge, die URL to a web service that can be reached via http or https and returns an IP address as response. ähnelt. /// public static string HelpMessage_CustomPublicIPAddressAPI { get { @@ -2621,7 +2630,7 @@ public class Strings { } /// - /// 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 { @@ -2630,7 +2639,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Reset all settings.. + /// Sucht eine lokalisierte Zeichenfolge, die Reset all settings. ähnelt. /// public static string HelpMessage_ParameterResetSettings { get { @@ -2639,7 +2648,7 @@ public class Strings { } /// - /// 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 { @@ -2648,7 +2657,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Domain to test dns server settings (Domain must resolve A or AAAA record).. + /// Sucht eine lokalisierte Zeichenfolge, die Domain to test dns server settings (Domain must resolve A or AAAA record). ähnelt. /// public static string HelpMessage_PublicDNSTestDomain { get { @@ -2657,7 +2666,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IP address to test dns server settings (IP address must resolve PTR record).. + /// Sucht eine lokalisierte Zeichenfolge, die IP address to test dns server settings (IP address must resolve PTR record). ähnelt. /// public static string HelpMessage_PublicDNSTestIPAddress { get { @@ -2666,7 +2675,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IP address to test connection via ping (ICMP).. + /// Sucht eine lokalisierte Zeichenfolge, die IP address to test connection via ping (ICMP). ähnelt. /// public static string HelpMessage_PublicICMPTestIPAddress { get { @@ -2675,10 +2684,10 @@ public class Strings { } /// - /// 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 { @@ -2687,7 +2696,7 @@ public class Strings { } /// - /// 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 { @@ -2696,7 +2705,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Help translate on transifex. + /// Sucht eine lokalisierte Zeichenfolge, die Help translate on transifex ähnelt. /// public static string HelpTranslateOnTransifex { get { @@ -2705,7 +2714,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Hidden applications. + /// Sucht eine lokalisierte Zeichenfolge, die Hidden applications ähnelt. /// public static string HiddenApplications { get { @@ -2714,7 +2723,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Hide. + /// Sucht eine lokalisierte Zeichenfolge, die Hide ähnelt. /// public static string Hide { get { @@ -2723,7 +2732,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Highlight timeouts. + /// Sucht eine lokalisierte Zeichenfolge, die Highlight timeouts ähnelt. /// public static string HighlightTimeouts { get { @@ -2732,7 +2741,7 @@ public class Strings { } /// - /// Looks up a localized string similar to History. + /// Sucht eine lokalisierte Zeichenfolge, die History ähnelt. /// public static string History { get { @@ -2741,7 +2750,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Hop. + /// Sucht eine lokalisierte Zeichenfolge, die Hop ähnelt. /// public static string Hop { get { @@ -2750,7 +2759,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Hops. + /// Sucht eine lokalisierte Zeichenfolge, die Hops ähnelt. /// public static string Hops { get { @@ -2759,7 +2768,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Host. + /// Sucht eine lokalisierte Zeichenfolge, die Host ähnelt. /// public static string Host { get { @@ -2768,7 +2777,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Hostname. + /// Sucht eine lokalisierte Zeichenfolge, die Hostname ähnelt. /// public static string Hostname { get { @@ -2777,7 +2786,7 @@ public class Strings { } /// - /// 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 { @@ -2786,7 +2795,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Hosts. + /// Sucht eine lokalisierte Zeichenfolge, die Hosts ähnelt. /// public static string Hosts { get { @@ -2795,7 +2804,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Host threads. + /// Sucht eine lokalisierte Zeichenfolge, die Host threads ähnelt. /// public static string HostThreads { get { @@ -2804,7 +2813,7 @@ public class Strings { } /// - /// Looks up a localized string similar to HotKeys. + /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt. /// public static string HotKeys { get { @@ -2813,7 +2822,7 @@ public class Strings { } /// - /// Looks up a localized string similar to HTTP Headers. + /// Sucht eine lokalisierte Zeichenfolge, die HTTP Headers ähnelt. /// public static string HTTPHeaders { get { @@ -2822,7 +2831,7 @@ public class Strings { } /// - /// Looks up a localized string similar to ID. + /// Sucht eine lokalisierte Zeichenfolge, die ID ähnelt. /// public static string ID { get { @@ -2831,7 +2840,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Import. + /// Sucht eine lokalisierte Zeichenfolge, die Import ähnelt. /// public static string Import { get { @@ -2840,7 +2849,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Import / Export. + /// Sucht eine lokalisierte Zeichenfolge, die Import / Export ähnelt. /// public static string ImportExport { get { @@ -2849,7 +2858,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Indigo. + /// Sucht eine lokalisierte Zeichenfolge, die Indigo ähnelt. /// public static string Indigo { get { @@ -2858,7 +2867,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Information. + /// Sucht eine lokalisierte Zeichenfolge, die Information ähnelt. /// public static string Information { get { @@ -2867,7 +2876,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Infrastructure. + /// Sucht eine lokalisierte Zeichenfolge, die Infrastructure ähnelt. /// public static string Infrastructure { get { @@ -2876,7 +2885,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Inherit host from default. + /// Sucht eine lokalisierte Zeichenfolge, die Inherit host from default ähnelt. /// public static string InheritHostFromDefault { get { @@ -2885,7 +2894,7 @@ public class Strings { } /// - /// Looks up a localized string similar to You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality!. + /// Sucht eine lokalisierte Zeichenfolge, die You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality! ähnelt. /// public static string InstallRDP8dot1Message { get { @@ -2894,7 +2903,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Interface. + /// Sucht eine lokalisierte Zeichenfolge, die Interface ähnelt. /// public static string Interface { get { @@ -2903,7 +2912,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Internet. + /// Sucht eine lokalisierte Zeichenfolge, die Internet ähnelt. /// public static string Internet { get { @@ -2912,7 +2921,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IP address. + /// Sucht eine lokalisierte Zeichenfolge, die IP address ähnelt. /// public static string IPAddress { get { @@ -2921,7 +2930,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IP addresses. + /// Sucht eine lokalisierte Zeichenfolge, die IP addresses ähnelt. /// public static string IPAddresses { get { @@ -2930,7 +2939,7 @@ public class Strings { } /// - /// 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 { @@ -2939,7 +2948,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IP range. + /// Sucht eine lokalisierte Zeichenfolge, die IP range ähnelt. /// public static string IPRange { get { @@ -2948,7 +2957,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IP Scanner. + /// Sucht eine lokalisierte Zeichenfolge, die IP Scanner ähnelt. /// public static string IPScanner { get { @@ -2957,7 +2966,7 @@ public class Strings { } /// - /// 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 { @@ -2966,7 +2975,7 @@ public class Strings { } /// - /// 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 { @@ -2975,7 +2984,7 @@ public class Strings { } /// - /// 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 { @@ -2984,7 +2993,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Success. + /// Sucht eine lokalisierte Zeichenfolge, die Success ähnelt. /// public static string IPStatus_Success { get { @@ -2993,7 +3002,7 @@ public class Strings { } /// - /// 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 { @@ -3002,7 +3011,7 @@ public class Strings { } /// - /// 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 { @@ -3011,7 +3020,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv4. + /// Sucht eine lokalisierte Zeichenfolge, die IPv4 ähnelt. /// public static string IPv4 { get { @@ -3020,7 +3029,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv4 address. + /// Sucht eine lokalisierte Zeichenfolge, die IPv4 address ähnelt. /// public static string IPv4Address { get { @@ -3029,7 +3038,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv4-Default-Gateway. + /// Sucht eine lokalisierte Zeichenfolge, die IPv4-Default-Gateway ähnelt. /// public static string IPv4DefaultGateway { get { @@ -3038,7 +3047,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv4 protocol available. + /// Sucht eine lokalisierte Zeichenfolge, die IPv4 protocol available ähnelt. /// public static string IPv4ProtocolAvailable { get { @@ -3047,7 +3056,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv6. + /// Sucht eine lokalisierte Zeichenfolge, die IPv6 ähnelt. /// public static string IPv6 { get { @@ -3056,7 +3065,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv6 address. + /// Sucht eine lokalisierte Zeichenfolge, die IPv6 address ähnelt. /// public static string IPv6Address { get { @@ -3065,7 +3074,7 @@ public class Strings { } /// - /// 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 { @@ -3074,7 +3083,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv6-Default-Gateway. + /// Sucht eine lokalisierte Zeichenfolge, die IPv6-Default-Gateway ähnelt. /// public static string IPv6DefaultGateway { get { @@ -3083,7 +3092,7 @@ public class Strings { } /// - /// Looks up a localized string similar to IPv6 protocol available. + /// Sucht eine lokalisierte Zeichenfolge, die IPv6 protocol available ähnelt. /// public static string IPv6ProtocolAvailable { get { @@ -3092,7 +3101,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Keyboard. + /// Sucht eine lokalisierte Zeichenfolge, die Keyboard ähnelt. /// public static string Keyboard { get { @@ -3101,7 +3110,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Keyboard shortcuts. + /// Sucht eine lokalisierte Zeichenfolge, die Keyboard shortcuts ähnelt. /// public static string KeyboardShortcuts { get { @@ -3110,7 +3119,7 @@ public class Strings { } /// - /// 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 { @@ -3119,7 +3128,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Language. + /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt. /// public static string Language { get { @@ -3128,7 +3137,7 @@ public class Strings { } /// - /// 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 { @@ -3137,7 +3146,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Libraries. + /// Sucht eine lokalisierte Zeichenfolge, die Libraries ähnelt. /// public static string Libraries { get { @@ -3146,7 +3155,7 @@ public class Strings { } /// - /// Looks up a localized string similar to License. + /// Sucht eine lokalisierte Zeichenfolge, die License ähnelt. /// public static string License { get { @@ -3155,7 +3164,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Lime. + /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt. /// public static string Lime { get { @@ -3164,7 +3173,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Listeners. + /// Sucht eine lokalisierte Zeichenfolge, die Listeners ähnelt. /// public static string Listeners { get { @@ -3173,7 +3182,7 @@ public class Strings { } /// - /// 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 { @@ -3182,7 +3191,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Local IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Local IP address ähnelt. /// public static string LocalIPAddress { get { @@ -3191,7 +3200,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Local port. + /// Sucht eine lokalisierte Zeichenfolge, die Local port ähnelt. /// public static string LocalPort { get { @@ -3200,7 +3209,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Location. + /// Sucht eine lokalisierte Zeichenfolge, die Location ähnelt. /// public static string Location { get { @@ -3209,7 +3218,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Location.... + /// Sucht eine lokalisierte Zeichenfolge, die Location... ähnelt. /// public static string LocationDots { get { @@ -3218,7 +3227,7 @@ public class Strings { } /// - /// 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 { @@ -3227,7 +3236,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Lookup. + /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt. /// public static string Lookup { get { @@ -3236,7 +3245,7 @@ public class Strings { } /// - /// Looks up a localized string similar to MAC Address. + /// Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt. /// public static string MACAddress { get { @@ -3245,7 +3254,7 @@ public class Strings { } /// - /// 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 { @@ -3254,7 +3263,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Magenta. + /// Sucht eine lokalisierte Zeichenfolge, die Magenta ähnelt. /// public static string Magenta { get { @@ -3263,7 +3272,7 @@ public class Strings { } /// - /// 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 { @@ -3272,7 +3281,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Master Password. + /// Sucht eine lokalisierte Zeichenfolge, die Master Password ähnelt. /// public static string MasterPassword { get { @@ -3281,7 +3290,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Mauve. + /// Sucht eine lokalisierte Zeichenfolge, die Mauve ähnelt. /// public static string Mauve { get { @@ -3290,7 +3299,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Maximum. + /// Sucht eine lokalisierte Zeichenfolge, die Maximum ähnelt. /// public static string Maximum { get { @@ -3299,7 +3308,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Maximum hops/router. + /// Sucht eine lokalisierte Zeichenfolge, die Maximum hops/router ähnelt. /// public static string MaximumHopsRouter { get { @@ -3308,7 +3317,7 @@ public class Strings { } /// - /// 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 { @@ -3317,7 +3326,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Measured time. + /// Sucht eine lokalisierte Zeichenfolge, die Measured time ähnelt. /// public static string MeasuredTime { get { @@ -3326,7 +3335,7 @@ public class Strings { } /// - /// 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 { @@ -3335,7 +3344,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Message size. + /// Sucht eine lokalisierte Zeichenfolge, die Message size ähnelt. /// public static string MessageSize { get { @@ -3344,7 +3353,7 @@ public class Strings { } /// - /// 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 { @@ -3353,7 +3362,7 @@ public class Strings { } /// - /// 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 { @@ -3362,7 +3371,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Minimum. + /// Sucht eine lokalisierte Zeichenfolge, die Minimum ähnelt. /// public static string Minimum { get { @@ -3371,7 +3380,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Mode. + /// Sucht eine lokalisierte Zeichenfolge, die Mode ähnelt. /// public static string Mode { get { @@ -3380,7 +3389,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Move & Restart. + /// Sucht eine lokalisierte Zeichenfolge, die Move & Restart ähnelt. /// public static string MoveAndRestart { get { @@ -3389,7 +3398,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Multicast. + /// Sucht eine lokalisierte Zeichenfolge, die Multicast ähnelt. /// public static string Multicast { get { @@ -3398,7 +3407,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Multiple instances. + /// Sucht eine lokalisierte Zeichenfolge, die Multiple instances ähnelt. /// public static string MultipleInstances { get { @@ -3407,7 +3416,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Multithreading. + /// Sucht eine lokalisierte Zeichenfolge, die Multithreading ähnelt. /// public static string Multithreading { get { @@ -3416,7 +3425,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Name. + /// Sucht eine lokalisierte Zeichenfolge, die Name ähnelt. /// public static string Name { get { @@ -3425,7 +3434,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network. + /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt. /// public static string Network { get { @@ -3434,7 +3443,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network address. + /// Sucht eine lokalisierte Zeichenfolge, die Network address ähnelt. /// public static string NetworkAddress { get { @@ -3443,7 +3452,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network connections..... + /// Sucht eine lokalisierte Zeichenfolge, die Network connections.... ähnelt. /// public static string NetworkConnectionsDots { get { @@ -3452,7 +3461,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network connection type. + /// Sucht eine lokalisierte Zeichenfolge, die Network connection type ähnelt. /// public static string NetworkConnectionType { get { @@ -3461,7 +3470,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network Interface. + /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt. /// public static string NetworkInterface { get { @@ -3470,7 +3479,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network kind:. + /// Sucht eine lokalisierte Zeichenfolge, die Network kind: ähnelt. /// public static string NetworkKindColon { get { @@ -3479,7 +3488,7 @@ public class Strings { } /// - /// 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 { @@ -3488,7 +3497,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Networks. + /// Sucht eine lokalisierte Zeichenfolge, die Networks ähnelt. /// public static string Networks { get { @@ -3497,7 +3506,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network unavailable!. + /// Sucht eine lokalisierte Zeichenfolge, die Network unavailable! ähnelt. /// public static string NetworkUnavailable { get { @@ -3506,7 +3515,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Network usage. + /// Sucht eine lokalisierte Zeichenfolge, die Network usage ähnelt. /// public static string NetworkUsage { get { @@ -3515,7 +3524,7 @@ public class Strings { } /// - /// Looks up a localized string similar to New connection.... + /// Sucht eine lokalisierte Zeichenfolge, die New connection... ähnelt. /// public static string NewConnectionDots { get { @@ -3524,7 +3533,7 @@ public class Strings { } /// - /// 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 { @@ -3533,7 +3542,7 @@ public class Strings { } /// - /// Looks up a localized string similar to New tab. + /// Sucht eine lokalisierte Zeichenfolge, die New tab ähnelt. /// public static string NewTab { get { @@ -3542,7 +3551,7 @@ public class Strings { } /// - /// Looks up a localized string similar to No. + /// Sucht eine lokalisierte Zeichenfolge, die No ähnelt. /// public static string No { get { @@ -3551,7 +3560,7 @@ public class Strings { } /// - /// 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 { @@ -3560,7 +3569,7 @@ public class Strings { } /// - /// 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 { @@ -3569,7 +3578,7 @@ public class Strings { } /// - /// 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 { @@ -3578,7 +3587,7 @@ public class Strings { } /// - /// 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 { @@ -3587,8 +3596,8 @@ public class Strings { } /// - /// 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 { @@ -3597,7 +3606,7 @@ public class Strings { } /// - /// 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 { @@ -3606,7 +3615,7 @@ public class Strings { } /// - /// Looks up a localized string similar to (not changed). + /// Sucht eine lokalisierte Zeichenfolge, die (not changed) ähnelt. /// public static string NotChanged { get { @@ -3615,7 +3624,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Note. + /// Sucht eine lokalisierte Zeichenfolge, die Note ähnelt. /// public static string Note { get { @@ -3624,7 +3633,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Nothing found!. + /// Sucht eine lokalisierte Zeichenfolge, die Nothing found! ähnelt. /// public static string NothingFound { get { @@ -3633,7 +3642,7 @@ public class Strings { } /// - /// 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 { @@ -3642,7 +3651,7 @@ public class Strings { } /// - /// Looks up a localized string similar to No update available!. + /// Sucht eine lokalisierte Zeichenfolge, die No update available! ähnelt. /// public static string NoUpdateAvailable { get { @@ -3651,7 +3660,7 @@ public class Strings { } /// - /// 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 { @@ -3660,7 +3669,7 @@ public class Strings { } /// - /// 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 { @@ -3669,7 +3678,7 @@ public class Strings { } /// - /// 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 { @@ -3678,7 +3687,7 @@ public class Strings { } /// - /// 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 { @@ -3687,7 +3696,7 @@ public class Strings { } /// - /// 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 { @@ -3696,7 +3705,7 @@ public class Strings { } /// - /// 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 { @@ -3705,7 +3714,7 @@ public class Strings { } /// - /// 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 { @@ -3714,7 +3723,7 @@ public class Strings { } /// - /// 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 { @@ -3723,7 +3732,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Off. + /// Sucht eine lokalisierte Zeichenfolge, die Off ähnelt. /// public static string Off { get { @@ -3732,7 +3741,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Official. + /// Sucht eine lokalisierte Zeichenfolge, die Official ähnelt. /// public static string Official { get { @@ -3741,7 +3750,7 @@ public class Strings { } /// - /// Looks up a localized string similar to OID. + /// Sucht eine lokalisierte Zeichenfolge, die OID ähnelt. /// public static string OID { get { @@ -3750,7 +3759,7 @@ public class Strings { } /// - /// Looks up a localized string similar to OK. + /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt. /// public static string OK { get { @@ -3759,7 +3768,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Olive. + /// Sucht eine lokalisierte Zeichenfolge, die Olive ähnelt. /// public static string Olive { get { @@ -3768,7 +3777,7 @@ public class Strings { } /// - /// Looks up a localized string similar to On. + /// Sucht eine lokalisierte Zeichenfolge, die On ähnelt. /// public static string On { get { @@ -3777,7 +3786,7 @@ public class Strings { } /// - /// 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 { @@ -3786,7 +3795,7 @@ public class Strings { } /// - /// 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 { @@ -3795,7 +3804,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open. + /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. /// public static string Open { get { @@ -3804,7 +3813,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open documentation. + /// Sucht eine lokalisierte Zeichenfolge, die Open documentation ähnelt. /// public static string OpenDocumentation { get { @@ -3813,7 +3822,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open license. + /// Sucht eine lokalisierte Zeichenfolge, die Open license ähnelt. /// public static string OpenLicense { get { @@ -3822,7 +3831,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open location. + /// Sucht eine lokalisierte Zeichenfolge, die Open location ähnelt. /// public static string OpenLocation { get { @@ -3831,7 +3840,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open project. + /// Sucht eine lokalisierte Zeichenfolge, die Open project ähnelt. /// public static string OpenProject { get { @@ -3840,7 +3849,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open settings. + /// Sucht eine lokalisierte Zeichenfolge, die Open settings ähnelt. /// public static string OpenSettings { get { @@ -3849,7 +3858,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open website. + /// Sucht eine lokalisierte Zeichenfolge, die Open website ähnelt. /// public static string OpenWebsite { get { @@ -3858,7 +3867,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Orange. + /// Sucht eine lokalisierte Zeichenfolge, die Orange ähnelt. /// public static string Orange { get { @@ -3867,7 +3876,7 @@ public class Strings { } /// - /// Looks up a localized string similar to OUI. + /// Sucht eine lokalisierte Zeichenfolge, die OUI ähnelt. /// public static string OUI { get { @@ -3876,7 +3885,7 @@ public class Strings { } /// - /// Looks up a localized string similar to override. + /// Sucht eine lokalisierte Zeichenfolge, die override ähnelt. /// public static string Override { get { @@ -3885,7 +3894,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Override default settings. + /// Sucht eine lokalisierte Zeichenfolge, die Override default settings ähnelt. /// public static string OverrideDefaultSettings { get { @@ -3894,7 +3903,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Overwrite. + /// Sucht eine lokalisierte Zeichenfolge, die Overwrite ähnelt. /// public static string Overwrite { get { @@ -3903,7 +3912,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Overwrite?. + /// Sucht eine lokalisierte Zeichenfolge, die Overwrite? ähnelt. /// public static string OverwriteQuestion { get { @@ -3912,9 +3921,9 @@ public class Strings { } /// - /// Looks up a localized string similar to Overwrite settings in the destination folder? + /// Sucht eine lokalisierte Zeichenfolge, die Overwrite settings in the destination folder? /// - ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings!. + ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings! ähnelt. /// public static string OverwriteSettingsInTheDestinationFolder { get { @@ -3923,7 +3932,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Packet loss. + /// Sucht eine lokalisierte Zeichenfolge, die Packet loss ähnelt. /// public static string PacketLoss { get { @@ -3932,7 +3941,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Packets transmitted. + /// Sucht eine lokalisierte Zeichenfolge, die Packets transmitted ähnelt. /// public static string PacketsTransmitted { get { @@ -3941,7 +3950,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Password. + /// Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. /// public static string Password { get { @@ -3950,7 +3959,7 @@ public class Strings { } /// - /// 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 { @@ -3959,7 +3968,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Paste. + /// Sucht eine lokalisierte Zeichenfolge, die Paste ähnelt. /// public static string Paste { get { @@ -3968,7 +3977,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Path. + /// Sucht eine lokalisierte Zeichenfolge, die Path ähnelt. /// public static string Path { get { @@ -3977,7 +3986,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Performance. + /// Sucht eine lokalisierte Zeichenfolge, die Performance ähnelt. /// public static string Performance { get { @@ -3986,7 +3995,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Persistent bitmap caching. + /// Sucht eine lokalisierte Zeichenfolge, die Persistent bitmap caching ähnelt. /// public static string PersistentBitmapCaching { get { @@ -3995,7 +4004,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Phy kind:. + /// Sucht eine lokalisierte Zeichenfolge, die Phy kind: ähnelt. /// public static string PhyKindColon { get { @@ -4004,7 +4013,7 @@ public class Strings { } /// - /// Looks up a localized string similar to PhysicalAddress. + /// Sucht eine lokalisierte Zeichenfolge, die PhysicalAddress ähnelt. /// public static string PhysicalAddress { get { @@ -4013,7 +4022,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Ping. + /// Sucht eine lokalisierte Zeichenfolge, die Ping ähnelt. /// public static string Ping { get { @@ -4022,7 +4031,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Ping Monitor. + /// Sucht eine lokalisierte Zeichenfolge, die Ping Monitor ähnelt. /// public static string PingMonitor { get { @@ -4031,7 +4040,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Pink. + /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt. /// public static string Pink { get { @@ -4040,7 +4049,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Port. + /// Sucht eine lokalisierte Zeichenfolge, die Port ähnelt. /// public static string Port { get { @@ -4049,7 +4058,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Portable. + /// Sucht eine lokalisierte Zeichenfolge, die Portable ähnelt. /// public static string Portable { get { @@ -4058,7 +4067,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Port or service. + /// Sucht eine lokalisierte Zeichenfolge, die Port or service ähnelt. /// public static string PortOrService { get { @@ -4067,7 +4076,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Port(s). + /// Sucht eine lokalisierte Zeichenfolge, die Port(s) ähnelt. /// public static string Ports { get { @@ -4076,7 +4085,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Port Scanner. + /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt. /// public static string PortScanner { get { @@ -4085,7 +4094,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Closed. + /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. /// public static string PortState_Closed { get { @@ -4094,7 +4103,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Open. + /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. /// public static string PortState_Open { get { @@ -4103,7 +4112,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Port threads. + /// Sucht eine lokalisierte Zeichenfolge, die Port threads ähnelt. /// public static string PortThreads { get { @@ -4112,7 +4121,7 @@ public class Strings { } /// - /// Looks up a localized string similar to PowerShell. + /// Sucht eine lokalisierte Zeichenfolge, die PowerShell ähnelt. /// public static string PowerShell { get { @@ -4121,7 +4130,7 @@ public class Strings { } /// - /// Looks up a localized string similar to PowerShell location.... + /// Sucht eine lokalisierte Zeichenfolge, die PowerShell location... ähnelt. /// public static string PowerShellLocationDots { get { @@ -4130,7 +4139,7 @@ public class Strings { } /// - /// 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 { @@ -4139,7 +4148,7 @@ public class Strings { } /// - /// 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 { @@ -4148,7 +4157,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Primary DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Primary DNS server ähnelt. /// public static string PrimaryDNSServer { get { @@ -4157,7 +4166,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Priv. + /// Sucht eine lokalisierte Zeichenfolge, die Priv ähnelt. /// public static string Priv { get { @@ -4166,7 +4175,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Privacy. + /// Sucht eine lokalisierte Zeichenfolge, die Privacy ähnelt. /// public static string Privacy { get { @@ -4175,7 +4184,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Profile. + /// Sucht eine lokalisierte Zeichenfolge, die Profile ähnelt. /// public static string Profile { get { @@ -4184,7 +4193,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Profiles. + /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt. /// public static string Profiles { get { @@ -4193,7 +4202,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Profiles reloaded. + /// Sucht eine lokalisierte Zeichenfolge, die Profiles reloaded ähnelt. /// public static string ProfilesReloaded { get { @@ -4202,7 +4211,7 @@ public class Strings { } /// - /// 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 { @@ -4211,7 +4220,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Program. + /// Sucht eine lokalisierte Zeichenfolge, die Program ähnelt. /// public static string Program { get { @@ -4220,7 +4229,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Protocol. + /// Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. /// public static string Protocol { get { @@ -4229,7 +4238,7 @@ public class Strings { } /// - /// 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 { @@ -4238,7 +4247,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Public DNS test domain. + /// Sucht eine lokalisierte Zeichenfolge, die Public DNS test domain ähnelt. /// public static string PublicDNSTestDomain { get { @@ -4247,7 +4256,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Public DNS test IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Public DNS test IP address ähnelt. /// public static string PublicDNSTestIPAddress { get { @@ -4256,7 +4265,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Public ICMP test IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Public ICMP test IP address ähnelt. /// public static string PublicICMPTestIPAddress { get { @@ -4265,8 +4274,8 @@ public class Strings { } /// - /// 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 { @@ -4275,7 +4284,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Purple. + /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt. /// public static string Purple { get { @@ -4284,7 +4293,7 @@ public class Strings { } /// - /// Looks up a localized string similar to PuTTY. + /// Sucht eine lokalisierte Zeichenfolge, die PuTTY ähnelt. /// public static string PuTTY { get { @@ -4293,7 +4302,7 @@ public class Strings { } /// - /// Looks up a localized string similar to PuTTY location.... + /// Sucht eine lokalisierte Zeichenfolge, die PuTTY location... ähnelt. /// public static string PuTTYLocationDots { get { @@ -4302,7 +4311,7 @@ public class Strings { } /// - /// 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 { @@ -4311,7 +4320,7 @@ public class Strings { } /// - /// Looks up a localized string similar to PuTTY profile. + /// Sucht eine lokalisierte Zeichenfolge, die PuTTY profile ähnelt. /// public static string PuTTYProfile { get { @@ -4320,7 +4329,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Query. + /// Sucht eine lokalisierte Zeichenfolge, die Query ähnelt. /// public static string Query { get { @@ -4329,7 +4338,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Query class. + /// Sucht eine lokalisierte Zeichenfolge, die Query class ähnelt. /// public static string QueryClass { get { @@ -4338,7 +4347,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Questions. + /// Sucht eine lokalisierte Zeichenfolge, die Questions ähnelt. /// public static string Questions { get { @@ -4347,7 +4356,7 @@ public class Strings { } /// - /// Looks up a localized string similar to RAW. + /// Sucht eine lokalisierte Zeichenfolge, die RAW ähnelt. /// public static string RAW { get { @@ -4356,7 +4365,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Received / Lost. + /// Sucht eine lokalisierte Zeichenfolge, die Received / Lost ähnelt. /// public static string ReceivedLost { get { @@ -4365,7 +4374,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Reconnect. + /// Sucht eine lokalisierte Zeichenfolge, die Reconnect ähnelt. /// public static string Reconnect { get { @@ -4374,7 +4383,7 @@ public class Strings { } /// - /// 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 { @@ -4383,7 +4392,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Recursion. + /// Sucht eine lokalisierte Zeichenfolge, die Recursion ähnelt. /// public static string Recursion { get { @@ -4392,7 +4401,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Red. + /// Sucht eine lokalisierte Zeichenfolge, die Red ähnelt. /// public static string Red { get { @@ -4401,7 +4410,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Redirect clipboard. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect clipboard ähnelt. /// public static string RedirectClipboard { get { @@ -4410,7 +4419,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Redirect devices. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect devices ähnelt. /// public static string RedirectDevices { get { @@ -4419,7 +4428,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Redirect drives. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect drives ähnelt. /// public static string RedirectDrives { get { @@ -4428,7 +4437,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Redirect ports. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect ports ähnelt. /// public static string RedirectPorts { get { @@ -4437,7 +4446,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Redirect printers. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect printers ähnelt. /// public static string RedirectPrinters { get { @@ -4446,7 +4455,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Redirect smartcards. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect smartcards ähnelt. /// public static string RedirectSmartcards { get { @@ -4455,7 +4464,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Refresh. + /// Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. /// public static string Refresh { get { @@ -4464,7 +4473,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Release. + /// Sucht eine lokalisierte Zeichenfolge, die Release ähnelt. /// public static string Release { get { @@ -4473,7 +4482,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Release & Renew. + /// Sucht eine lokalisierte Zeichenfolge, die Release & Renew ähnelt. /// public static string ReleaseRenew { get { @@ -4482,7 +4491,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remaining time. + /// Sucht eine lokalisierte Zeichenfolge, die Remaining time ähnelt. /// public static string RemainingTime { get { @@ -4491,7 +4500,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remote audio. + /// Sucht eine lokalisierte Zeichenfolge, die Remote audio ähnelt. /// public static string RemoteAudio { get { @@ -4500,7 +4509,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remote audio playback. + /// Sucht eine lokalisierte Zeichenfolge, die Remote audio playback ähnelt. /// public static string RemoteAudioPlayback { get { @@ -4509,7 +4518,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remote audio recording. + /// Sucht eine lokalisierte Zeichenfolge, die Remote audio recording ähnelt. /// public static string RemoteAudioRecording { get { @@ -4518,7 +4527,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remote console. + /// Sucht eine lokalisierte Zeichenfolge, die Remote console ähnelt. /// public static string RemoteConsole { get { @@ -4527,7 +4536,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remote Desktop. + /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt. /// public static string RemoteDesktop { get { @@ -4536,7 +4545,7 @@ public class Strings { } /// - /// 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 { @@ -4545,7 +4554,7 @@ public class Strings { } /// - /// 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 { @@ -4554,7 +4563,7 @@ public class Strings { } /// - /// 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 { @@ -4563,7 +4572,7 @@ public class Strings { } /// - /// 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 { @@ -4572,7 +4581,7 @@ public class Strings { } /// - /// 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 { @@ -4581,7 +4590,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Socket closed.. + /// Sucht eine lokalisierte Zeichenfolge, die Socket closed. ähnelt. /// public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE { get { @@ -4590,7 +4599,7 @@ public class Strings { } /// - /// 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 { @@ -4599,7 +4608,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Decompression error.. + /// Sucht eine lokalisierte Zeichenfolge, die Decompression error. ähnelt. /// public static string RemoteDesktopDisconnectReason_ClientDecompressionError { get { @@ -4608,7 +4617,7 @@ public class Strings { } /// - /// 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 { @@ -4617,7 +4626,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Decryption error.. + /// Sucht eine lokalisierte Zeichenfolge, die Decryption error. ähnelt. /// public static string RemoteDesktopDisconnectReason_DecryptionError { get { @@ -4626,7 +4635,7 @@ public class Strings { } /// - /// 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 { @@ -4635,7 +4644,7 @@ public class Strings { } /// - /// 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 { @@ -4644,7 +4653,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Encryption error.. + /// Sucht eine lokalisierte Zeichenfolge, die Encryption error. ähnelt. /// public static string RemoteDesktopDisconnectReason_EncryptionError { get { @@ -4653,7 +4662,7 @@ public class Strings { } /// - /// 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 { @@ -4662,7 +4671,7 @@ public class Strings { } /// - /// 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 { @@ -4671,7 +4680,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Internal error.. + /// Sucht eine lokalisierte Zeichenfolge, die Internal error. ähnelt. /// public static string RemoteDesktopDisconnectReason_InternalError { get { @@ -4680,7 +4689,7 @@ public class Strings { } /// - /// 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 { @@ -4689,7 +4698,7 @@ public class Strings { } /// - /// 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 { @@ -4698,7 +4707,7 @@ public class Strings { } /// - /// 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 { @@ -4707,7 +4716,7 @@ public class Strings { } /// - /// 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 { @@ -4716,7 +4725,7 @@ public class Strings { } /// - /// 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 { @@ -4725,7 +4734,7 @@ public class Strings { } /// - /// 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 { @@ -4734,7 +4743,7 @@ public class Strings { } /// - /// 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 { @@ -4743,7 +4752,7 @@ public class Strings { } /// - /// 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 { @@ -4752,7 +4761,7 @@ public class Strings { } /// - /// 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 { @@ -4761,7 +4770,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Local disconnection.. + /// Sucht eine lokalisierte Zeichenfolge, die Local disconnection. ähnelt. /// public static string RemoteDesktopDisconnectReason_LocalNotError { get { @@ -4770,7 +4779,7 @@ public class Strings { } /// - /// 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 { @@ -4779,7 +4788,7 @@ public class Strings { } /// - /// 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 { @@ -4788,7 +4797,7 @@ public class Strings { } /// - /// 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 { @@ -4797,7 +4806,7 @@ public class Strings { } /// - /// 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 { @@ -4806,7 +4815,7 @@ public class Strings { } /// - /// 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 { @@ -4815,7 +4824,7 @@ public class Strings { } /// - /// 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 { @@ -4824,7 +4833,7 @@ public class Strings { } /// - /// 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 { @@ -4833,7 +4842,7 @@ public class Strings { } /// - /// 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 { @@ -4842,7 +4851,7 @@ public class Strings { } /// - /// 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 { @@ -4851,7 +4860,7 @@ public class Strings { } /// - /// 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 { @@ -4860,7 +4869,7 @@ public class Strings { } /// - /// 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 { @@ -4869,7 +4878,7 @@ public class Strings { } /// - /// 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 { @@ -4878,7 +4887,7 @@ public class Strings { } /// - /// 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 { @@ -4887,7 +4896,7 @@ public class Strings { } /// - /// 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 { @@ -4896,7 +4905,7 @@ public class Strings { } /// - /// 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 { @@ -4905,7 +4914,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Login failed.. + /// Sucht eine lokalisierte Zeichenfolge, die Login failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrLogonFailure { get { @@ -4914,7 +4923,7 @@ public class Strings { } /// - /// 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 { @@ -4923,7 +4932,7 @@ public class Strings { } /// - /// 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 { @@ -4932,7 +4941,7 @@ public class Strings { } /// - /// 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 { @@ -4941,7 +4950,7 @@ public class Strings { } /// - /// 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 { @@ -4950,7 +4959,7 @@ public class Strings { } /// - /// 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 { @@ -4959,7 +4968,7 @@ public class Strings { } /// - /// 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 { @@ -4968,7 +4977,7 @@ public class Strings { } /// - /// 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 { @@ -4977,7 +4986,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Timeout occurred.. + /// Sucht eine lokalisierte Zeichenfolge, die Timeout occurred. ähnelt. /// public static string RemoteDesktopDisconnectReason_TimeoutOccurred { get { @@ -4986,7 +4995,7 @@ public class Strings { } /// - /// 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 { @@ -4995,7 +5004,7 @@ public class Strings { } /// - /// 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 { @@ -5004,7 +5013,7 @@ public class Strings { } /// - /// 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 { @@ -5013,7 +5022,7 @@ public class Strings { } /// - /// 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 { @@ -5022,7 +5031,7 @@ public class Strings { } /// - /// 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 { @@ -5031,7 +5040,7 @@ public class Strings { } /// - /// 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 { @@ -5040,7 +5049,7 @@ public class Strings { } /// - /// 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 { @@ -5049,7 +5058,7 @@ public class Strings { } /// - /// 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 { @@ -5058,7 +5067,7 @@ public class Strings { } /// - /// 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 { @@ -5067,7 +5076,7 @@ public class Strings { } /// - /// 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 { @@ -5076,7 +5085,7 @@ public class Strings { } /// - /// 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 { @@ -5085,7 +5094,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remote IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Remote IP address ähnelt. /// public static string RemoteIPAddress { get { @@ -5094,7 +5103,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Remote port. + /// Sucht eine lokalisierte Zeichenfolge, die Remote port ähnelt. /// public static string RemotePort { get { @@ -5103,7 +5112,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Renew. + /// Sucht eine lokalisierte Zeichenfolge, die Renew ähnelt. /// public static string Renew { get { @@ -5112,7 +5121,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Repeat. + /// Sucht eine lokalisierte Zeichenfolge, die Repeat ähnelt. /// public static string Repeat { get { @@ -5121,7 +5130,7 @@ public class Strings { } /// - /// 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 ReportAnIssueOrCreateAFeatureRequest { get { @@ -5130,7 +5139,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Reset. + /// Sucht eine lokalisierte Zeichenfolge, die Reset ähnelt. /// public static string Reset { get { @@ -5139,8 +5148,8 @@ public class Strings { } /// - /// Looks up a localized string similar to If you have forgotten your password and want to start over, delete the following file and restart the application. - ///Path: "{0}". + /// Sucht eine lokalisierte Zeichenfolge, die If you have forgotten your password and want to start over, delete the following file and restart the application. + ///Path: "{0}" ähnelt. /// public static string ResetCredentialsMessage { get { @@ -5149,7 +5158,7 @@ public class Strings { } /// - /// 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 { @@ -5158,7 +5167,7 @@ public class Strings { } /// - /// 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 { @@ -5167,7 +5176,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Resolve hostname. + /// Sucht eine lokalisierte Zeichenfolge, die Resolve hostname ähnelt. /// public static string ResolveHostname { get { @@ -5176,7 +5185,7 @@ public class Strings { } /// - /// 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 { @@ -5185,7 +5194,7 @@ public class Strings { } /// - /// 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 { @@ -5194,7 +5203,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Resolve PTR. + /// Sucht eine lokalisierte Zeichenfolge, die Resolve PTR ähnelt. /// public static string ResolvePTR { get { @@ -5203,7 +5212,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Resources. + /// Sucht eine lokalisierte Zeichenfolge, die Resources ähnelt. /// public static string Resources { get { @@ -5212,7 +5221,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Responses. + /// Sucht eine lokalisierte Zeichenfolge, die Responses ähnelt. /// public static string Responses { get { @@ -5221,7 +5230,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Restart. + /// Sucht eine lokalisierte Zeichenfolge, die Restart ähnelt. /// public static string Restart { get { @@ -5230,7 +5239,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Restart now. + /// Sucht eine lokalisierte Zeichenfolge, die Restart now ähnelt. /// public static string RestartNow { get { @@ -5239,7 +5248,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Restart required. + /// Sucht eine lokalisierte Zeichenfolge, die Restart required ähnelt. /// public static string RestartRequired { get { @@ -5248,7 +5257,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Some settings are applied only after restarting the application!. + /// Sucht eine lokalisierte Zeichenfolge, die Some settings are applied only after restarting the application! ähnelt. /// public static string RestartRequiredSettingsChangedMessage { get { @@ -5257,7 +5266,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Restart session. + /// Sucht eine lokalisierte Zeichenfolge, die Restart session ähnelt. /// public static string RestartSession { get { @@ -5266,7 +5275,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Restart the application so that all settings are applied!. + /// Sucht eine lokalisierte Zeichenfolge, die Restart the application so that all settings are applied! ähnelt. /// public static string RestartTheApplicationSoThatAllChangesAreApplied { get { @@ -5275,7 +5284,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Result. + /// Sucht eine lokalisierte Zeichenfolge, die Result ähnelt. /// public static string Result { get { @@ -5284,7 +5293,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Retries. + /// Sucht eine lokalisierte Zeichenfolge, die Retries ähnelt. /// public static string Retries { get { @@ -5293,7 +5302,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Rlogin. + /// Sucht eine lokalisierte Zeichenfolge, die Rlogin ähnelt. /// public static string Rlogin { get { @@ -5302,7 +5311,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Rlogin port. + /// Sucht eine lokalisierte Zeichenfolge, die Rlogin port ähnelt. /// public static string RloginPort { get { @@ -5311,7 +5320,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Route. + /// Sucht eine lokalisierte Zeichenfolge, die Route ähnelt. /// public static string Route { get { @@ -5320,7 +5329,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Routing. + /// Sucht eine lokalisierte Zeichenfolge, die Routing ähnelt. /// public static string Routing { get { @@ -5329,7 +5338,7 @@ public class Strings { } /// - /// 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 { @@ -5338,7 +5347,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Save. + /// Sucht eine lokalisierte Zeichenfolge, die Save ähnelt. /// public static string Save { get { @@ -5347,7 +5356,7 @@ public class Strings { } /// - /// 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 { @@ -5356,7 +5365,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Scan. + /// Sucht eine lokalisierte Zeichenfolge, die Scan ähnelt. /// public static string Scan { get { @@ -5365,7 +5374,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Scanned. + /// Sucht eine lokalisierte Zeichenfolge, die Scanned ähnelt. /// public static string Scanned { get { @@ -5374,7 +5383,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Search. + /// Sucht eine lokalisierte Zeichenfolge, die Search ähnelt. /// public static string Search { get { @@ -5383,7 +5392,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Search.... + /// Sucht eine lokalisierte Zeichenfolge, die Search... ähnelt. /// public static string SearchDots { get { @@ -5392,7 +5401,7 @@ public class Strings { } /// - /// 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 { @@ -5401,7 +5410,7 @@ public class Strings { } /// - /// 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 { @@ -5410,7 +5419,7 @@ public class Strings { } /// - /// 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 { @@ -5419,7 +5428,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Searching for networks.... + /// Sucht eine lokalisierte Zeichenfolge, die Searching for networks... ähnelt. /// public static string SearchingForNetworksDots { get { @@ -5428,7 +5437,7 @@ public class Strings { } /// - /// 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 { @@ -5437,7 +5446,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Secondary DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Secondary DNS server ähnelt. /// public static string SecondaryDNSServer { get { @@ -5446,7 +5455,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Security. + /// Sucht eine lokalisierte Zeichenfolge, die Security ähnelt. /// public static string Security { get { @@ -5455,7 +5464,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Select a profile.... + /// Sucht eine lokalisierte Zeichenfolge, die Select a profile... ähnelt. /// public static string SelectAProfileDots { get { @@ -5464,7 +5473,7 @@ public class Strings { } /// - /// 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 { @@ -5473,7 +5482,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Selected. + /// Sucht eine lokalisierte Zeichenfolge, die Selected ähnelt. /// public static string Selected { get { @@ -5482,7 +5491,7 @@ public class Strings { } /// - /// Looks up a localized string similar to The selected settings are overwritten.. + /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are overwritten. ähnelt. /// public static string SelectedSettingsAreOverwritten { get { @@ -5491,7 +5500,7 @@ public class Strings { } /// - /// Looks up a localized string similar to The selected settings are reset.. + /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are reset. ähnelt. /// public static string SelectedSettingsAreReset { get { @@ -5500,7 +5509,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Select the settings you want to export:. + /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to export: ähnelt. /// public static string SelectTheSettingsYouWantToExport { get { @@ -5509,7 +5518,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Select the settings you want to import:. + /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to import: ähnelt. /// public static string SelectTheSettingsYouWantToImport { get { @@ -5518,7 +5527,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Select the settings you want to reset:. + /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to reset: ähnelt. /// public static string SelectTheSettingsYouWantToReset { get { @@ -5527,7 +5536,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Send. + /// Sucht eine lokalisierte Zeichenfolge, die Send ähnelt. /// public static string Send { get { @@ -5536,7 +5545,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Serial. + /// Sucht eine lokalisierte Zeichenfolge, die Serial ähnelt. /// public static string Serial { get { @@ -5545,7 +5554,7 @@ public class Strings { } /// - /// Looks up a localized string similar to SerialLine. + /// Sucht eine lokalisierte Zeichenfolge, die SerialLine ähnelt. /// public static string SerialLine { get { @@ -5554,7 +5563,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Service. + /// Sucht eine lokalisierte Zeichenfolge, die Service ähnelt. /// public static string Service { get { @@ -5563,7 +5572,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Set Master Password. + /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password ähnelt. /// public static string SetMasterPassword { get { @@ -5572,7 +5581,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Set Master Password.... + /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password... ähnelt. /// public static string SetMasterPasswordDots { get { @@ -5581,7 +5590,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Settings. + /// Sucht eine lokalisierte Zeichenfolge, die Settings ähnelt. /// public static string Settings { get { @@ -5590,7 +5599,7 @@ public class Strings { } /// - /// Looks up a localized string similar to The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!). + /// Sucht eine lokalisierte Zeichenfolge, die The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!) ähnelt. /// public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage { get { @@ -5599,7 +5608,7 @@ public class Strings { } /// - /// 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 { @@ -5608,7 +5617,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Settings successfully exported!. + /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully exported! ähnelt. /// public static string SettingsSuccessfullyExported { get { @@ -5617,7 +5626,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Settings successfully imported!. + /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully imported! ähnelt. /// public static string SettingsSuccessfullyImported { get { @@ -5626,7 +5635,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Settings successfully reset!. + /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully reset! ähnelt. /// public static string SettingsSuccessfullyReset { get { @@ -5635,7 +5644,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Show. + /// Sucht eine lokalisierte Zeichenfolge, die Show ähnelt. /// public static string Show { get { @@ -5644,7 +5653,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Show closed ports. + /// Sucht eine lokalisierte Zeichenfolge, die Show closed ports ähnelt. /// public static string ShowClosedPorts { get { @@ -5653,7 +5662,7 @@ public class Strings { } /// - /// 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 { @@ -5662,7 +5671,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Show error message. + /// Sucht eine lokalisierte Zeichenfolge, die Show error message ähnelt. /// public static string ShowErrorMessage { get { @@ -5671,7 +5680,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Show local licenses. + /// Sucht eine lokalisierte Zeichenfolge, die Show local licenses ähnelt. /// public static string ShowLocalLicenses { get { @@ -5680,7 +5689,7 @@ public class Strings { } /// - /// 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 { @@ -5689,7 +5698,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Show scan result for all IP addresses. + /// Sucht eine lokalisierte Zeichenfolge, die Show scan result for all IP addresses ähnelt. /// public static string ShowScanResultForAllIPAddresses { get { @@ -5698,7 +5707,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Show statistics. + /// Sucht eine lokalisierte Zeichenfolge, die Show statistics ähnelt. /// public static string ShowStatistics { get { @@ -5707,7 +5716,7 @@ public class Strings { } /// - /// 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 { @@ -5716,7 +5725,7 @@ public class Strings { } /// - /// 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 { @@ -5725,7 +5734,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Show window on network change. + /// Sucht eine lokalisierte Zeichenfolge, die Show window on network change ähnelt. /// public static string ShowWindowOnNetworkChange { get { @@ -5734,7 +5743,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Sienna. + /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt. /// public static string Sienna { get { @@ -5743,7 +5752,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Signal strength. + /// Sucht eine lokalisierte Zeichenfolge, die Signal strength ähnelt. /// public static string SignalStrength { get { @@ -5752,7 +5761,7 @@ public class Strings { } /// - /// 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 { @@ -5761,7 +5770,7 @@ public class Strings { } /// - /// Looks up a localized string similar to SNMP. + /// Sucht eine lokalisierte Zeichenfolge, die SNMP ähnelt. /// public static string SNMP { get { @@ -5770,7 +5779,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Socket. + /// Sucht eine lokalisierte Zeichenfolge, die Socket ähnelt. /// public static string Socket { get { @@ -5779,7 +5788,7 @@ public class Strings { } /// - /// 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 { @@ -5788,7 +5797,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Speed. + /// Sucht eine lokalisierte Zeichenfolge, die Speed ähnelt. /// public static string Speed { get { @@ -5797,7 +5806,7 @@ public class Strings { } /// - /// Looks up a localized string similar to SSH. + /// Sucht eine lokalisierte Zeichenfolge, die SSH ähnelt. /// public static string SSH { get { @@ -5806,7 +5815,7 @@ public class Strings { } /// - /// Looks up a localized string similar to SSH port. + /// Sucht eine lokalisierte Zeichenfolge, die SSH port ähnelt. /// public static string SSHPort { get { @@ -5815,7 +5824,7 @@ public class Strings { } /// - /// 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 StarForkTheProjectOnGitHub { get { @@ -5824,7 +5833,7 @@ public class Strings { } /// - /// 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 { @@ -5833,7 +5842,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Start time. + /// Sucht eine lokalisierte Zeichenfolge, die Start time ähnelt. /// public static string StartTime { get { @@ -5842,7 +5851,7 @@ public class Strings { } /// - /// 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 { @@ -5851,7 +5860,7 @@ public class Strings { } /// - /// Looks up a localized string similar to State. + /// Sucht eine lokalisierte Zeichenfolge, die State ähnelt. /// public static string State { get { @@ -5860,7 +5869,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Static IPv4 address. + /// Sucht eine lokalisierte Zeichenfolge, die Static IPv4 address ähnelt. /// public static string StaticIPv4Address { get { @@ -5869,7 +5878,7 @@ public class Strings { } /// - /// 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 { @@ -5878,7 +5887,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Statistics. + /// Sucht eine lokalisierte Zeichenfolge, die Statistics ähnelt. /// public static string Statistics { get { @@ -5887,7 +5896,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Status. + /// Sucht eine lokalisierte Zeichenfolge, die Status ähnelt. /// public static string Status { get { @@ -5896,7 +5905,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Steel. + /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt. /// public static string Steel { get { @@ -5905,7 +5914,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Subnet. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet ähnelt. /// public static string Subnet { get { @@ -5914,7 +5923,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Subnet 1. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet 1 ähnelt. /// public static string Subnet1 { get { @@ -5923,7 +5932,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Subnet 2. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet 2 ähnelt. /// public static string Subnet2 { get { @@ -5932,7 +5941,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Subnet Calculator. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet Calculator ähnelt. /// public static string SubnetCalculator { get { @@ -5941,7 +5950,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Subnetmask. + /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask ähnelt. /// public static string Subnetmask { get { @@ -5950,7 +5959,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Subnetmask or CIDR. + /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask or CIDR ähnelt. /// public static string SubnetmaskOrCIDR { get { @@ -5959,7 +5968,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Subnetting. + /// Sucht eine lokalisierte Zeichenfolge, die Subnetting ähnelt. /// public static string Subnetting { get { @@ -5968,7 +5977,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Success!. + /// Sucht eine lokalisierte Zeichenfolge, die Success! ähnelt. /// public static string Success { get { @@ -5977,7 +5986,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Tags. + /// Sucht eine lokalisierte Zeichenfolge, die Tags ähnelt. /// public static string Tags { get { @@ -5986,7 +5995,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Taupe. + /// Sucht eine lokalisierte Zeichenfolge, die Taupe ähnelt. /// public static string Taupe { get { @@ -5995,7 +6004,7 @@ public class Strings { } /// - /// 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 { @@ -6004,7 +6013,7 @@ public class Strings { } /// - /// 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 { @@ -6013,7 +6022,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Closed. + /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. /// public static string TcpState_Closed { get { @@ -6022,7 +6031,7 @@ public class Strings { } /// - /// Looks up a localized string similar to CloseWait. + /// Sucht eine lokalisierte Zeichenfolge, die CloseWait ähnelt. /// public static string TcpState_CloseWait { get { @@ -6031,7 +6040,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Closing. + /// Sucht eine lokalisierte Zeichenfolge, die Closing ähnelt. /// public static string TcpState_Closing { get { @@ -6040,7 +6049,7 @@ public class Strings { } /// - /// Looks up a localized string similar to DeleteTcb. + /// Sucht eine lokalisierte Zeichenfolge, die DeleteTcb ähnelt. /// public static string TcpState_DeleteTcb { get { @@ -6049,7 +6058,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Established. + /// Sucht eine lokalisierte Zeichenfolge, die Established ähnelt. /// public static string TcpState_Established { get { @@ -6058,7 +6067,7 @@ public class Strings { } /// - /// Looks up a localized string similar to FinWait1. + /// Sucht eine lokalisierte Zeichenfolge, die FinWait1 ähnelt. /// public static string TcpState_FinWait1 { get { @@ -6067,7 +6076,7 @@ public class Strings { } /// - /// Looks up a localized string similar to FinWait2. + /// Sucht eine lokalisierte Zeichenfolge, die FinWait2 ähnelt. /// public static string TcpState_FinWait2 { get { @@ -6076,7 +6085,7 @@ public class Strings { } /// - /// Looks up a localized string similar to LastAck. + /// Sucht eine lokalisierte Zeichenfolge, die LastAck ähnelt. /// public static string TcpState_LastAck { get { @@ -6085,7 +6094,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Listen. + /// Sucht eine lokalisierte Zeichenfolge, die Listen ähnelt. /// public static string TcpState_Listen { get { @@ -6094,7 +6103,7 @@ public class Strings { } /// - /// Looks up a localized string similar to SynReceived. + /// Sucht eine lokalisierte Zeichenfolge, die SynReceived ähnelt. /// public static string TcpState_SynReceived { get { @@ -6103,7 +6112,7 @@ public class Strings { } /// - /// Looks up a localized string similar to SynSent. + /// Sucht eine lokalisierte Zeichenfolge, die SynSent ähnelt. /// public static string TcpState_SynSent { get { @@ -6112,7 +6121,7 @@ public class Strings { } /// - /// Looks up a localized string similar to TimeWait. + /// Sucht eine lokalisierte Zeichenfolge, die TimeWait ähnelt. /// public static string TcpState_TimeWait { get { @@ -6121,7 +6130,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Unkown. + /// Sucht eine lokalisierte Zeichenfolge, die Unkown ähnelt. /// public static string TcpState_Unknown { get { @@ -6130,7 +6139,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Teal. + /// Sucht eine lokalisierte Zeichenfolge, die Teal ähnelt. /// public static string Teal { get { @@ -6139,7 +6148,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Telnet. + /// Sucht eine lokalisierte Zeichenfolge, die Telnet ähnelt. /// public static string Telnet { get { @@ -6148,7 +6157,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Telnet port. + /// Sucht eine lokalisierte Zeichenfolge, die Telnet port ähnelt. /// public static string TelnetPort { get { @@ -6157,7 +6166,7 @@ public class Strings { } /// - /// 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 { @@ -6166,7 +6175,7 @@ public class Strings { } /// - /// 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 { @@ -6175,7 +6184,7 @@ public class Strings { } /// - /// 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 { @@ -6184,7 +6193,7 @@ public class Strings { } /// - /// 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 { @@ -6193,7 +6202,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Theme. + /// Sucht eine lokalisierte Zeichenfolge, die Theme ähnelt. /// public static string Theme { get { @@ -6202,7 +6211,7 @@ public class Strings { } /// - /// 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 { @@ -6211,7 +6220,7 @@ public class Strings { } /// - /// 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 { @@ -6220,7 +6229,7 @@ public class Strings { } /// - /// Looks up a localized string similar to This feature is only available in Windows 10 / Server 2016 or later!. + /// Sucht eine lokalisierte Zeichenfolge, die This feature is only available in Windows 10 / Server 2016 or later! ähnelt. /// public static string ThisFeatureIsOnlyAvailableInWindows10Server2016OrLater { get { @@ -6229,7 +6238,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Threads. + /// Sucht eine lokalisierte Zeichenfolge, die Threads ähnelt. /// public static string Threads { get { @@ -6238,7 +6247,7 @@ public class Strings { } /// - /// Looks up a localized string similar to TigerVNC. + /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC ähnelt. /// public static string TigerVNC { get { @@ -6247,7 +6256,7 @@ public class Strings { } /// - /// Looks up a localized string similar to TigerVNC location.... + /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC location... ähnelt. /// public static string TigerVNCLocationDots { get { @@ -6256,7 +6265,7 @@ public class Strings { } /// - /// 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 { @@ -6265,7 +6274,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Time. + /// Sucht eine lokalisierte Zeichenfolge, die Time ähnelt. /// public static string Time { get { @@ -6274,7 +6283,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Time 1. + /// Sucht eine lokalisierte Zeichenfolge, die Time 1 ähnelt. /// public static string Time1 { get { @@ -6283,7 +6292,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Time 2. + /// Sucht eine lokalisierte Zeichenfolge, die Time 2 ähnelt. /// public static string Time2 { get { @@ -6292,7 +6301,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Time 3. + /// Sucht eine lokalisierte Zeichenfolge, die Time 3 ähnelt. /// public static string Time3 { get { @@ -6301,7 +6310,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Time in seconds how long the window should be displayed. + /// Sucht eine lokalisierte Zeichenfolge, die Time in seconds how long the window should be displayed ähnelt. /// public static string TimeInSecondsHowLongTheWindowShouldBeDisplayed { get { @@ -6310,7 +6319,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Timeout. + /// Sucht eine lokalisierte Zeichenfolge, die Timeout ähnelt. /// public static string Timeout { get { @@ -6319,7 +6328,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Timeout (ms). + /// Sucht eine lokalisierte Zeichenfolge, die Timeout (ms) ähnelt. /// public static string TimeoutMS { get { @@ -6328,7 +6337,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Timeout on SNMP query.. + /// Sucht eine lokalisierte Zeichenfolge, die Timeout on SNMP query. ähnelt. /// public static string TimeoutOnSNMPQuery { get { @@ -6337,7 +6346,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Timeout (s). + /// Sucht eine lokalisierte Zeichenfolge, die Timeout (s) ähnelt. /// public static string TimeoutS { get { @@ -6346,7 +6355,7 @@ public class Strings { } /// - /// 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 { @@ -6355,7 +6364,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Timestamp. + /// Sucht eine lokalisierte Zeichenfolge, die Timestamp ähnelt. /// public static string Timestamp { get { @@ -6364,7 +6373,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Time to wait between each ping. + /// Sucht eine lokalisierte Zeichenfolge, die Time to wait between each ping ähnelt. /// public static string TimeToWaitBetweenEachPing { get { @@ -6373,7 +6382,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Hour(s). + /// Sucht eine lokalisierte Zeichenfolge, die Hour(s) ähnelt. /// public static string TimeUnit_Hour { get { @@ -6382,7 +6391,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Minute(s). + /// Sucht eine lokalisierte Zeichenfolge, die Minute(s) ähnelt. /// public static string TimeUnit_Minute { get { @@ -6391,7 +6400,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Second(s). + /// Sucht eine lokalisierte Zeichenfolge, die Second(s) ähnelt. /// public static string TimeUnit_Second { get { @@ -6400,9 +6409,9 @@ public class Strings { } /// - /// 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. /// - ///URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose. + ///URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose ähnelt. /// public static string ToolTip_GithubNewIssueUrl { get { @@ -6411,9 +6420,9 @@ public class Strings { } /// - /// Looks up a localized string similar to Star/Fork the Project on Github. + /// Sucht eine lokalisierte Zeichenfolge, die Star/Fork the Project on Github. /// - ///URL: https://github.com/BornToBeRoot/NETworkManager/. + ///URL: https://github.com/BornToBeRoot/NETworkManager/ ähnelt. /// public static string ToolTip_GitHubProjectUrl { get { @@ -6422,9 +6431,9 @@ public class Strings { } /// - /// Looks up a localized string similar to Help translate the project on Transifex. + /// Sucht eine lokalisierte Zeichenfolge, die Help translate the project on Transifex. /// - ///URL: https://transifex.com/BornToBeRoot/NETworkManager/. + ///URL: https://transifex.com/BornToBeRoot/NETworkManager/ ähnelt. /// public static string ToolTip_TransifexProjectUrl { get { @@ -6433,9 +6442,9 @@ public class Strings { } /// - /// Looks up a localized string similar to Contact via Twitter. + /// Sucht eine lokalisierte Zeichenfolge, die Contact via Twitter. /// - ///URL: https://twitter.com/BornToBeRoot_DE. + ///URL: https://twitter.com/BornToBeRoot_DE ähnelt. /// public static string ToolTip_TwitterContactUrl { get { @@ -6444,7 +6453,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Total bytes received. + /// Sucht eine lokalisierte Zeichenfolge, die Total bytes received ähnelt. /// public static string TotalBytesReceived { get { @@ -6453,7 +6462,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Total bytes sent. + /// Sucht eine lokalisierte Zeichenfolge, die Total bytes sent ähnelt. /// public static string TotalBytesSent { get { @@ -6462,7 +6471,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Total download. + /// Sucht eine lokalisierte Zeichenfolge, die Total download ähnelt. /// public static string TotalDownload { get { @@ -6471,7 +6480,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Total upload. + /// Sucht eine lokalisierte Zeichenfolge, die Total upload ähnelt. /// public static string TotalUpload { get { @@ -6480,7 +6489,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Trace. + /// Sucht eine lokalisierte Zeichenfolge, die Trace ähnelt. /// public static string Trace { get { @@ -6489,7 +6498,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Traceroute. + /// Sucht eine lokalisierte Zeichenfolge, die Traceroute ähnelt. /// public static string Traceroute { get { @@ -6498,7 +6507,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Transparency. + /// Sucht eine lokalisierte Zeichenfolge, die Transparency ähnelt. /// public static string Transparency { get { @@ -6507,7 +6516,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Tray. + /// Sucht eine lokalisierte Zeichenfolge, die Tray ähnelt. /// public static string Tray { get { @@ -6516,7 +6525,7 @@ public class Strings { } /// - /// Looks up a localized string similar to TTL. + /// Sucht eine lokalisierte Zeichenfolge, die TTL ähnelt. /// public static string TTL { get { @@ -6525,7 +6534,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Type. + /// Sucht eine lokalisierte Zeichenfolge, die Type ähnelt. /// public static string Type { get { @@ -6534,7 +6543,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Unkown error!. + /// Sucht eine lokalisierte Zeichenfolge, die Unkown error! ähnelt. /// public static string UnkownError { get { @@ -6543,7 +6552,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Untray / Bring window to front. + /// Sucht eine lokalisierte Zeichenfolge, die Untray / Bring window to front ähnelt. /// public static string UntrayBringWindowToFront { get { @@ -6552,7 +6561,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Update. + /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt. /// public static string Update { get { @@ -6561,7 +6570,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Upload. + /// Sucht eine lokalisierte Zeichenfolge, die Upload ähnelt. /// public static string Upload { get { @@ -6570,7 +6579,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Uptime:. + /// Sucht eine lokalisierte Zeichenfolge, die Uptime: ähnelt. /// public static string UptimeColon { get { @@ -6579,7 +6588,7 @@ public class Strings { } /// - /// Looks up a localized string similar to URL. + /// Sucht eine lokalisierte Zeichenfolge, die URL ähnelt. /// public static string URL { get { @@ -6588,7 +6597,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Use cache. + /// Sucht eine lokalisierte Zeichenfolge, die Use cache ähnelt. /// public static string UseCache { get { @@ -6597,7 +6606,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Use credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Use credentials ähnelt. /// public static string UseCredentials { get { @@ -6606,7 +6615,7 @@ public class Strings { } /// - /// 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 { @@ -6615,7 +6624,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Use custom API. + /// Sucht eine lokalisierte Zeichenfolge, die Use custom API ähnelt. /// public static string UseCustomAPI { get { @@ -6624,7 +6633,7 @@ public class Strings { } /// - /// 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 { @@ -6633,7 +6642,7 @@ public class Strings { } /// - /// 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 { @@ -6642,7 +6651,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Use only TCP. + /// Sucht eine lokalisierte Zeichenfolge, die Use only TCP ähnelt. /// public static string UseOnlyTCP { get { @@ -6651,7 +6660,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Use resolver cache. + /// Sucht eine lokalisierte Zeichenfolge, die Use resolver cache ähnelt. /// public static string UseResolverCache { get { @@ -6660,7 +6669,7 @@ public class Strings { } /// - /// Looks up a localized string similar to User interface locked!. + /// Sucht eine lokalisierte Zeichenfolge, die User interface locked! ähnelt. /// public static string UserInterfaceLocked { get { @@ -6669,7 +6678,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Username. + /// Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. /// public static string Username { get { @@ -6678,7 +6687,7 @@ public class Strings { } /// - /// 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 { @@ -6687,7 +6696,7 @@ public class Strings { } /// - /// 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 { @@ -6696,7 +6705,7 @@ public class Strings { } /// - /// Looks up a localized string similar to v1/v2c. + /// Sucht eine lokalisierte Zeichenfolge, die v1/v2c ähnelt. /// public static string v1v2c { get { @@ -6705,7 +6714,7 @@ public class Strings { } /// - /// Looks up a localized string similar to v3. + /// Sucht eine lokalisierte Zeichenfolge, die v3 ähnelt. /// public static string v3 { get { @@ -6714,7 +6723,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Validate. + /// Sucht eine lokalisierte Zeichenfolge, die Validate ähnelt. /// public static string Validate { get { @@ -6723,7 +6732,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Validation failed!. + /// Sucht eine lokalisierte Zeichenfolge, die Validation failed! ähnelt. /// public static string ValidationFailed { get { @@ -6732,7 +6741,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Vendor. + /// Sucht eine lokalisierte Zeichenfolge, die Vendor ähnelt. /// public static string Vendor { get { @@ -6741,7 +6750,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Version. + /// Sucht eine lokalisierte Zeichenfolge, die Version ähnelt. /// public static string Version { get { @@ -6750,7 +6759,7 @@ public class Strings { } /// - /// 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 { @@ -6759,7 +6768,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Violet. + /// Sucht eine lokalisierte Zeichenfolge, die Violet ähnelt. /// public static string Violet { get { @@ -6768,7 +6777,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Visible applications. + /// Sucht eine lokalisierte Zeichenfolge, die Visible applications ähnelt. /// public static string VisibleApplications { get { @@ -6777,7 +6786,7 @@ public class Strings { } /// - /// 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 { @@ -6786,7 +6795,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Visual styles. + /// Sucht eine lokalisierte Zeichenfolge, die Visual styles ähnelt. /// public static string VisualStyles { get { @@ -6795,7 +6804,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Wake on LAN. + /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt. /// public static string WakeOnLAN { get { @@ -6804,7 +6813,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Wake up. + /// Sucht eine lokalisierte Zeichenfolge, die Wake up ähnelt. /// public static string WakeUp { get { @@ -6813,7 +6822,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Walk mode. + /// Sucht eine lokalisierte Zeichenfolge, die Walk mode ähnelt. /// public static string WalkMode { get { @@ -6822,7 +6831,7 @@ public class Strings { } /// - /// 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_CouldNotResolvIPAddressForHostname { get { @@ -6831,7 +6840,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application.. + /// Sucht eine lokalisierte Zeichenfolge, die Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application. ähnelt. /// public static string WarningMessage_SettingsGeneralAppearanceTransparency { get { @@ -6840,7 +6849,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Website. + /// Sucht eine lokalisierte Zeichenfolge, die Website ähnelt. /// public static string Website { get { @@ -6849,7 +6858,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Welcome. + /// Sucht eine lokalisierte Zeichenfolge, die Welcome ähnelt. /// public static string Welcome { get { @@ -6858,7 +6867,7 @@ public class Strings { } /// - /// Looks up a localized string similar to White. + /// Sucht eine lokalisierte Zeichenfolge, die White ähnelt. /// public static string White { get { @@ -6867,7 +6876,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Whois. + /// Sucht eine lokalisierte Zeichenfolge, die Whois ähnelt. /// public static string Whois { get { @@ -6876,7 +6885,7 @@ public class Strings { } /// - /// 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 { @@ -6885,7 +6894,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Wide Subnet. + /// Sucht eine lokalisierte Zeichenfolge, die Wide Subnet ähnelt. /// public static string WideSubnet { get { @@ -6894,7 +6903,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Width. + /// Sucht eine lokalisierte Zeichenfolge, die Width ähnelt. /// public static string Width { get { @@ -6903,7 +6912,7 @@ public class Strings { } /// - /// Looks up a localized string similar to WiFi. + /// Sucht eine lokalisierte Zeichenfolge, die WiFi ähnelt. /// public static string WiFi { get { @@ -6912,7 +6921,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Window. + /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt. /// public static string Window { get { @@ -6921,7 +6930,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Windows DNS settings. + /// Sucht eine lokalisierte Zeichenfolge, die Windows DNS settings ähnelt. /// public static string WindowsDNSSettings { get { @@ -6930,7 +6939,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Wrong password!. + /// Sucht eine lokalisierte Zeichenfolge, die Wrong password! ähnelt. /// public static string WrongPassword { get { @@ -6939,7 +6948,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Credentials could not be decrypted with the given password.. + /// Sucht eine lokalisierte Zeichenfolge, die Credentials could not be decrypted with the given password. ähnelt. /// public static string WrongPasswordDecryptionFailedMessage { get { @@ -6948,7 +6957,7 @@ public class Strings { } /// - /// 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 { @@ -6957,7 +6966,7 @@ public class Strings { } /// - /// 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 { @@ -6966,7 +6975,7 @@ public class Strings { } /// - /// 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 { @@ -6975,7 +6984,7 @@ public class Strings { } /// - /// 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 { @@ -6984,7 +6993,7 @@ public class Strings { } /// - /// 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 { @@ -6993,7 +7002,7 @@ public class Strings { } /// - /// 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 { @@ -7002,7 +7011,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Yellow. + /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt. /// public static string Yellow { get { @@ -7011,7 +7020,7 @@ public class Strings { } /// - /// Looks up a localized string similar to Yes. + /// Sucht eine lokalisierte Zeichenfolge, die Yes ähnelt. /// public static string Yes { get { @@ -7020,7 +7029,7 @@ public class Strings { } /// - /// 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 { diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index bb769ee9b..a91829f32 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -2459,4 +2459,7 @@ URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose Add host + + Add a host to monitor + \ No newline at end of file diff --git a/Source/NETworkManager/Utilities/DnsLookupHelper.cs b/Source/NETworkManager/Utilities/DnsLookupHelper.cs new file mode 100644 index 000000000..83e1573fd --- /dev/null +++ b/Source/NETworkManager/Utilities/DnsLookupHelper.cs @@ -0,0 +1,76 @@ +using DnsClient; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Sockets; +using System.Text; +using System.Threading.Tasks; + +namespace NETworkManager.Utilities +{ + class DnsLookupHelper + { + private static LookupClient DnsLookupClient = new LookupClient(); + public async static Task> ResolveHost(string host, bool preferIPv4 = true) + { + // Try to parse the string into an IP-Address + var hostIsIP = IPAddress.TryParse(host, out var ipAddress); + + if (!hostIsIP) // Lookup + { + try + { + + // Try to resolve the hostname + var ipHostEntrys = await DnsLookupClient.GetHostEntryAsync(host); + + if (ipHostEntrys.AddressList.Length == 0) + return new Tuple(host, null); + + foreach (var ip in ipHostEntrys.AddressList) + { + switch (ip.AddressFamily) + { + case AddressFamily.InterNetwork when preferIPv4: + ipAddress = ip; + break; + // ToDo: Setting + case AddressFamily.InterNetworkV6 when preferIPv4: + ipAddress = ip; + break; + } + } + + // Fallback --> If we could not resolve our prefered ip protocol for the hostname + foreach (var ip in ipHostEntrys.AddressList) + { + ipAddress = ip; + break; + } + } + catch // This will catch DNS resolve errors + { + return new Tuple(host, null); + } + } + else // Reverse lookup + { + try + { + var hostname = await DnsLookupClient.GetHostNameAsync(ipAddress); + + if (!string.IsNullOrEmpty(hostname)) + host = hostname; + } + catch + { + + } + } + + return new Tuple(host, ipAddress); + } + + } +} diff --git a/Source/NETworkManager/ViewModels/PingMonitorClientViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs similarity index 98% rename from Source/NETworkManager/ViewModels/PingMonitorClientViewModel.cs rename to Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs index e4e929f69..bea441999 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorClientViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs @@ -24,7 +24,7 @@ namespace NETworkManager.ViewModels { - public class PingMonitorClientViewModel : ViewModelBase + public class PingMonitorHostViewModel : ViewModelBase { #region Variables private CancellationTokenSource _cancellationTokenSource; @@ -233,7 +233,7 @@ public TimeSpan Duration #endregion #region Contructor, load settings - public PingMonitorClientViewModel(int tabId, PingMonitorOptions options) + public PingMonitorHostViewModel(int tabId, PingMonitorOptions options) { _hostId = tabId; _pingMonitorOptions = options; diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index 5e75e530c..ef45a3267 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -1,5 +1,4 @@ using NETworkManager.Models.Settings; -using System.Net; using System.Windows.Input; using MahApps.Metro.Controls.Dialogs; using System.Windows; @@ -8,14 +7,9 @@ using System.ComponentModel; using System.Windows.Data; using NETworkManager.Utilities; -using System.Threading.Tasks; using System.Linq; -using MahApps.Metro.Controls; using System.Collections.ObjectModel; using NETworkManager.Views; -using DnsClient; -using System.Net.Sockets; -using System.Diagnostics; namespace NETworkManager.ViewModels { @@ -23,7 +17,7 @@ public class PingMonitorViewModel : ViewModelBase, IProfileManager { #region Variables private readonly IDialogCoordinator _dialogCoordinator; - private LookupClient DnsLookupClient = new LookupClient(); + private readonly bool _isLoading; @@ -45,22 +39,20 @@ public string Host public ICollectionView HostHistoryView { get; } - private ObservableCollection _hosts = new ObservableCollection(); - public ObservableCollection Hosts + private bool _isWorking; + public bool IsWorking { - get => _hosts; + get => _isWorking; set { - if (value != null && value == _hosts) + if (value == _isWorking) return; - _hosts = value; + _isWorking = value; + OnPropertyChanged(); } } - public ICollectionView HostsView { get; } - - private bool _displayStatusMessage; public bool DisplayStatusMessage { @@ -89,6 +81,21 @@ public string StatusMessage } } + private ObservableCollection _hosts = new ObservableCollection(); + public ObservableCollection Hosts + { + get => _hosts; + set + { + if (value != null && value == _hosts) + return; + + _hosts = value; + } + } + + public ICollectionView HostsView { get; } + #region Profiles public ICollectionView Profiles { get; } @@ -208,7 +215,7 @@ public PingMonitorViewModel(IDialogCoordinator instance) // This will select the first entry as selected item... SelectedProfile = Profiles.SourceCollection.Cast().Where(x => x.PingMonitor_Enabled).OrderBy(x => x.Group).ThenBy(x => x.Name).FirstOrDefault(); - + LoadSettings(); _isLoading = false; @@ -282,76 +289,24 @@ private void ClearSearchAction() private async void AddHost(string host) { + IsWorking = true; + DisplayStatusMessage = false; + _hostId++; - // Try to parse the string into an IP-Address - var hostIsIP = IPAddress.TryParse(Host, out var ipAddress); + var dnsLookup = await DnsLookupHelper.ResolveHost(host); - if (!hostIsIP) // Lookup + if (dnsLookup.Item2 != null) { - try - { - // Try to resolve the hostname - var ipHostEntrys = await DnsLookupClient.GetHostEntryAsync(host); - - if(ipHostEntrys.AddressList.Length == 0) - { - StatusMessage = string.Format(Resources.Localization.Strings.CouldNotResolveHostnameFor, Host); - DisplayStatusMessage = true; - - return; - } - - foreach (var ip in ipHostEntrys.AddressList) - { - switch (ip.AddressFamily) - { - // ToDo: Setting - case AddressFamily.InterNetwork when SettingsManager.Current.Ping_ResolveHostnamePreferIPv4: - ipAddress = ip; - break; - // ToDo: Setting - case AddressFamily.InterNetworkV6 when !SettingsManager.Current.Ping_ResolveHostnamePreferIPv4: - ipAddress = ip; - break; - } - } - - // Fallback --> If we could not resolve our prefered ip protocol for the hostname - foreach (var ip in ipHostEntrys.AddressList) - { - ipAddress = ip; - break; - } - } - catch // This will catch DNS resolve errors - { - StatusMessage = string.Format(Resources.Localization.Strings.CouldNotResolveHostnameFor, Host); - DisplayStatusMessage = true; - - return; - } + Hosts.Add(new PingMonitorHostView(_hostId, new PingMonitorOptions(dnsLookup.Item1, dnsLookup.Item2))); } - else // Reverse lookup + else { - try - { - var x = await DnsLookupClient.GetHostNameAsync(ipAddress); - - if (!string.IsNullOrEmpty(x)) - host = x; - } - catch - { - - } - } - - Debug.WriteLine("Add new host:"); - Debug.WriteLine(host); - Debug.WriteLine(ipAddress); + StatusMessage = string.Format(Resources.Localization.Strings.CouldNotResolveHostnameFor, host); + DisplayStatusMessage = true; + } - Hosts.Add(new PingMonitorClientView(_hostId, new PingMonitorOptions(host, ipAddress))); + IsWorking = false; } private void AddHostToHistory(string host) diff --git a/Source/NETworkManager/Views/PingMonitorClientView.xaml b/Source/NETworkManager/Views/PingMonitorHostView.xaml similarity index 96% rename from Source/NETworkManager/Views/PingMonitorClientView.xaml rename to Source/NETworkManager/Views/PingMonitorHostView.xaml index 848e37cd9..4bf9fce00 100644 --- a/Source/NETworkManager/Views/PingMonitorClientView.xaml +++ b/Source/NETworkManager/Views/PingMonitorHostView.xaml @@ -1,4 +1,4 @@ - - + - + - + diff --git a/Source/NETworkManager/Views/PingMonitorClientView.xaml.cs b/Source/NETworkManager/Views/PingMonitorHostView.xaml.cs similarity index 71% rename from Source/NETworkManager/Views/PingMonitorClientView.xaml.cs rename to Source/NETworkManager/Views/PingMonitorHostView.xaml.cs index a72313603..4c56b497e 100644 --- a/Source/NETworkManager/Views/PingMonitorClientView.xaml.cs +++ b/Source/NETworkManager/Views/PingMonitorHostView.xaml.cs @@ -4,15 +4,15 @@ namespace NETworkManager.Views { - public partial class PingMonitorClientView + public partial class PingMonitorHostView { - private readonly PingMonitorClientViewModel _viewModel; + private readonly PingMonitorHostViewModel _viewModel; - public PingMonitorClientView(int hostId, PingMonitorOptions options) + public PingMonitorHostView(int hostId, PingMonitorOptions options) { InitializeComponent(); - _viewModel = new PingMonitorClientViewModel(hostId, options); + _viewModel = new PingMonitorHostViewModel(hostId, options); DataContext = _viewModel; diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml b/Source/NETworkManager/Views/PingMonitorView.xaml index ecf422bff..20d28aed3 100644 --- a/Source/NETworkManager/Views/PingMonitorView.xaml +++ b/Source/NETworkManager/Views/PingMonitorView.xaml @@ -16,6 +16,8 @@ dialogs:DialogParticipation.Register="{Binding}" mc:Ignorable="d" d:DataContext="{d:DesignInstance viewModels:PingMonitorViewModel}"> + + @@ -67,6 +69,9 @@ + + + @@ -98,10 +103,21 @@ + + + + + - + @@ -115,6 +131,7 @@ + @@ -300,7 +317,6 @@ From b238fa9e8897bcfa9c9c1c885b12a96038e40064 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 19 Oct 2019 22:55:15 +0200 Subject: [PATCH 06/13] Host can now be removed... --- .../ViewModels/PingMonitorHostViewModel.cs | 22 +++++++--- .../ViewModels/PingMonitorViewModel.cs | 21 ++++++++- .../Views/PingMonitorHostView.xaml | 43 ++++++++++++++++--- .../Views/PingMonitorHostView.xaml.cs | 8 ++-- .../Views/PingMonitorView.xaml.cs | 3 +- 5 files changed, 79 insertions(+), 18 deletions(-) diff --git a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs index bea441999..ed95ed648 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs @@ -29,7 +29,8 @@ public class PingMonitorHostViewModel : ViewModelBase #region Variables private CancellationTokenSource _cancellationTokenSource; - private readonly int _hostId; + public readonly int HostId; + private readonly Action _closeCallback; private readonly PingMonitorOptions _pingMonitorOptions; private bool _firstLoad = true; @@ -233,13 +234,14 @@ public TimeSpan Duration #endregion #region Contructor, load settings - public PingMonitorHostViewModel(int tabId, PingMonitorOptions options) - { - _hostId = tabId; + public PingMonitorHostViewModel(int hostId, Action closeCallback, PingMonitorOptions options) + { + HostId = hostId; + _closeCallback = closeCallback; _pingMonitorOptions = options; Host = options.Host; - IPAddress = options.IPAddress; + IPAddress = options.IPAddress; } public void OnLoaded() @@ -272,6 +274,13 @@ private void PingAction() StartPing(); } */ + + public ICommand CloseCommand => new RelayCommand(p => CloseAction()); + + private void CloseAction() + { + _closeCallback(HostId); + } #endregion #region Methods @@ -357,6 +366,7 @@ private void AddHostToHistory(string host) public void OnClose() { + Debug.WriteLine("Closing..."); // Stop the ping //if (IsPingRunning) // PingAction(); @@ -401,7 +411,7 @@ private void Ping_PingReceived(object sender, PingReceivedArgs e) // I hope this won't slow the application or causes a hight cpu load lock (PingResults) AverageTime = (int)PingResults.Average(s => s.Time); - } + } } else { diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index ef45a3267..dc2b2b24b 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -298,17 +298,34 @@ private async void AddHost(string host) if (dnsLookup.Item2 != null) { - Hosts.Add(new PingMonitorHostView(_hostId, new PingMonitorOptions(dnsLookup.Item1, dnsLookup.Item2))); + Hosts.Add(new PingMonitorHostView(_hostId, RemoveHost, new PingMonitorOptions(dnsLookup.Item1, dnsLookup.Item2))); } else { StatusMessage = string.Format(Resources.Localization.Strings.CouldNotResolveHostnameFor, host); - DisplayStatusMessage = true; + DisplayStatusMessage = true; } IsWorking = false; } + private void RemoveHost(int hostId) + { + var index = -1; + + foreach (var host in Hosts) + { + if (host.HostId == hostId) + index = Hosts.IndexOf(host); + } + + if (index != -1) + { + Hosts[index].CloseView(); + Hosts.RemoveAt(index); + } + } + private void AddHostToHistory(string host) { // Create the new list diff --git a/Source/NETworkManager/Views/PingMonitorHostView.xaml b/Source/NETworkManager/Views/PingMonitorHostView.xaml index 4bf9fce00..c34ca9927 100644 --- a/Source/NETworkManager/Views/PingMonitorHostView.xaml +++ b/Source/NETworkManager/Views/PingMonitorHostView.xaml @@ -13,7 +13,7 @@ xmlns:network="clr-namespace:NETworkManager.Models.Network" xmlns:localization="clr-namespace:NETworkManager.Resources.Localization" Loaded="UserControl_Loaded" - mc:Ignorable="d" d:DataContext="{d:DesignInstance viewModels:PingViewModel}"> + mc:Ignorable="d" d:DataContext="{d:DesignInstance viewModels:PingMonitorHostViewModel}"> @@ -103,11 +103,44 @@ - + - + - - + + + \ No newline at end of file diff --git a/Source/NETworkManager/Views/PingMonitorHostView.xaml.cs b/Source/NETworkManager/Views/PingMonitorHostView.xaml.cs index 4c56b497e..570deb65a 100644 --- a/Source/NETworkManager/Views/PingMonitorHostView.xaml.cs +++ b/Source/NETworkManager/Views/PingMonitorHostView.xaml.cs @@ -8,11 +8,13 @@ public partial class PingMonitorHostView { private readonly PingMonitorHostViewModel _viewModel; - public PingMonitorHostView(int hostId, PingMonitorOptions options) + public int HostId => _viewModel.HostId; + + public PingMonitorHostView(int hostId, Action closeCallback, PingMonitorOptions options) { InitializeComponent(); - _viewModel = new PingMonitorHostViewModel(hostId, options); + _viewModel = new PingMonitorHostViewModel(hostId, closeCallback, options); DataContext = _viewModel; @@ -29,7 +31,7 @@ private void Dispatcher_ShutdownStarted(object sender, EventArgs e) _viewModel.OnClose(); } - public void CloseTab() + public void CloseView() { _viewModel.OnClose(); } diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml.cs b/Source/NETworkManager/Views/PingMonitorView.xaml.cs index 44689e61e..49991dde4 100644 --- a/Source/NETworkManager/Views/PingMonitorView.xaml.cs +++ b/Source/NETworkManager/Views/PingMonitorView.xaml.cs @@ -20,7 +20,7 @@ private void ContextMenu_Opened(object sender, RoutedEventArgs e) if (sender is ContextMenu menu) menu.DataContext = _viewModel; } - + public void OnViewHide() { _viewModel.OnViewHide(); @@ -30,6 +30,5 @@ public void OnViewVisible() { _viewModel.OnViewVisible(); } - } } From 43f54572bd169cda2f1dcd32728419b86b5dc78d Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 19 Oct 2019 23:01:08 +0200 Subject: [PATCH 07/13] Make TabId public... --- Source/NETworkManager/ViewModels/DNSLookupViewModel.cs | 6 +++--- Source/NETworkManager/ViewModels/HTTPHeadersViewModel.cs | 6 +++--- Source/NETworkManager/ViewModels/IPScannerViewModel.cs | 6 +++--- Source/NETworkManager/ViewModels/PingViewModel.cs | 6 +++--- Source/NETworkManager/ViewModels/PortScannerViewModel.cs | 6 +++--- Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs | 1 - Source/NETworkManager/ViewModels/SNMPViewModel.cs | 6 +++--- Source/NETworkManager/ViewModels/TracerouteViewModel.cs | 6 +++--- Source/NETworkManager/ViewModels/WhoisViewModel.cs | 6 +++--- Source/NETworkManager/Views/PowerShellHostView.xaml.cs | 1 - 10 files changed, 24 insertions(+), 26 deletions(-) diff --git a/Source/NETworkManager/ViewModels/DNSLookupViewModel.cs b/Source/NETworkManager/ViewModels/DNSLookupViewModel.cs index 535bbe246..6af61230b 100644 --- a/Source/NETworkManager/ViewModels/DNSLookupViewModel.cs +++ b/Source/NETworkManager/ViewModels/DNSLookupViewModel.cs @@ -27,7 +27,7 @@ public class DNSLookupViewModel : ViewModelBase #region Variables private readonly IDialogCoordinator _dialogCoordinator; - private readonly int _tabId; + public readonly int TabId; private bool _firstLoad = true; private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); @@ -257,7 +257,7 @@ public DNSLookupViewModel(IDialogCoordinator instance, int tabId, string host) _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; Host = host; HostHistoryView = CollectionViewSource.GetDefaultView(SettingsManager.Current.DNSLookup_HostHistory); @@ -423,7 +423,7 @@ private void StartLookup() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Host; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = Host; } } diff --git a/Source/NETworkManager/ViewModels/HTTPHeadersViewModel.cs b/Source/NETworkManager/ViewModels/HTTPHeadersViewModel.cs index 3422980f0..4fbb23ac7 100644 --- a/Source/NETworkManager/ViewModels/HTTPHeadersViewModel.cs +++ b/Source/NETworkManager/ViewModels/HTTPHeadersViewModel.cs @@ -24,7 +24,7 @@ public class HTTPHeadersViewModel : ViewModelBase #region Variables private readonly IDialogCoordinator _dialogCoordinator; - private readonly int _tabId; + public readonly int TabId; private bool _firstLoad = true; private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); @@ -188,7 +188,7 @@ public HTTPHeadersViewModel(IDialogCoordinator instance ,int tabId, string websi _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; WebsiteUri = websiteUri; // Set collection view @@ -294,7 +294,7 @@ private async void Check() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = WebsiteUri; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = WebsiteUri; } } diff --git a/Source/NETworkManager/ViewModels/IPScannerViewModel.cs b/Source/NETworkManager/ViewModels/IPScannerViewModel.cs index e3274d88f..9734083f3 100644 --- a/Source/NETworkManager/ViewModels/IPScannerViewModel.cs +++ b/Source/NETworkManager/ViewModels/IPScannerViewModel.cs @@ -33,7 +33,7 @@ public class IPScannerViewModel : ViewModelBase private CancellationTokenSource _cancellationTokenSource; - private readonly int _tabId; + public readonly int TabId; private bool _firstLoad = true; private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); @@ -302,7 +302,7 @@ public IPScannerViewModel(IDialogCoordinator instance, int tabId, string hostOrI _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; Host = hostOrIPRange; // Host history @@ -527,7 +527,7 @@ private async void StartScan() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Host; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = Host; } } diff --git a/Source/NETworkManager/ViewModels/PingViewModel.cs b/Source/NETworkManager/ViewModels/PingViewModel.cs index e998cae82..60db47749 100644 --- a/Source/NETworkManager/ViewModels/PingViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingViewModel.cs @@ -31,7 +31,7 @@ public class PingViewModel : ViewModelBase private CancellationTokenSource _cancellationTokenSource; - private readonly int _tabId; + public readonly int TabId; private bool _firstLoad = true; private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); @@ -309,7 +309,7 @@ public PingViewModel(IDialogCoordinator instance, int tabId, string host) _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; Host = host; // Set collection view @@ -443,7 +443,7 @@ private async void StartPing() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Host; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = Host; } } diff --git a/Source/NETworkManager/ViewModels/PortScannerViewModel.cs b/Source/NETworkManager/ViewModels/PortScannerViewModel.cs index a0936ecae..877116942 100644 --- a/Source/NETworkManager/ViewModels/PortScannerViewModel.cs +++ b/Source/NETworkManager/ViewModels/PortScannerViewModel.cs @@ -30,7 +30,7 @@ public class PortScannerViewModel : ViewModelBase private CancellationTokenSource _cancellationTokenSource; - private readonly int _tabId; + public readonly int TabId; private bool _firstLoad = true; private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); @@ -300,7 +300,7 @@ public PortScannerViewModel(IDialogCoordinator instance, int tabId, string host, _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; Host = host; Port = port; @@ -444,7 +444,7 @@ private async void StartScan() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Host; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = Host; } } diff --git a/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs b/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs index 46c72f7a8..7b04b4592 100644 --- a/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs +++ b/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs @@ -15,7 +15,6 @@ using System.Windows; using NETworkManager.Models.PowerShell; using NETworkManager.Models.EventSystem; -using MahApps.Metro.Controls; namespace NETworkManager.ViewModels { diff --git a/Source/NETworkManager/ViewModels/SNMPViewModel.cs b/Source/NETworkManager/ViewModels/SNMPViewModel.cs index bd2967644..38bc49231 100644 --- a/Source/NETworkManager/ViewModels/SNMPViewModel.cs +++ b/Source/NETworkManager/ViewModels/SNMPViewModel.cs @@ -32,7 +32,7 @@ public class SNMPViewModel : ViewModelBase private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); private readonly Stopwatch _stopwatch = new Stopwatch(); - private readonly int _tabId; + public readonly int TabId; private readonly bool _isLoading; @@ -403,7 +403,7 @@ public SNMPViewModel(IDialogCoordinator instance, int tabId, string host) _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; Host = host; // Set collection view @@ -532,7 +532,7 @@ private async void Work() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Host; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = Host; } } diff --git a/Source/NETworkManager/ViewModels/TracerouteViewModel.cs b/Source/NETworkManager/ViewModels/TracerouteViewModel.cs index 2eb97e5cc..522cf4337 100644 --- a/Source/NETworkManager/ViewModels/TracerouteViewModel.cs +++ b/Source/NETworkManager/ViewModels/TracerouteViewModel.cs @@ -32,7 +32,7 @@ public class TracerouteViewModel : ViewModelBase private CancellationTokenSource _cancellationTokenSource; - private readonly int _tabId; + public readonly int TabId; private bool _firstLoad = true; private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); @@ -241,7 +241,7 @@ public TracerouteViewModel(IDialogCoordinator instance, int tabId, string host) _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; Host = host; // Set collection view @@ -397,7 +397,7 @@ private async void StartTrace() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Host; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = Host; } } diff --git a/Source/NETworkManager/ViewModels/WhoisViewModel.cs b/Source/NETworkManager/ViewModels/WhoisViewModel.cs index e20c8e060..2e4a03f1b 100644 --- a/Source/NETworkManager/ViewModels/WhoisViewModel.cs +++ b/Source/NETworkManager/ViewModels/WhoisViewModel.cs @@ -24,7 +24,7 @@ public class WhoisViewModel : ViewModelBase #region Variables private readonly IDialogCoordinator _dialogCoordinator; - private readonly int _tabId; + public readonly int TabId; private bool _firstLoad = true; private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); @@ -188,7 +188,7 @@ public WhoisViewModel(IDialogCoordinator instance ,int tabId, string domain) _dialogCoordinator = instance; - _tabId = tabId; + TabId = tabId; Domain = domain; // Set collection view @@ -291,7 +291,7 @@ private async void Query() { foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) { - tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Domain; + tabablzControl.Items.OfType().First(x => x.Id == TabId).Header = Domain; } } diff --git a/Source/NETworkManager/Views/PowerShellHostView.xaml.cs b/Source/NETworkManager/Views/PowerShellHostView.xaml.cs index 166510cda..506ba96a6 100644 --- a/Source/NETworkManager/Views/PowerShellHostView.xaml.cs +++ b/Source/NETworkManager/Views/PowerShellHostView.xaml.cs @@ -12,7 +12,6 @@ public partial class PowerShellHostView private bool _loaded; - public PowerShellHostView() { InitializeComponent(); From 2a9cb0dccdf42675a9975edbef7e8322a403ccfc Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 19 Oct 2019 23:30:32 +0200 Subject: [PATCH 08/13] Profile added --- .../Models/Settings/ProfileManager.cs | 4 ++ Source/NETworkManager/ProfileViewManager.cs | 4 ++ .../ViewModels/PingMonitorHostViewModel.cs | 24 ++----- .../ViewModels/PingMonitorViewModel.cs | 7 ++ .../ViewModels/ProfileViewModel.cs | 50 ++++++++++++++ Source/NETworkManager/Views/PingHostView.xaml | 4 +- .../NETworkManager/Views/PingMonitorView.xaml | 12 +++- .../Views/PingMonitorView.xaml.cs | 10 ++- .../NETworkManager/Views/ProfileDialog.xaml | 68 +++++++++++++++++++ 9 files changed, 157 insertions(+), 26 deletions(-) diff --git a/Source/NETworkManager/Models/Settings/ProfileManager.cs b/Source/NETworkManager/Models/Settings/ProfileManager.cs index d5835573e..6d7b59a1d 100644 --- a/Source/NETworkManager/Models/Settings/ProfileManager.cs +++ b/Source/NETworkManager/Models/Settings/ProfileManager.cs @@ -160,6 +160,10 @@ public static void AddProfile(ProfileViewModel instance) Ping_InheritHost = instance.Ping_InheritHost, Ping_Host = instance.Ping_InheritHost ? instance.Host?.Trim() : instance.Ping_Host?.Trim(), + PingMonitor_Enabled = instance.PingMonitor_Enabled, + PingMonitor_InheritHost = instance.PingMonitor_InheritHost, + PingMonitor_Host = instance.PingMonitor_InheritHost ? instance.Host?.Trim() : instance.PingMonitor_Host?.Trim(), + Traceroute_Enabled = instance.Traceroute_Enabled, Traceroute_InheritHost = instance.Traceroute_InheritHost, Traceroute_Host = instance.Traceroute_InheritHost ? instance.Host?.Trim() : instance.Traceroute_Host?.Trim(), diff --git a/Source/NETworkManager/ProfileViewManager.cs b/Source/NETworkManager/ProfileViewManager.cs index 7bd452c62..cbf4a6026 100644 --- a/Source/NETworkManager/ProfileViewManager.cs +++ b/Source/NETworkManager/ProfileViewManager.cs @@ -16,6 +16,7 @@ public static class ProfileViewManager new ProfileViewInfo(Name.IPScanner, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.IPScanner)), new ProfileViewInfo(Name.PortScanner,ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PortScanner)), new ProfileViewInfo(Name.Ping, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Ping)), + new ProfileViewInfo(Name.PingMonitor, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.PingMonitor)), new ProfileViewInfo(Name.Traceroute, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.Traceroute)), new ProfileViewInfo(Name.DNSLookup, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.DNSLookup)), new ProfileViewInfo(Name.RemoteDesktop, ApplicationViewManager.GetIconByName(ApplicationViewManager.Name.RemoteDesktop)), @@ -41,6 +42,8 @@ public static string TranslateName(Name name) return Resources.Localization.Strings.PortScanner; case Name.Ping: return Resources.Localization.Strings.Ping; + case Name.PingMonitor: + return Resources.Localization.Strings.PingMonitor; case Name.Traceroute: return Resources.Localization.Strings.Traceroute; case Name.DNSLookup: @@ -71,6 +74,7 @@ public enum Name IPScanner, PortScanner, Ping, + PingMonitor, Traceroute, DNSLookup, RemoteDesktop, diff --git a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs index ed95ed648..f10d94d48 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs @@ -241,7 +241,7 @@ public PingMonitorHostViewModel(int hostId, Action closeCallback, PingMonit _pingMonitorOptions = options; Host = options.Host; - IPAddress = options.IPAddress; + IPAddress = options.IPAddress; } public void OnLoaded() @@ -279,12 +279,12 @@ private void PingAction() private void CloseAction() { - _closeCallback(HostId); + _closeCallback(HostId); } #endregion #region Methods - private async void StartPing() + private void StartPing() { IsPingRunning = true; @@ -351,25 +351,11 @@ private void PingFinished() _stopwatch.Reset(); } - private void AddHostToHistory(string host) - { - // Create the new list - var list = ListHelper.Modify(SettingsManager.Current.Ping_HostHistory.ToList(), host, SettingsManager.Current.General_HistoryListEntries); - - // Clear the old items - SettingsManager.Current.Ping_HostHistory.Clear(); - OnPropertyChanged(nameof(Host)); // Raise property changed again, after the collection has been cleared - - // Fill with the new items - list.ForEach(x => SettingsManager.Current.Ping_HostHistory.Add(x)); - } - public void OnClose() { - Debug.WriteLine("Closing..."); // Stop the ping - //if (IsPingRunning) - // PingAction(); + if (IsPingRunning) + StopPing(); } #endregion diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index dc2b2b24b..b1133f0e2 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -242,6 +242,13 @@ private void AddHostAction() AddHostToHistory(Host); } + public ICommand AddHostProfileCommand => new RelayCommand(p => AddHostProfileAction()); + + private void AddHostProfileAction() + { + AddHost(SelectedProfile.PingMonitor_Host); + } + public ICommand AddProfileCommand => new RelayCommand(p => AddProfileAction()); private void AddProfileAction() diff --git a/Source/NETworkManager/ViewModels/ProfileViewModel.cs b/Source/NETworkManager/ViewModels/ProfileViewModel.cs index b84dc928b..9227b17b7 100644 --- a/Source/NETworkManager/ViewModels/ProfileViewModel.cs +++ b/Source/NETworkManager/ViewModels/ProfileViewModel.cs @@ -442,6 +442,51 @@ public string Ping_Host #endregion + #region Ping Monitor + private bool _pingMonitor_Enabled; + public bool PingMonitor_Enabled + { + get => _pingMonitor_Enabled; + set + { + if (value == _pingMonitor_Enabled) + return; + + _pingMonitor_Enabled = value; + + OnPropertyChanged(); + } + } + + private bool _pingMonitor_InheritHost; + public bool PingMonitor_InheritHost + { + get => _pingMonitor_InheritHost; + set + { + if (value == _pingMonitor_InheritHost) + return; + + _pingMonitor_InheritHost = value; + OnPropertyChanged(); + } + } + + private string _pingMonitor_Host; + public string PingMonitor_Host + { + get => _pingMonitor_Host; + set + { + if (value == _pingMonitor_Host) + return; + + _pingMonitor_Host = value; + OnPropertyChanged(); + } + } + #endregion + #region Traceroute private bool _traceroute_Enabled; public bool Traceroute_Enabled @@ -1952,6 +1997,11 @@ public ProfileViewModel(Action saveCommand, Action - + @@ -200,7 +200,7 @@ diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml b/Source/NETworkManager/Views/PingMonitorView.xaml index 20d28aed3..d51616ef3 100644 --- a/Source/NETworkManager/Views/PingMonitorView.xaml +++ b/Source/NETworkManager/Views/PingMonitorView.xaml @@ -146,12 +146,12 @@ - - + + - + @@ -235,6 +235,12 @@ + + + diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml.cs b/Source/NETworkManager/Views/PingMonitorView.xaml.cs index 49991dde4..c4feadb7e 100644 --- a/Source/NETworkManager/Views/PingMonitorView.xaml.cs +++ b/Source/NETworkManager/Views/PingMonitorView.xaml.cs @@ -20,7 +20,13 @@ private void ContextMenu_Opened(object sender, RoutedEventArgs e) if (sender is ContextMenu menu) menu.DataContext = _viewModel; } - + + private void ListBoxItem_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e) + { + if (e.ChangedButton == System.Windows.Input.MouseButton.Left) + _viewModel.AddHostProfileCommand.Execute(null); + } + public void OnViewHide() { _viewModel.OnViewHide(); @@ -29,6 +35,6 @@ public void OnViewHide() public void OnViewVisible() { _viewModel.OnViewVisible(); - } + } } } diff --git a/Source/NETworkManager/Views/ProfileDialog.xaml b/Source/NETworkManager/Views/ProfileDialog.xaml index 1cf3b63d2..7e9776a55 100644 --- a/Source/NETworkManager/Views/ProfileDialog.xaml +++ b/Source/NETworkManager/Views/ProfileDialog.xaml @@ -101,6 +101,9 @@ + + + @@ -561,6 +564,60 @@ + + + + + + + + + + + + + + @@ -1475,6 +1532,17 @@ + + + + + + + + + + + From 2f49cce2bc8680e09a46578c498bf77ac2c7725b Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 19 Oct 2019 23:38:36 +0200 Subject: [PATCH 09/13] Ping attemps removed... --- Source/NETworkManager/Models/Network/Ping.cs | 5 ++-- .../Models/Settings/SettingsInfo.cs | 15 ------------ .../ViewModels/PingMonitorHostViewModel.cs | 1 - .../ViewModels/PingMonitorViewModel.cs | 14 +++++++++++ .../ViewModels/PingSettingsViewModel.cs | 23 ++----------------- .../ViewModels/PingViewModel.cs | 3 +-- .../Views/PingSettingsView.xaml | 4 +--- 7 files changed, 20 insertions(+), 45 deletions(-) diff --git a/Source/NETworkManager/Models/Network/Ping.cs b/Source/NETworkManager/Models/Network/Ping.cs index 504a92028..a2777863e 100644 --- a/Source/NETworkManager/Models/Network/Ping.cs +++ b/Source/NETworkManager/Models/Network/Ping.cs @@ -9,8 +9,7 @@ namespace NETworkManager.Models.Network { public class Ping { - #region Varaibles - public int Attempts = 0; + #region Varaibles public int WaitTime = 1000; public int Timeout = 4000; public byte[] Buffer = new byte[32]; @@ -133,7 +132,7 @@ public void SendAsync(IPAddress ipAddress, CancellationToken cancellationToken) if (cancellationToken.IsCancellationRequested) break; } - } while ((Attempts == 0 || pingTotal < Attempts) && !cancellationToken.IsCancellationRequested); + } while (!cancellationToken.IsCancellationRequested); } if (cancellationToken.IsCancellationRequested) diff --git a/Source/NETworkManager/Models/Settings/SettingsInfo.cs b/Source/NETworkManager/Models/Settings/SettingsInfo.cs index 1056f21f0..114a8c6ef 100644 --- a/Source/NETworkManager/Models/Settings/SettingsInfo.cs +++ b/Source/NETworkManager/Models/Settings/SettingsInfo.cs @@ -1192,21 +1192,6 @@ public ExportManager.ExportFileType PortScanner_ExportFileType #endregion #region Ping - private int _ping_Attempts; - public int Ping_Attempts - { - get => _ping_Attempts; - set - { - if (value == _ping_Attempts) - return; - - _ping_Attempts = value; - OnPropertyChanged(); - SettingsChanged = true; - } - } - private int _ping_Buffer = GlobalStaticConfiguration.Ping_Buffer; public int Ping_Buffer { diff --git a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs index f10d94d48..f9fc6ebfc 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs @@ -309,7 +309,6 @@ private void StartPing() var ping = new Ping { - Attempts = 0, Timeout = SettingsManager.Current.Ping_Timeout, Buffer = new byte[SettingsManager.Current.Ping_Buffer], TTL = SettingsManager.Current.Ping_TTL, diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index b1133f0e2..dc9a850e8 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -96,6 +96,20 @@ public ObservableCollection Hosts public ICollectionView HostsView { get; } + private PingMonitorHostView _selectedHost; + public PingMonitorHostView SelectedHost + { + get => _selectedHost; + set + { + if (value == _selectedHost) + return; + + _selectedHost = value; + OnPropertyChanged(); + } + } + #region Profiles public ICollectionView Profiles { get; } diff --git a/Source/NETworkManager/ViewModels/PingSettingsViewModel.cs b/Source/NETworkManager/ViewModels/PingSettingsViewModel.cs index 6a8452d48..c56575a90 100644 --- a/Source/NETworkManager/ViewModels/PingSettingsViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingSettingsViewModel.cs @@ -1,5 +1,4 @@ using NETworkManager.Models.Settings; -using NETworkManager.Utilities; namespace NETworkManager.ViewModels { @@ -7,24 +6,7 @@ public class PingSettingsViewModel : ViewModelBase { #region Variables private readonly bool _isLoading; - - private int _attempts; - public int Attempts - { - get => _attempts; - set - { - if (value == _attempts) - return; - - if (!_isLoading) - SettingsManager.Current.Ping_Attempts = value; - - _attempts = value; - OnPropertyChanged(); - } - } - + private int _timeout; public int Timeout { @@ -204,8 +186,7 @@ public PingSettingsViewModel() } private void LoadSettings() - { - Attempts = SettingsManager.Current.Ping_Attempts; + { Timeout = SettingsManager.Current.Ping_Timeout; Buffer = SettingsManager.Current.Ping_Buffer; TTL = SettingsManager.Current.Ping_TTL; diff --git a/Source/NETworkManager/ViewModels/PingViewModel.cs b/Source/NETworkManager/ViewModels/PingViewModel.cs index 60db47749..750cde2f5 100644 --- a/Source/NETworkManager/ViewModels/PingViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingViewModel.cs @@ -498,8 +498,7 @@ private async void StartPing() var ping = new Ping - { - Attempts = SettingsManager.Current.Ping_Attempts, + { Timeout = SettingsManager.Current.Ping_Timeout, Buffer = new byte[SettingsManager.Current.Ping_Buffer], TTL = SettingsManager.Current.Ping_TTL, diff --git a/Source/NETworkManager/Views/PingSettingsView.xaml b/Source/NETworkManager/Views/PingSettingsView.xaml index e0ee34d85..05a4cb074 100644 --- a/Source/NETworkManager/Views/PingSettingsView.xaml +++ b/Source/NETworkManager/Views/PingSettingsView.xaml @@ -8,9 +8,7 @@ xmlns:localization="clr-namespace:NETworkManager.Resources.Localization" mc:Ignorable="d" d:DataContext="{d:DesignInstance viewModels:PingSettingsViewModel}"> - - - + From 4ceccf187b92ac382b9144e3f8339341bc145e90 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sun, 20 Oct 2019 00:10:07 +0200 Subject: [PATCH 10/13] Duration added --- .../Localization/Strings.Designer.cs | 1614 +++++++++-------- .../Resources/Localization/Strings.resx | 6 + .../ViewModels/PingMonitorHostViewModel.cs | 35 +- .../ViewModels/PingMonitorViewModel.cs | 2 + .../ViewModels/PingViewModel.cs | 13 +- .../Views/PingMonitorHostView.xaml | 46 +- 6 files changed, 873 insertions(+), 843 deletions(-) diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index a9720320f..bd8b098ff 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace NETworkManager.Resources.Localization { /// - /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert - // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. - // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen - // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ public class Strings { } /// - /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ public class Strings { } /// - /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die About ähnelt. + /// Looks up a localized string similar to About. /// public static string About { get { @@ -70,7 +70,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Accent ähnelt. + /// Looks up a localized string similar to Accent. /// public static string Accent { get { @@ -79,7 +79,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add ähnelt. + /// Looks up a localized string similar to Add. /// public static string Add { get { @@ -88,7 +88,7 @@ public class Strings { } /// - /// 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 { @@ -97,7 +97,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a DNS lookup... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a DNS lookup.... /// public static string AddATabToPerformADNSLookup { get { @@ -106,7 +106,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a network scan... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a network scan.... /// public static string AddATabToPerformANetworkScan { get { @@ -115,7 +115,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform an SNMP action... ähnelt. + /// Looks up a localized string similar to Add a tab to perform an SNMP action.... /// public static string AddATabToPerformAnSNMPAction { get { @@ -124,7 +124,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a ping... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a ping.... /// public static string AddATabToPerformAPing { get { @@ -133,7 +133,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a port scan... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a port scan.... /// public static string AddATabToPerformAPortScan { get { @@ -142,7 +142,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a trace... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a trace.... /// public static string AddATabToPerformATrace { get { @@ -151,7 +151,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query the HTTP headers... ähnelt. + /// Looks up a localized string similar to Add a tab to query the HTTP headers.... /// public static string AddATabToQueryTheHTTPHeaders { get { @@ -160,7 +160,7 @@ public class Strings { } /// - /// 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 { @@ -169,7 +169,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add credentials ähnelt. + /// Looks up a localized string similar to Add credentials. /// public static string AddCredentials { get { @@ -178,7 +178,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add custom command ähnelt. + /// Looks up a localized string similar to Add custom command. /// public static string AddCustomCommand { get { @@ -187,7 +187,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add DNS server ähnelt. + /// Looks up a localized string similar to Add DNS server. /// public static string AddDNSServer { get { @@ -196,7 +196,7 @@ public class Strings { } /// - /// 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 { @@ -205,7 +205,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add... ähnelt. + /// Looks up a localized string similar to Add.... /// public static string AddDots { get { @@ -214,7 +214,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add entry ähnelt. + /// Looks up a localized string similar to Add entry. /// public static string AddEntry { get { @@ -223,7 +223,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add entry... ähnelt. + /// Looks up a localized string similar to Add entry.... /// public static string AddEntryDots { get { @@ -232,7 +232,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add host ähnelt. + /// Looks up a localized string similar to Add host. /// public static string AddHost { get { @@ -241,7 +241,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address ähnelt. + /// Looks up a localized string similar to Add IPv4 address. /// public static string AddIPv4Address { get { @@ -250,7 +250,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address... ähnelt. + /// Looks up a localized string similar to Add IPv4 address.... /// public static string AddIPv4AddressDots { get { @@ -259,7 +259,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Additional command line ähnelt. + /// Looks up a localized string similar to Additional command line. /// public static string AdditionalCommandLine { get { @@ -268,7 +268,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Additionals ähnelt. + /// Looks up a localized string similar to Additionals. /// public static string Additionals { get { @@ -277,7 +277,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add profile ähnelt. + /// Looks up a localized string similar to Add profile. /// public static string AddProfile { get { @@ -286,7 +286,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add profile... ähnelt. + /// Looks up a localized string similar to Add profile.... /// public static string AddProfileDots { get { @@ -295,7 +295,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add tab... ähnelt. + /// Looks up a localized string similar to Add tab.... /// public static string AddTabDots { get { @@ -304,7 +304,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen ähnelt. + /// Looks up a localized string similar to Adjust screen. /// public static string AdjustScreen { get { @@ -313,7 +313,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen automatically ähnelt. + /// Looks up a localized string similar to Adjust screen automatically. /// public static string AdjustScreenAutomatically { get { @@ -322,7 +322,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Administrator ähnelt. + /// Looks up a localized string similar to Administrator. /// public static string Administrator { get { @@ -331,7 +331,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die All ähnelt. + /// Looks up a localized string similar to All. /// public static string All { get { @@ -340,7 +340,7 @@ public class Strings { } /// - /// 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 { @@ -349,7 +349,7 @@ public class Strings { } /// - /// 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 { @@ -358,7 +358,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Amber ähnelt. + /// Looks up a localized string similar to Amber. /// public static string Amber { get { @@ -367,7 +367,7 @@ public class Strings { } /// - /// 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 { @@ -376,7 +376,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Answers ähnelt. + /// Looks up a localized string similar to Answers. /// public static string Answers { get { @@ -385,7 +385,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. + /// Looks up a localized string similar to Appearance. /// public static string Appearance { get { @@ -394,7 +394,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Application is restarted afterwards ähnelt. + /// Looks up a localized string similar to Application is restarted afterwards. /// public static string ApplicationIsRestartedAfterwards { get { @@ -403,7 +403,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt. + /// Looks up a localized string similar to Applications. /// public static string Applications { get { @@ -412,7 +412,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Apply ähnelt. + /// Looks up a localized string similar to Apply. /// public static string Apply { get { @@ -421,7 +421,7 @@ public class Strings { } /// - /// 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 { @@ -430,7 +430,7 @@ public class Strings { } /// - /// 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 { @@ -439,7 +439,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure? ähnelt. + /// Looks up a localized string similar to Are you sure?. /// public static string AreYouSure { get { @@ -448,7 +448,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt. + /// Looks up a localized string similar to Arguments. /// public static string Arguments { get { @@ -457,7 +457,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ARP ähnelt. + /// Looks up a localized string similar to ARP. /// public static string ARP { get { @@ -466,7 +466,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ARP Table ähnelt. + /// Looks up a localized string similar to ARP Table. /// public static string ARPTable { get { @@ -475,7 +475,7 @@ public class Strings { } /// - /// 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 { @@ -484,7 +484,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Attempts ähnelt. + /// Looks up a localized string similar to Attempts. /// public static string Attempts { get { @@ -493,7 +493,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Auth ähnelt. + /// Looks up a localized string similar to Auth. /// public static string Auth { get { @@ -502,7 +502,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication ähnelt. + /// Looks up a localized string similar to Authentication. /// public static string Authentication { get { @@ -511,7 +511,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication: ähnelt. + /// Looks up a localized string similar to Authentication:. /// public static string AuthenticationColon { get { @@ -520,7 +520,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication level ähnelt. + /// Looks up a localized string similar to Authentication level. /// public static string AuthenticationLevel { get { @@ -529,7 +529,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Authorities ähnelt. + /// Looks up a localized string similar to Authorities. /// public static string Authorities { get { @@ -538,7 +538,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Automatically update every ähnelt. + /// Looks up a localized string similar to Automatically update every. /// public static string AutomaticallyUpdateEvery { get { @@ -547,7 +547,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Autostart ähnelt. + /// Looks up a localized string similar to Autostart. /// public static string Autostart { get { @@ -556,7 +556,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Average time ähnelt. + /// Looks up a localized string similar to Average time. /// public static string AverageTime { get { @@ -565,7 +565,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die back ähnelt. + /// Looks up a localized string similar to back. /// public static string Back { get { @@ -574,7 +574,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Background job ähnelt. + /// Looks up a localized string similar to Background job. /// public static string BackgroundJob { get { @@ -583,7 +583,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Backup ähnelt. + /// Looks up a localized string similar to Backup. /// public static string Backup { get { @@ -592,7 +592,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Bandwidth ähnelt. + /// Looks up a localized string similar to Bandwidth. /// public static string Bandwidth { get { @@ -601,7 +601,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Dark ähnelt. + /// Looks up a localized string similar to Dark. /// public static string BaseDark { get { @@ -610,7 +610,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Light ähnelt. + /// Looks up a localized string similar to Light. /// public static string BaseLight { get { @@ -619,7 +619,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Baud ähnelt. + /// Looks up a localized string similar to Baud. /// public static string Baud { get { @@ -628,7 +628,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Baud rate ähnelt. + /// Looks up a localized string similar to Baud rate. /// public static string BaudRate { get { @@ -637,7 +637,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Beacon interval: ähnelt. + /// Looks up a localized string similar to Beacon interval:. /// public static string BeaconIntervalColon { get { @@ -646,7 +646,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt. + /// Looks up a localized string similar to Black. /// public static string Black { get { @@ -655,7 +655,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Blue ähnelt. + /// Looks up a localized string similar to Blue. /// public static string Blue { get { @@ -664,7 +664,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Broadcast ähnelt. + /// Looks up a localized string similar to Broadcast. /// public static string Broadcast { get { @@ -673,7 +673,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Brown ähnelt. + /// Looks up a localized string similar to Brown. /// public static string Brown { get { @@ -682,7 +682,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Buffer ähnelt. + /// Looks up a localized string similar to Buffer. /// public static string Buffer { get { @@ -691,7 +691,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Bytes ähnelt. + /// Looks up a localized string similar to Bytes. /// public static string Bytes { get { @@ -700,7 +700,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Calculate ähnelt. + /// Looks up a localized string similar to Calculate. /// public static string Calculate { get { @@ -709,7 +709,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Calculator ähnelt. + /// Looks up a localized string similar to Calculator. /// public static string Calculator { get { @@ -718,7 +718,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cancel ähnelt. + /// Looks up a localized string similar to Cancel. /// public static string Cancel { get { @@ -727,7 +727,7 @@ public class Strings { } /// - /// 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 { @@ -736,7 +736,7 @@ public class Strings { } /// - /// 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 { @@ -745,7 +745,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Change ähnelt. + /// Looks up a localized string similar to Change. /// public static string Change { get { @@ -754,7 +754,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Change Master Password... ähnelt. + /// Looks up a localized string similar to Change Master Password.... /// public static string ChangeMasterPasswordDots { get { @@ -763,7 +763,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Channel ähnelt. + /// Looks up a localized string similar to Channel. /// public static string Channel { get { @@ -772,7 +772,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Channels ähnelt. + /// Looks up a localized string similar to Channels. /// public static string Channels { get { @@ -781,7 +781,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check ähnelt. + /// Looks up a localized string similar to Check. /// public static string Check { get { @@ -790,7 +790,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check for updates ähnelt. + /// Looks up a localized string similar to Check for updates. /// public static string CheckForUpdates { get { @@ -799,7 +799,7 @@ public class Strings { } /// - /// 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 { @@ -808,7 +808,7 @@ public class Strings { } /// - /// 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 { @@ -817,7 +817,7 @@ public class Strings { } /// - /// 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 { @@ -826,7 +826,7 @@ public class Strings { } /// - /// 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 { @@ -835,7 +835,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die CIDR ähnelt. + /// Looks up a localized string similar to CIDR. /// public static string CIDR { get { @@ -844,7 +844,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Class ähnelt. + /// Looks up a localized string similar to Class. /// public static string Class { get { @@ -853,7 +853,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Clear filter ähnelt. + /// Looks up a localized string similar to Clear filter. /// public static string ClearFilter { get { @@ -862,7 +862,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Client ähnelt. + /// Looks up a localized string similar to Client. /// public static string Client { get { @@ -871,7 +871,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Close ähnelt. + /// Looks up a localized string similar to Close. /// public static string Close { get { @@ -880,7 +880,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. + /// Looks up a localized string similar to Closed. /// public static string Closed { get { @@ -889,7 +889,7 @@ public class Strings { } /// - /// 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 { @@ -898,7 +898,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt. + /// Looks up a localized string similar to Cobalt. /// public static string Cobalt { get { @@ -907,7 +907,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Color depth (bit) ähnelt. + /// Looks up a localized string similar to Color depth (bit). /// public static string ColorDepthBit { get { @@ -916,7 +916,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Command Line Arguments ähnelt. + /// Looks up a localized string similar to Command Line Arguments. /// public static string CommandLineArguments { get { @@ -925,7 +925,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Community ähnelt. + /// Looks up a localized string similar to Community. /// public static string Community { get { @@ -934,7 +934,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Computer ähnelt. + /// Looks up a localized string similar to Computer. /// public static string Computer { get { @@ -943,7 +943,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Configure ähnelt. + /// Looks up a localized string similar to Configure. /// public static string Configure { get { @@ -952,7 +952,7 @@ public class Strings { } /// - /// 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 { @@ -961,7 +961,7 @@ public class Strings { } /// - /// 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 { @@ -970,7 +970,7 @@ public class Strings { } /// - /// 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 { @@ -979,7 +979,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Confirm ähnelt. + /// Looks up a localized string similar to Confirm. /// public static string Confirm { get { @@ -988,7 +988,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Confirm close ähnelt. + /// Looks up a localized string similar to Confirm close. /// public static string ConfirmClose { get { @@ -997,7 +997,7 @@ public class Strings { } /// - /// 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 { @@ -1006,7 +1006,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. + /// Looks up a localized string similar to Connect. /// public static string Connect { get { @@ -1015,7 +1015,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect as ähnelt. + /// Looks up a localized string similar to Connect as. /// public static string ConnectAs { get { @@ -1024,7 +1024,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect as... ähnelt. + /// Looks up a localized string similar to Connect as.... /// public static string ConnectAsDots { get { @@ -1033,7 +1033,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect external ähnelt. + /// Looks up a localized string similar to Connect external. /// public static string ConnectExternal { get { @@ -1042,7 +1042,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connecting... ähnelt. + /// Looks up a localized string similar to Connecting.... /// public static string ConnectingDots { get { @@ -1051,7 +1051,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt. + /// Looks up a localized string similar to Connection. /// public static string Connection { get { @@ -1060,7 +1060,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. + /// Looks up a localized string similar to Connections. /// public static string Connections { get { @@ -1069,7 +1069,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt. + /// Looks up a localized string similar to Error. /// public static string ConnectionState_Error { get { @@ -1078,7 +1078,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt. + /// Looks up a localized string similar to OK. /// public static string ConnectionState_OK { get { @@ -1087,7 +1087,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Warning ähnelt. + /// Looks up a localized string similar to Warning. /// public static string ConnectionState_Warning { get { @@ -1096,7 +1096,7 @@ public class Strings { } /// - /// 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 { @@ -1105,7 +1105,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Continue ähnelt. + /// Looks up a localized string similar to Continue. /// public static string Continue { get { @@ -1114,7 +1114,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. + /// Looks up a localized string similar to Copy. /// public static string Copy { get { @@ -1123,7 +1123,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy as... ähnelt. + /// Looks up a localized string similar to Copy as.... /// public static string CopyAsDots { get { @@ -1132,7 +1132,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy... ähnelt. + /// Looks up a localized string similar to Copy.... /// public static string CopyDots { get { @@ -1141,7 +1141,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. + /// Looks up a localized string similar to Copy. /// public static string CopyNoun { get { @@ -1150,7 +1150,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy profile ähnelt. + /// Looks up a localized string similar to Copy profile. /// public static string CopyProfile { get { @@ -1159,7 +1159,7 @@ public class Strings { } /// - /// 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 { @@ -1168,7 +1168,7 @@ public class Strings { } /// - /// 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 { @@ -1177,7 +1177,7 @@ public class Strings { } /// - /// 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 { @@ -1186,7 +1186,7 @@ public class Strings { } /// - /// 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 { @@ -1195,7 +1195,7 @@ public class Strings { } /// - /// 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 { @@ -1204,7 +1204,7 @@ public class Strings { } /// - /// 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 { @@ -1213,7 +1213,7 @@ public class Strings { } /// - /// 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 { @@ -1222,7 +1222,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve hostname for ip address "{0}"! ähnelt. + /// Looks up a localized string similar to Could not resolve hostname for ip address "{0}"!. /// public static string CouldNotResolveHostnameForXXXMessage { get { @@ -1231,7 +1231,7 @@ public class Strings { } /// - /// 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 { @@ -1240,7 +1240,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credential ähnelt. + /// Looks up a localized string similar to Credential. /// public static string Credential { get { @@ -1249,7 +1249,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credential not found! ähnelt. + /// Looks up a localized string similar to Credential not found!. /// public static string CredentialNotFound { get { @@ -1258,7 +1258,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit the Profile and select a different credential or delete the existing one ähnelt. + /// Looks up a localized string similar to Edit the Profile and select a different credential or delete the existing one. /// public static string CredentialNotFoundMessage { get { @@ -1267,7 +1267,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt. + /// Looks up a localized string similar to Credentials. /// public static string Credentials { get { @@ -1276,7 +1276,7 @@ public class Strings { } /// - /// 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 { @@ -1285,7 +1285,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa. ähnelt. + /// Looks up a localized string similar to The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa.. /// public static string CredentialsEncryptionDisclaimer { get { @@ -1294,7 +1294,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A Credential with this name already exists! ähnelt. + /// Looks up a localized string similar to A Credential with this name already exists!. /// public static string CredentialWithThisNameAlreadyExists { get { @@ -1303,7 +1303,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt. + /// Looks up a localized string similar to Crimson. /// public static string Crimson { get { @@ -1312,7 +1312,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Ctrl+Alt+Del ähnelt. + /// Looks up a localized string similar to Ctrl+Alt+Del. /// public static string CtrlAltDel { get { @@ -1321,7 +1321,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Current download ähnelt. + /// Looks up a localized string similar to Current download. /// public static string CurrentDownload { get { @@ -1330,7 +1330,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Current upload ähnelt. + /// Looks up a localized string similar to Current upload. /// public static string CurrentUpload { get { @@ -1339,7 +1339,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Custom ähnelt. + /// Looks up a localized string similar to Custom. /// public static string Custom { get { @@ -1348,7 +1348,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Custom: ähnelt. + /// Looks up a localized string similar to Custom:. /// public static string CustomColon { get { @@ -1357,7 +1357,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Custom commands ähnelt. + /// Looks up a localized string similar to Custom commands. /// public static string CustomCommands { get { @@ -1366,7 +1366,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Custom screen size: ähnelt. + /// Looks up a localized string similar to Custom screen size:. /// public static string CustomScreenSize { get { @@ -1375,7 +1375,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cut ähnelt. + /// Looks up a localized string similar to Cut. /// public static string Cut { get { @@ -1384,7 +1384,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cyan ähnelt. + /// Looks up a localized string similar to Cyan. /// public static string Cyan { get { @@ -1393,7 +1393,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Dashboard ähnelt. + /// Looks up a localized string similar to Dashboard. /// public static string Dashboard { get { @@ -1402,7 +1402,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Data ähnelt. + /// Looks up a localized string similar to Data. /// public static string Data { get { @@ -1411,7 +1411,7 @@ public class Strings { } /// - /// 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 { @@ -1420,7 +1420,7 @@ public class Strings { } /// - /// 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 { @@ -1429,7 +1429,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Decrypt and load... ähnelt. + /// Looks up a localized string similar to Decrypt and load.... /// public static string DecryptAndLoadDots { get { @@ -1438,7 +1438,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default ähnelt. + /// Looks up a localized string similar to Default. /// public static string Default { get { @@ -1447,7 +1447,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default application ähnelt. + /// Looks up a localized string similar to Default application. /// public static string DefaultApplication { get { @@ -1456,7 +1456,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default-Gateway ähnelt. + /// Looks up a localized string similar to Default-Gateway. /// public static string DefaultGateway { get { @@ -1465,7 +1465,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default port: ähnelt. + /// Looks up a localized string similar to Default port:. /// public static string DefaultPort { get { @@ -1474,7 +1474,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete ähnelt. + /// Looks up a localized string similar to Delete. /// public static string Delete { get { @@ -1483,7 +1483,7 @@ public class Strings { } /// - /// 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 { @@ -1492,7 +1492,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete credentials ähnelt. + /// Looks up a localized string similar to Delete credentials. /// public static string DeleteCredentials { get { @@ -1501,7 +1501,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete custom command ähnelt. + /// Looks up a localized string similar to Delete custom command. /// public static string DeleteCustomCommand { get { @@ -1510,7 +1510,7 @@ public class Strings { } /// - /// 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 { @@ -1519,7 +1519,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete DNS server ähnelt. + /// Looks up a localized string similar to Delete DNS server. /// public static string DeleteDNSServer { get { @@ -1528,7 +1528,7 @@ public class Strings { } /// - /// 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 { @@ -1537,7 +1537,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt. + /// Looks up a localized string similar to Delete.... /// public static string DeleteDots { get { @@ -1546,7 +1546,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete entry ähnelt. + /// Looks up a localized string similar to Delete entry. /// public static string DeleteEntry { get { @@ -1555,7 +1555,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete profile ähnelt. + /// Looks up a localized string similar to Delete profile. /// public static string DeleteProfile { get { @@ -1564,7 +1564,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Selected profiles will be deleted permanently. ähnelt. + /// Looks up a localized string similar to Selected profiles will be deleted permanently.. /// public static string DeleteProfileMessage { get { @@ -1573,7 +1573,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete table ähnelt. + /// Looks up a localized string similar to Delete table. /// public static string DeleteTable { get { @@ -1582,7 +1582,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Description ähnelt. + /// Looks up a localized string similar to Description. /// public static string Description { get { @@ -1591,7 +1591,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Design ähnelt. + /// Looks up a localized string similar to Design. /// public static string Design { get { @@ -1600,7 +1600,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Desktop background ähnelt. + /// Looks up a localized string similar to Desktop background. /// public static string DesktopBackground { get { @@ -1609,7 +1609,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Desktop composition ähnelt. + /// Looks up a localized string similar to Desktop composition. /// public static string DesktopComposition { get { @@ -1618,7 +1618,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Destination ähnelt. + /// Looks up a localized string similar to Destination. /// public static string Destination { get { @@ -1627,7 +1627,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Details ähnelt. + /// Looks up a localized string similar to Details. /// public static string Details { get { @@ -1636,7 +1636,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Detecting network... ähnelt. + /// Looks up a localized string similar to Detecting network.... /// public static string DetectingNetworkDots { get { @@ -1645,7 +1645,7 @@ public class Strings { } /// - /// 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 { @@ -1654,7 +1654,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP enabled ähnelt. + /// Looks up a localized string similar to DHCP enabled. /// public static string DHCPEnabled { get { @@ -1663,7 +1663,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease expires ähnelt. + /// Looks up a localized string similar to DHCP lease expires. /// public static string DHCPLeaseExpires { get { @@ -1672,7 +1672,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease obtained ähnelt. + /// Looks up a localized string similar to DHCP lease obtained. /// public static string DHCPLeaseObtained { get { @@ -1681,7 +1681,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP server ähnelt. + /// Looks up a localized string similar to DHCP server. /// public static string DHCPServer { get { @@ -1690,7 +1690,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PowerShell. ähnelt. + /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PowerShell.. /// public static string DisableTransparencyInTheSettingsToUsePowerShell { get { @@ -1699,7 +1699,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY. ähnelt. + /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY.. /// public static string DisableTransparencyInTheSettingsToUsePuTTY { get { @@ -1708,7 +1708,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop. ähnelt. + /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop.. /// public static string DisableTransparencyInTheSettingsToUseRemoteDesktop { get { @@ -1717,7 +1717,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use TigerVNC. ähnelt. + /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use TigerVNC.. /// public static string DisableTransparencyInTheSettingsToUseTigerVNC { get { @@ -1726,7 +1726,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt. + /// Looks up a localized string similar to Disconnect. /// public static string Disconnect { get { @@ -1735,7 +1735,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disconnected ähnelt. + /// Looks up a localized string similar to Disconnected. /// public static string Disconnected { get { @@ -1744,7 +1744,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Display ähnelt. + /// Looks up a localized string similar to Display. /// public static string Display { get { @@ -1753,7 +1753,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS ähnelt. + /// Looks up a localized string similar to DNS. /// public static string DNS { get { @@ -1762,7 +1762,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS autconfiguration ähnelt. + /// Looks up a localized string similar to DNS autconfiguration. /// public static string DNSAutoconfiguration { get { @@ -1771,7 +1771,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup ähnelt. + /// Looks up a localized string similar to DNS Lookup. /// public static string DNSLookup { get { @@ -1780,7 +1780,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup... ähnelt. + /// Looks up a localized string similar to DNS Lookup.... /// public static string DNSLookupDots { get { @@ -1789,7 +1789,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS server ähnelt. + /// Looks up a localized string similar to DNS server. /// public static string DNSServer { get { @@ -1798,7 +1798,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS server(s) ähnelt. + /// Looks up a localized string similar to DNS server(s). /// public static string DNSServers { get { @@ -1807,7 +1807,7 @@ public class Strings { } /// - /// 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 { @@ -1816,7 +1816,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS suffix ähnelt. + /// Looks up a localized string similar to DNS suffix. /// public static string DNSSuffix { get { @@ -1825,7 +1825,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die How to install RDP 8.1 on Windows 7/Server 2008 R2 ähnelt. + /// Looks up a localized string similar to How to install RDP 8.1 on Windows 7/Server 2008 R2. /// public static string DocumentationTitle_00001 { get { @@ -1834,7 +1834,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die How to create a custom theme and accent? ähnelt. + /// Looks up a localized string similar to How to create a custom theme and accent?. /// public static string DocumentationTitle_00002 { get { @@ -1843,7 +1843,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. + /// Looks up a localized string similar to Domain. /// public static string Domain { get { @@ -1852,7 +1852,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Domain name ähnelt. + /// Looks up a localized string similar to Domain name. /// public static string DomainName { get { @@ -1861,7 +1861,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Don't fragment ähnelt. + /// Looks up a localized string similar to Don't fragment. /// public static string DontFragment { get { @@ -1870,7 +1870,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Download ähnelt. + /// Looks up a localized string similar to Download. /// public static string Download { get { @@ -1879,7 +1879,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Duration ähnelt. + /// Looks up a localized string similar to Duration. /// public static string Duration { get { @@ -1888,7 +1888,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 address ähnelt. + /// Looks up a localized string similar to Dynamic IPv4 address. /// public static string DynamicIPv4Address { get { @@ -1897,7 +1897,7 @@ public class Strings { } /// - /// 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 { @@ -1906,7 +1906,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit credentials ähnelt. + /// Looks up a localized string similar to Edit credentials. /// public static string EditCredentials { get { @@ -1915,7 +1915,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit custom command ähnelt. + /// Looks up a localized string similar to Edit custom command. /// public static string EditCustomCommand { get { @@ -1924,7 +1924,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit DNS server ähnelt. + /// Looks up a localized string similar to Edit DNS server. /// public static string EditDNSServer { get { @@ -1933,7 +1933,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit... ähnelt. + /// Looks up a localized string similar to Edit.... /// public static string EditDots { get { @@ -1942,7 +1942,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit group ähnelt. + /// Looks up a localized string similar to Edit group. /// public static string EditGroup { get { @@ -1951,7 +1951,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit profile ähnelt. + /// Looks up a localized string similar to Edit profile. /// public static string EditProfile { get { @@ -1960,7 +1960,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt. + /// Looks up a localized string similar to Emerald. /// public static string Emerald { get { @@ -1969,7 +1969,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enable ähnelt. + /// Looks up a localized string similar to Enable. /// public static string Enable { get { @@ -1978,7 +1978,7 @@ public class Strings { } /// - /// 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 { @@ -1987,7 +1987,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enable transparency ähnelt. + /// Looks up a localized string similar to Enable transparency. /// public static string EnableTransparency { get { @@ -1996,7 +1996,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Encryption ähnelt. + /// Looks up a localized string similar to Encryption. /// public static string Encryption { get { @@ -2005,7 +2005,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Encryption: ähnelt. + /// Looks up a localized string similar to Encryption:. /// public static string EncryptionColon { get { @@ -2014,7 +2014,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die End time ähnelt. + /// Looks up a localized string similar to End time. /// public static string EndTime { get { @@ -2023,7 +2023,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a subnet to calculate it... ähnelt. + /// Looks up a localized string similar to Enter a subnet to calculate it.... /// public static string EnterASubnetToCalculateIt { get { @@ -2032,7 +2032,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter location... ähnelt. + /// Looks up a localized string similar to Enter location.... /// public static string EnterLocationDots { get { @@ -2041,7 +2041,7 @@ public class Strings { } /// - /// 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 { @@ -2050,7 +2050,7 @@ public class Strings { } /// - /// 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 { @@ -2059,7 +2059,7 @@ public class Strings { } /// - /// 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 { @@ -2068,7 +2068,7 @@ public class Strings { } /// - /// 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 { @@ -2077,7 +2077,7 @@ public class Strings { } /// - /// 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 { @@ -2086,7 +2086,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter valid file path! ähnelt. + /// Looks up a localized string similar to Enter valid file path!. /// public static string EnterValidFilePath { get { @@ -2095,7 +2095,7 @@ public class Strings { } /// - /// 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 { @@ -2104,7 +2104,7 @@ public class Strings { } /// - /// 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 { @@ -2113,7 +2113,7 @@ public class Strings { } /// - /// 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 { @@ -2122,7 +2122,7 @@ public class Strings { } /// - /// 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 { @@ -2131,7 +2131,7 @@ public class Strings { } /// - /// 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 { @@ -2140,7 +2140,7 @@ public class Strings { } /// - /// 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 { @@ -2149,7 +2149,7 @@ public class Strings { } /// - /// 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 { @@ -2158,7 +2158,7 @@ public class Strings { } /// - /// 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 { @@ -2167,7 +2167,7 @@ public class Strings { } /// - /// 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 { @@ -2176,7 +2176,7 @@ public class Strings { } /// - /// 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 { @@ -2185,7 +2185,7 @@ public class Strings { } /// - /// 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 { @@ -2194,7 +2194,7 @@ public class Strings { } /// - /// 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 { @@ -2203,7 +2203,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid value between 25 and 100! ähnelt. + /// Looks up a localized string similar to Enter a valid value between 25 and 100!. /// public static string EnterValidValueBetween25and100 { get { @@ -2212,7 +2212,7 @@ public class Strings { } /// - /// 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 { @@ -2221,7 +2221,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt. + /// Looks up a localized string similar to Error. /// public static string Error { get { @@ -2230,7 +2230,7 @@ public class Strings { } /// - /// 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 { @@ -2239,7 +2239,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Error in response! ähnelt. + /// Looks up a localized string similar to Error in response!. /// public static string ErrorInResponse { get { @@ -2248,7 +2248,7 @@ public class Strings { } /// - /// 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 { @@ -2257,7 +2257,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Everything ähnelt. + /// Looks up a localized string similar to Everything. /// public static string Everything { get { @@ -2266,7 +2266,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Execution Policy ähnelt. + /// Looks up a localized string similar to Execution Policy. /// public static string ExecutionPolicy { get { @@ -2275,7 +2275,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Expand ähnelt. + /// Looks up a localized string similar to Expand. /// public static string Expand { get { @@ -2284,7 +2284,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Experience ähnelt. + /// Looks up a localized string similar to Experience. /// public static string Experience { get { @@ -2293,7 +2293,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Export ähnelt. + /// Looks up a localized string similar to Export. /// public static string Export { get { @@ -2302,7 +2302,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Export all ähnelt. + /// Looks up a localized string similar to Export all. /// public static string ExportAll { get { @@ -2311,7 +2311,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Export... ähnelt. + /// Looks up a localized string similar to Export.... /// public static string ExportDots { get { @@ -2320,7 +2320,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Export selected ähnelt. + /// Looks up a localized string similar to Export selected. /// public static string ExportSelected { get { @@ -2329,7 +2329,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die External services ähnelt. + /// Looks up a localized string similar to External services. /// public static string ExternalServices { get { @@ -2338,7 +2338,7 @@ public class Strings { } /// - /// 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 { @@ -2347,7 +2347,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die File ähnelt. + /// Looks up a localized string similar to File. /// public static string File { get { @@ -2356,7 +2356,7 @@ public class Strings { } /// - /// 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 { @@ -2365,7 +2365,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die File path ähnelt. + /// Looks up a localized string similar to File path. /// public static string FilePath { get { @@ -2374,7 +2374,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Filter ähnelt. + /// Looks up a localized string similar to Filter. /// public static string Filter { get { @@ -2383,7 +2383,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Filter... ähnelt. + /// Looks up a localized string similar to Filter.... /// public static string FilterDots { get { @@ -2392,9 +2392,9 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Thanks for using NETworkManager! + /// Looks up a localized string similar to Thanks for using NETworkManager! /// - ///To provide additional features the application uses services on the Internet that are not operated by me. No data will be sent to me at any time. ähnelt. + ///To provide additional features the application uses services on the Internet that are not operated by me. No data will be sent to me at any time.. /// public static string FirstRunMessage { get { @@ -2403,7 +2403,7 @@ public class Strings { } /// - /// 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 { @@ -2412,7 +2412,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Fixed screen size: ähnelt. + /// Looks up a localized string similar to Fixed screen size:. /// public static string FixedScreenSize { get { @@ -2421,7 +2421,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Flush DNS cache ähnelt. + /// Looks up a localized string similar to Flush DNS cache. /// public static string FlushDNSCache { get { @@ -2430,7 +2430,7 @@ public class Strings { } /// - /// 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 { @@ -2439,7 +2439,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Font smoothing ähnelt. + /// Looks up a localized string similar to Font smoothing. /// public static string FontSmoothing { get { @@ -2448,7 +2448,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Format ähnelt. + /// Looks up a localized string similar to Format. /// public static string Format { get { @@ -2457,7 +2457,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Found ähnelt. + /// Looks up a localized string similar to Found. /// public static string Found { get { @@ -2466,7 +2466,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Fullscreen ähnelt. + /// Looks up a localized string similar to Fullscreen. /// public static string Fullscreen { get { @@ -2475,7 +2475,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Gateway ähnelt. + /// Looks up a localized string similar to Gateway. /// public static string Gateway { get { @@ -2484,7 +2484,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Gateway / Router ähnelt. + /// Looks up a localized string similar to Gateway / Router. /// public static string GatewayRouter { get { @@ -2493,7 +2493,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt. + /// Looks up a localized string similar to General. /// public static string General { get { @@ -2502,7 +2502,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 2.4 GHz ähnelt. + /// Looks up a localized string similar to 2.4 GHz. /// public static string GHz2dot4 { get { @@ -2511,7 +2511,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 5 GHz ähnelt. + /// Looks up a localized string similar to 5 GHz. /// public static string GHz5 { get { @@ -2520,7 +2520,7 @@ public class Strings { } /// - /// 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 { @@ -2529,7 +2529,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt. + /// Looks up a localized string similar to Green. /// public static string Green { get { @@ -2538,7 +2538,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Group ähnelt. + /// Looks up a localized string similar to Group. /// public static string Group { get { @@ -2547,7 +2547,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Headers ähnelt. + /// Looks up a localized string similar to Headers. /// public static string Headers { get { @@ -2556,7 +2556,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Height ähnelt. + /// Looks up a localized string similar to Height. /// public static string Height { get { @@ -2565,11 +2565,11 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The background job will save settings, profiles and credentials every x-minutes. + /// Looks up a localized string similar to The background job will save settings, profiles and credentials every x-minutes. /// ///Value 0 will disable this feature. /// - ///Changing this value requires a restart of the application to take effect. ähnelt. + ///Changing this value requires a restart of the application to take effect.. /// public static string HelpMessage_BackgroundJob { get { @@ -2578,9 +2578,9 @@ public class Strings { } /// - /// 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 { @@ -2589,9 +2589,9 @@ public class Strings { } /// - /// 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/ ähnelt. + ///URL: https://api.ipify.org/. /// public static string HelpMessage_CheckPublicIPAddress { get { @@ -2600,7 +2600,7 @@ public class Strings { } /// - /// 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 { @@ -2609,10 +2609,10 @@ public class Strings { } /// - /// 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 { @@ -2621,7 +2621,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die URL to a web service that can be reached via http or https and returns an IP address 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 IP address as response.. /// public static string HelpMessage_CustomPublicIPAddressAPI { get { @@ -2630,7 +2630,7 @@ public class Strings { } /// - /// 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 { @@ -2639,7 +2639,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reset all settings. ähnelt. + /// Looks up a localized string similar to Reset all settings.. /// public static string HelpMessage_ParameterResetSettings { get { @@ -2648,7 +2648,7 @@ public class Strings { } /// - /// 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 { @@ -2657,7 +2657,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Domain to test dns server settings (Domain must resolve A or AAAA record). ähnelt. + /// Looks up a localized string similar to Domain to test dns server settings (Domain must resolve A or AAAA record).. /// public static string HelpMessage_PublicDNSTestDomain { get { @@ -2666,7 +2666,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP address to test dns server settings (IP address must resolve PTR record). ähnelt. + /// Looks up a localized string similar to IP address to test dns server settings (IP address must resolve PTR record).. /// public static string HelpMessage_PublicDNSTestIPAddress { get { @@ -2675,7 +2675,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP address to test connection via ping (ICMP). ähnelt. + /// Looks up a localized string similar to IP address to test connection via ping (ICMP).. /// public static string HelpMessage_PublicICMPTestIPAddress { get { @@ -2684,10 +2684,10 @@ public class Strings { } /// - /// 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 { @@ -2696,7 +2696,7 @@ public class Strings { } /// - /// 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 { @@ -2705,7 +2705,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Help translate on transifex ähnelt. + /// Looks up a localized string similar to Help translate on transifex. /// public static string HelpTranslateOnTransifex { get { @@ -2714,7 +2714,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hidden applications ähnelt. + /// Looks up a localized string similar to Hidden applications. /// public static string HiddenApplications { get { @@ -2723,7 +2723,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hide ähnelt. + /// Looks up a localized string similar to Hide. /// public static string Hide { get { @@ -2732,7 +2732,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Highlight timeouts ähnelt. + /// Looks up a localized string similar to Highlight timeouts. /// public static string HighlightTimeouts { get { @@ -2741,7 +2741,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die History ähnelt. + /// Looks up a localized string similar to History. /// public static string History { get { @@ -2750,7 +2750,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hop ähnelt. + /// Looks up a localized string similar to Hop. /// public static string Hop { get { @@ -2759,7 +2759,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hops ähnelt. + /// Looks up a localized string similar to Hops. /// public static string Hops { get { @@ -2768,7 +2768,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Host ähnelt. + /// Looks up a localized string similar to Host. /// public static string Host { get { @@ -2777,7 +2777,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hostname ähnelt. + /// Looks up a localized string similar to Hostname. /// public static string Hostname { get { @@ -2786,7 +2786,7 @@ public class Strings { } /// - /// 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 { @@ -2795,7 +2795,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hosts ähnelt. + /// Looks up a localized string similar to Hosts. /// public static string Hosts { get { @@ -2804,7 +2804,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Host threads ähnelt. + /// Looks up a localized string similar to Host threads. /// public static string HostThreads { get { @@ -2813,7 +2813,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt. + /// Looks up a localized string similar to HotKeys. /// public static string HotKeys { get { @@ -2822,7 +2822,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die HTTP Headers ähnelt. + /// Looks up a localized string similar to HTTP Headers. /// public static string HTTPHeaders { get { @@ -2831,7 +2831,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ID ähnelt. + /// Looks up a localized string similar to ID. /// public static string ID { get { @@ -2840,7 +2840,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Import ähnelt. + /// Looks up a localized string similar to Import. /// public static string Import { get { @@ -2849,7 +2849,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Import / Export ähnelt. + /// Looks up a localized string similar to Import / Export. /// public static string ImportExport { get { @@ -2858,7 +2858,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Indigo ähnelt. + /// Looks up a localized string similar to Indigo. /// public static string Indigo { get { @@ -2867,7 +2867,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Information ähnelt. + /// Looks up a localized string similar to Information. /// public static string Information { get { @@ -2876,7 +2876,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Infrastructure ähnelt. + /// Looks up a localized string similar to Infrastructure. /// public static string Infrastructure { get { @@ -2885,7 +2885,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Inherit host from default ähnelt. + /// Looks up a localized string similar to Inherit host from default. /// public static string InheritHostFromDefault { get { @@ -2894,7 +2894,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality! ähnelt. + /// Looks up a localized string similar to You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality!. /// public static string InstallRDP8dot1Message { get { @@ -2903,7 +2903,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Interface ähnelt. + /// Looks up a localized string similar to Interface. /// public static string Interface { get { @@ -2912,7 +2912,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Internet ähnelt. + /// Looks up a localized string similar to Internet. /// public static string Internet { get { @@ -2921,7 +2921,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP address ähnelt. + /// Looks up a localized string similar to IP address. /// public static string IPAddress { get { @@ -2930,7 +2930,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP addresses ähnelt. + /// Looks up a localized string similar to IP addresses. /// public static string IPAddresses { get { @@ -2939,7 +2939,7 @@ public class Strings { } /// - /// 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 { @@ -2948,7 +2948,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP range ähnelt. + /// Looks up a localized string similar to IP range. /// public static string IPRange { get { @@ -2957,7 +2957,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP Scanner ähnelt. + /// Looks up a localized string similar to IP Scanner. /// public static string IPScanner { get { @@ -2966,7 +2966,7 @@ public class Strings { } /// - /// 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 { @@ -2975,7 +2975,7 @@ public class Strings { } /// - /// 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 { @@ -2984,7 +2984,7 @@ public class Strings { } /// - /// 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 { @@ -2993,7 +2993,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Success ähnelt. + /// Looks up a localized string similar to Success. /// public static string IPStatus_Success { get { @@ -3002,7 +3002,7 @@ public class Strings { } /// - /// 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 { @@ -3011,7 +3011,7 @@ public class Strings { } /// - /// 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 { @@ -3020,7 +3020,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv4 ähnelt. + /// Looks up a localized string similar to IPv4. /// public static string IPv4 { get { @@ -3029,7 +3029,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv4 address ähnelt. + /// Looks up a localized string similar to IPv4 address. /// public static string IPv4Address { get { @@ -3038,7 +3038,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv4-Default-Gateway ähnelt. + /// Looks up a localized string similar to IPv4-Default-Gateway. /// public static string IPv4DefaultGateway { get { @@ -3047,7 +3047,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv4 protocol available ähnelt. + /// Looks up a localized string similar to IPv4 protocol available. /// public static string IPv4ProtocolAvailable { get { @@ -3056,7 +3056,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv6 ähnelt. + /// Looks up a localized string similar to IPv6. /// public static string IPv6 { get { @@ -3065,7 +3065,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv6 address ähnelt. + /// Looks up a localized string similar to IPv6 address. /// public static string IPv6Address { get { @@ -3074,7 +3074,7 @@ public class Strings { } /// - /// 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 { @@ -3083,7 +3083,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv6-Default-Gateway ähnelt. + /// Looks up a localized string similar to IPv6-Default-Gateway. /// public static string IPv6DefaultGateway { get { @@ -3092,7 +3092,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv6 protocol available ähnelt. + /// Looks up a localized string similar to IPv6 protocol available. /// public static string IPv6ProtocolAvailable { get { @@ -3101,7 +3101,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Keyboard ähnelt. + /// Looks up a localized string similar to Keyboard. /// public static string Keyboard { get { @@ -3110,7 +3110,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Keyboard shortcuts ähnelt. + /// Looks up a localized string similar to Keyboard shortcuts. /// public static string KeyboardShortcuts { get { @@ -3119,7 +3119,7 @@ public class Strings { } /// - /// 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 { @@ -3128,7 +3128,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt. + /// Looks up a localized string similar to Language. /// public static string Language { get { @@ -3137,7 +3137,7 @@ public class Strings { } /// - /// 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 { @@ -3146,7 +3146,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Libraries ähnelt. + /// Looks up a localized string similar to Libraries. /// public static string Libraries { get { @@ -3155,7 +3155,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die License ähnelt. + /// Looks up a localized string similar to License. /// public static string License { get { @@ -3164,7 +3164,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt. + /// Looks up a localized string similar to Lime. /// public static string Lime { get { @@ -3173,7 +3173,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Listeners ähnelt. + /// Looks up a localized string similar to Listeners. /// public static string Listeners { get { @@ -3182,7 +3182,7 @@ public class Strings { } /// - /// 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 { @@ -3191,7 +3191,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Local IP address ähnelt. + /// Looks up a localized string similar to Local IP address. /// public static string LocalIPAddress { get { @@ -3200,7 +3200,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Local port ähnelt. + /// Looks up a localized string similar to Local port. /// public static string LocalPort { get { @@ -3209,7 +3209,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Location ähnelt. + /// Looks up a localized string similar to Location. /// public static string Location { get { @@ -3218,7 +3218,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Location... ähnelt. + /// Looks up a localized string similar to Location.... /// public static string LocationDots { get { @@ -3227,7 +3227,7 @@ public class Strings { } /// - /// 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 { @@ -3236,7 +3236,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt. + /// Looks up a localized string similar to Lookup. /// public static string Lookup { get { @@ -3245,7 +3245,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt. + /// Looks up a localized string similar to MAC Address. /// public static string MACAddress { get { @@ -3254,7 +3254,7 @@ public class Strings { } /// - /// 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 { @@ -3263,7 +3263,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Magenta ähnelt. + /// Looks up a localized string similar to Magenta. /// public static string Magenta { get { @@ -3272,7 +3272,7 @@ public class Strings { } /// - /// 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 { @@ -3281,7 +3281,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Master Password ähnelt. + /// Looks up a localized string similar to Master Password. /// public static string MasterPassword { get { @@ -3290,7 +3290,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Mauve ähnelt. + /// Looks up a localized string similar to Mauve. /// public static string Mauve { get { @@ -3299,7 +3299,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Maximum ähnelt. + /// Looks up a localized string similar to Maximum. /// public static string Maximum { get { @@ -3308,7 +3308,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Maximum hops/router ähnelt. + /// Looks up a localized string similar to Maximum hops/router. /// public static string MaximumHopsRouter { get { @@ -3317,7 +3317,7 @@ public class Strings { } /// - /// 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 { @@ -3326,7 +3326,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Measured time ähnelt. + /// Looks up a localized string similar to Measured time. /// public static string MeasuredTime { get { @@ -3335,7 +3335,7 @@ public class Strings { } /// - /// 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 { @@ -3344,7 +3344,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Message size ähnelt. + /// Looks up a localized string similar to Message size. /// public static string MessageSize { get { @@ -3353,7 +3353,7 @@ public class Strings { } /// - /// 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 { @@ -3362,7 +3362,7 @@ public class Strings { } /// - /// 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 { @@ -3371,7 +3371,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Minimum ähnelt. + /// Looks up a localized string similar to Minimum. /// public static string Minimum { get { @@ -3380,7 +3380,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Mode ähnelt. + /// Looks up a localized string similar to Mode. /// public static string Mode { get { @@ -3389,7 +3389,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Move & Restart ähnelt. + /// Looks up a localized string similar to Move & Restart. /// public static string MoveAndRestart { get { @@ -3398,7 +3398,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Multicast ähnelt. + /// Looks up a localized string similar to Multicast. /// public static string Multicast { get { @@ -3407,7 +3407,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Multiple instances ähnelt. + /// Looks up a localized string similar to Multiple instances. /// public static string MultipleInstances { get { @@ -3416,7 +3416,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Multithreading ähnelt. + /// Looks up a localized string similar to Multithreading. /// public static string Multithreading { get { @@ -3425,7 +3425,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Name ähnelt. + /// Looks up a localized string similar to Name. /// public static string Name { get { @@ -3434,7 +3434,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt. + /// Looks up a localized string similar to Network. /// public static string Network { get { @@ -3443,7 +3443,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network address ähnelt. + /// Looks up a localized string similar to Network address. /// public static string NetworkAddress { get { @@ -3452,7 +3452,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network connections.... ähnelt. + /// Looks up a localized string similar to Network connections..... /// public static string NetworkConnectionsDots { get { @@ -3461,7 +3461,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network connection type ähnelt. + /// Looks up a localized string similar to Network connection type. /// public static string NetworkConnectionType { get { @@ -3470,7 +3470,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt. + /// Looks up a localized string similar to Network Interface. /// public static string NetworkInterface { get { @@ -3479,7 +3479,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network kind: ähnelt. + /// Looks up a localized string similar to Network kind:. /// public static string NetworkKindColon { get { @@ -3488,7 +3488,7 @@ public class Strings { } /// - /// 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 { @@ -3497,7 +3497,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Networks ähnelt. + /// Looks up a localized string similar to Networks. /// public static string Networks { get { @@ -3506,7 +3506,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network unavailable! ähnelt. + /// Looks up a localized string similar to Network unavailable!. /// public static string NetworkUnavailable { get { @@ -3515,7 +3515,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network usage ähnelt. + /// Looks up a localized string similar to Network usage. /// public static string NetworkUsage { get { @@ -3524,7 +3524,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die New connection... ähnelt. + /// Looks up a localized string similar to New connection.... /// public static string NewConnectionDots { get { @@ -3533,7 +3533,7 @@ public class Strings { } /// - /// 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 { @@ -3542,7 +3542,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die New tab ähnelt. + /// Looks up a localized string similar to New tab. /// public static string NewTab { get { @@ -3551,7 +3551,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No ähnelt. + /// Looks up a localized string similar to No. /// public static string No { get { @@ -3560,7 +3560,7 @@ public class Strings { } /// - /// 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 { @@ -3569,7 +3569,7 @@ public class Strings { } /// - /// 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 { @@ -3578,7 +3578,7 @@ public class Strings { } /// - /// 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 { @@ -3587,7 +3587,7 @@ public class Strings { } /// - /// 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 { @@ -3596,8 +3596,8 @@ public class Strings { } /// - /// 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 { @@ -3606,7 +3606,7 @@ public class Strings { } /// - /// 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 { @@ -3615,7 +3615,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die (not changed) ähnelt. + /// Looks up a localized string similar to (not changed). /// public static string NotChanged { get { @@ -3624,7 +3624,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Note ähnelt. + /// Looks up a localized string similar to Note. /// public static string Note { get { @@ -3633,7 +3633,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Nothing found! ähnelt. + /// Looks up a localized string similar to Nothing found!. /// public static string NothingFound { get { @@ -3642,7 +3642,7 @@ public class Strings { } /// - /// 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 { @@ -3651,7 +3651,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No update available! ähnelt. + /// Looks up a localized string similar to No update available!. /// public static string NoUpdateAvailable { get { @@ -3660,7 +3660,7 @@ public class Strings { } /// - /// 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 { @@ -3669,7 +3669,7 @@ public class Strings { } /// - /// 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 { @@ -3678,7 +3678,7 @@ public class Strings { } /// - /// 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 { @@ -3687,7 +3687,7 @@ public class Strings { } /// - /// 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 { @@ -3696,7 +3696,7 @@ public class Strings { } /// - /// 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 { @@ -3705,7 +3705,7 @@ public class Strings { } /// - /// 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 { @@ -3714,7 +3714,7 @@ public class Strings { } /// - /// 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 { @@ -3723,7 +3723,7 @@ public class Strings { } /// - /// 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 { @@ -3732,7 +3732,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Off ähnelt. + /// Looks up a localized string similar to Off. /// public static string Off { get { @@ -3741,7 +3741,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Official ähnelt. + /// Looks up a localized string similar to Official. /// public static string Official { get { @@ -3750,7 +3750,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die OID ähnelt. + /// Looks up a localized string similar to OID. /// public static string OID { get { @@ -3759,7 +3759,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt. + /// Looks up a localized string similar to OK. /// public static string OK { get { @@ -3768,7 +3768,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Olive ähnelt. + /// Looks up a localized string similar to Olive. /// public static string Olive { get { @@ -3777,7 +3777,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die On ähnelt. + /// Looks up a localized string similar to On. /// public static string On { get { @@ -3786,7 +3786,7 @@ public class Strings { } /// - /// 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 { @@ -3795,7 +3795,7 @@ public class Strings { } /// - /// 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 { @@ -3804,7 +3804,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. + /// Looks up a localized string similar to Open. /// public static string Open { get { @@ -3813,7 +3813,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open documentation ähnelt. + /// Looks up a localized string similar to Open documentation. /// public static string OpenDocumentation { get { @@ -3822,7 +3822,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open license ähnelt. + /// Looks up a localized string similar to Open license. /// public static string OpenLicense { get { @@ -3831,7 +3831,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open location ähnelt. + /// Looks up a localized string similar to Open location. /// public static string OpenLocation { get { @@ -3840,7 +3840,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open project ähnelt. + /// Looks up a localized string similar to Open project. /// public static string OpenProject { get { @@ -3849,7 +3849,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open settings ähnelt. + /// Looks up a localized string similar to Open settings. /// public static string OpenSettings { get { @@ -3858,7 +3858,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open website ähnelt. + /// Looks up a localized string similar to Open website. /// public static string OpenWebsite { get { @@ -3867,7 +3867,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Orange ähnelt. + /// Looks up a localized string similar to Orange. /// public static string Orange { get { @@ -3876,7 +3876,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die OUI ähnelt. + /// Looks up a localized string similar to OUI. /// public static string OUI { get { @@ -3885,7 +3885,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die override ähnelt. + /// Looks up a localized string similar to override. /// public static string Override { get { @@ -3894,7 +3894,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Override default settings ähnelt. + /// Looks up a localized string similar to Override default settings. /// public static string OverrideDefaultSettings { get { @@ -3903,7 +3903,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Overwrite ähnelt. + /// Looks up a localized string similar to Overwrite. /// public static string Overwrite { get { @@ -3912,7 +3912,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Overwrite? ähnelt. + /// Looks up a localized string similar to Overwrite?. /// public static string OverwriteQuestion { get { @@ -3921,9 +3921,9 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Overwrite settings in the destination folder? + /// Looks up a localized string similar to Overwrite settings in the destination folder? /// - ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings! ähnelt. + ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings!. /// public static string OverwriteSettingsInTheDestinationFolder { get { @@ -3932,7 +3932,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Packet loss ähnelt. + /// Looks up a localized string similar to Packet loss. /// public static string PacketLoss { get { @@ -3941,7 +3941,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Packets transmitted ähnelt. + /// Looks up a localized string similar to Packets transmitted. /// public static string PacketsTransmitted { get { @@ -3950,7 +3950,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. + /// Looks up a localized string similar to Password. /// public static string Password { get { @@ -3959,7 +3959,7 @@ public class Strings { } /// - /// 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 { @@ -3968,7 +3968,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Paste ähnelt. + /// Looks up a localized string similar to Paste. /// public static string Paste { get { @@ -3977,7 +3977,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Path ähnelt. + /// Looks up a localized string similar to Path. /// public static string Path { get { @@ -3986,7 +3986,16 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Performance ähnelt. + /// Looks up a localized string similar to Pause. + /// + public static string Pause { + get { + return ResourceManager.GetString("Pause", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Performance. /// public static string Performance { get { @@ -3995,7 +4004,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Persistent bitmap caching ähnelt. + /// Looks up a localized string similar to Persistent bitmap caching. /// public static string PersistentBitmapCaching { get { @@ -4004,7 +4013,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Phy kind: ähnelt. + /// Looks up a localized string similar to Phy kind:. /// public static string PhyKindColon { get { @@ -4013,7 +4022,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PhysicalAddress ähnelt. + /// Looks up a localized string similar to PhysicalAddress. /// public static string PhysicalAddress { get { @@ -4022,7 +4031,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Ping ähnelt. + /// Looks up a localized string similar to Ping. /// public static string Ping { get { @@ -4031,7 +4040,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Ping Monitor ähnelt. + /// Looks up a localized string similar to Ping Monitor. /// public static string PingMonitor { get { @@ -4040,7 +4049,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt. + /// Looks up a localized string similar to Pink. /// public static string Pink { get { @@ -4049,7 +4058,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port ähnelt. + /// Looks up a localized string similar to Port. /// public static string Port { get { @@ -4058,7 +4067,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Portable ähnelt. + /// Looks up a localized string similar to Portable. /// public static string Portable { get { @@ -4067,7 +4076,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port or service ähnelt. + /// Looks up a localized string similar to Port or service. /// public static string PortOrService { get { @@ -4076,7 +4085,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port(s) ähnelt. + /// Looks up a localized string similar to Port(s). /// public static string Ports { get { @@ -4085,7 +4094,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt. + /// Looks up a localized string similar to Port Scanner. /// public static string PortScanner { get { @@ -4094,7 +4103,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. + /// Looks up a localized string similar to Closed. /// public static string PortState_Closed { get { @@ -4103,7 +4112,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. + /// Looks up a localized string similar to Open. /// public static string PortState_Open { get { @@ -4112,7 +4121,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port threads ähnelt. + /// Looks up a localized string similar to Port threads. /// public static string PortThreads { get { @@ -4121,7 +4130,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PowerShell ähnelt. + /// Looks up a localized string similar to PowerShell. /// public static string PowerShell { get { @@ -4130,7 +4139,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PowerShell location... ähnelt. + /// Looks up a localized string similar to PowerShell location.... /// public static string PowerShellLocationDots { get { @@ -4139,7 +4148,7 @@ public class Strings { } /// - /// 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 { @@ -4148,7 +4157,7 @@ public class Strings { } /// - /// 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 { @@ -4157,7 +4166,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Primary DNS server ähnelt. + /// Looks up a localized string similar to Primary DNS server. /// public static string PrimaryDNSServer { get { @@ -4166,7 +4175,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Priv ähnelt. + /// Looks up a localized string similar to Priv. /// public static string Priv { get { @@ -4175,7 +4184,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Privacy ähnelt. + /// Looks up a localized string similar to Privacy. /// public static string Privacy { get { @@ -4184,7 +4193,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Profile ähnelt. + /// Looks up a localized string similar to Profile. /// public static string Profile { get { @@ -4193,7 +4202,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt. + /// Looks up a localized string similar to Profiles. /// public static string Profiles { get { @@ -4202,7 +4211,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Profiles reloaded ähnelt. + /// Looks up a localized string similar to Profiles reloaded. /// public static string ProfilesReloaded { get { @@ -4211,7 +4220,7 @@ public class Strings { } /// - /// 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 { @@ -4220,7 +4229,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Program ähnelt. + /// Looks up a localized string similar to Program. /// public static string Program { get { @@ -4229,7 +4238,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. + /// Looks up a localized string similar to Protocol. /// public static string Protocol { get { @@ -4238,7 +4247,7 @@ public class Strings { } /// - /// 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 { @@ -4247,7 +4256,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Public DNS test domain ähnelt. + /// Looks up a localized string similar to Public DNS test domain. /// public static string PublicDNSTestDomain { get { @@ -4256,7 +4265,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Public DNS test IP address ähnelt. + /// Looks up a localized string similar to Public DNS test IP address. /// public static string PublicDNSTestIPAddress { get { @@ -4265,7 +4274,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Public ICMP test IP address ähnelt. + /// Looks up a localized string similar to Public ICMP test IP address. /// public static string PublicICMPTestIPAddress { get { @@ -4274,8 +4283,8 @@ public class Strings { } /// - /// 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 { @@ -4284,7 +4293,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt. + /// Looks up a localized string similar to Purple. /// public static string Purple { get { @@ -4293,7 +4302,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PuTTY ähnelt. + /// Looks up a localized string similar to PuTTY. /// public static string PuTTY { get { @@ -4302,7 +4311,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PuTTY location... ähnelt. + /// Looks up a localized string similar to PuTTY location.... /// public static string PuTTYLocationDots { get { @@ -4311,7 +4320,7 @@ public class Strings { } /// - /// 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 { @@ -4320,7 +4329,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PuTTY profile ähnelt. + /// Looks up a localized string similar to PuTTY profile. /// public static string PuTTYProfile { get { @@ -4329,7 +4338,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Query ähnelt. + /// Looks up a localized string similar to Query. /// public static string Query { get { @@ -4338,7 +4347,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Query class ähnelt. + /// Looks up a localized string similar to Query class. /// public static string QueryClass { get { @@ -4347,7 +4356,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Questions ähnelt. + /// Looks up a localized string similar to Questions. /// public static string Questions { get { @@ -4356,7 +4365,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die RAW ähnelt. + /// Looks up a localized string similar to RAW. /// public static string RAW { get { @@ -4365,7 +4374,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Received / Lost ähnelt. + /// Looks up a localized string similar to Received / Lost. /// public static string ReceivedLost { get { @@ -4374,7 +4383,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reconnect ähnelt. + /// Looks up a localized string similar to Reconnect. /// public static string Reconnect { get { @@ -4383,7 +4392,7 @@ public class Strings { } /// - /// 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 { @@ -4392,7 +4401,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Recursion ähnelt. + /// Looks up a localized string similar to Recursion. /// public static string Recursion { get { @@ -4401,7 +4410,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Red ähnelt. + /// Looks up a localized string similar to Red. /// public static string Red { get { @@ -4410,7 +4419,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect clipboard ähnelt. + /// Looks up a localized string similar to Redirect clipboard. /// public static string RedirectClipboard { get { @@ -4419,7 +4428,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect devices ähnelt. + /// Looks up a localized string similar to Redirect devices. /// public static string RedirectDevices { get { @@ -4428,7 +4437,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect drives ähnelt. + /// Looks up a localized string similar to Redirect drives. /// public static string RedirectDrives { get { @@ -4437,7 +4446,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect ports ähnelt. + /// Looks up a localized string similar to Redirect ports. /// public static string RedirectPorts { get { @@ -4446,7 +4455,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect printers ähnelt. + /// Looks up a localized string similar to Redirect printers. /// public static string RedirectPrinters { get { @@ -4455,7 +4464,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect smartcards ähnelt. + /// Looks up a localized string similar to Redirect smartcards. /// public static string RedirectSmartcards { get { @@ -4464,7 +4473,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. + /// Looks up a localized string similar to Refresh. /// public static string Refresh { get { @@ -4473,7 +4482,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Release ähnelt. + /// Looks up a localized string similar to Release. /// public static string Release { get { @@ -4482,7 +4491,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Release & Renew ähnelt. + /// Looks up a localized string similar to Release & Renew. /// public static string ReleaseRenew { get { @@ -4491,7 +4500,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remaining time ähnelt. + /// Looks up a localized string similar to Remaining time. /// public static string RemainingTime { get { @@ -4500,7 +4509,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote audio ähnelt. + /// Looks up a localized string similar to Remote audio. /// public static string RemoteAudio { get { @@ -4509,7 +4518,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote audio playback ähnelt. + /// Looks up a localized string similar to Remote audio playback. /// public static string RemoteAudioPlayback { get { @@ -4518,7 +4527,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote audio recording ähnelt. + /// Looks up a localized string similar to Remote audio recording. /// public static string RemoteAudioRecording { get { @@ -4527,7 +4536,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote console ähnelt. + /// Looks up a localized string similar to Remote console. /// public static string RemoteConsole { get { @@ -4536,7 +4545,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt. + /// Looks up a localized string similar to Remote Desktop. /// public static string RemoteDesktop { get { @@ -4545,7 +4554,7 @@ public class Strings { } /// - /// 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 { @@ -4554,7 +4563,7 @@ public class Strings { } /// - /// 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 { @@ -4563,7 +4572,7 @@ public class Strings { } /// - /// 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 { @@ -4572,7 +4581,7 @@ public class Strings { } /// - /// 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 { @@ -4581,7 +4590,7 @@ public class Strings { } /// - /// 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 { @@ -4590,7 +4599,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Socket closed. ähnelt. + /// Looks up a localized string similar to Socket closed.. /// public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE { get { @@ -4599,7 +4608,7 @@ public class Strings { } /// - /// 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 { @@ -4608,7 +4617,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Decompression error. ähnelt. + /// Looks up a localized string similar to Decompression error.. /// public static string RemoteDesktopDisconnectReason_ClientDecompressionError { get { @@ -4617,7 +4626,7 @@ public class Strings { } /// - /// 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 { @@ -4626,7 +4635,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Decryption error. ähnelt. + /// Looks up a localized string similar to Decryption error.. /// public static string RemoteDesktopDisconnectReason_DecryptionError { get { @@ -4635,7 +4644,7 @@ public class Strings { } /// - /// 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 { @@ -4644,7 +4653,7 @@ public class Strings { } /// - /// 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 { @@ -4653,7 +4662,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Encryption error. ähnelt. + /// Looks up a localized string similar to Encryption error.. /// public static string RemoteDesktopDisconnectReason_EncryptionError { get { @@ -4662,7 +4671,7 @@ public class Strings { } /// - /// 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 { @@ -4671,7 +4680,7 @@ public class Strings { } /// - /// 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 { @@ -4680,7 +4689,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Internal error. ähnelt. + /// Looks up a localized string similar to Internal error.. /// public static string RemoteDesktopDisconnectReason_InternalError { get { @@ -4689,7 +4698,7 @@ public class Strings { } /// - /// 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 { @@ -4698,7 +4707,7 @@ public class Strings { } /// - /// 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 { @@ -4707,7 +4716,7 @@ public class Strings { } /// - /// 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 { @@ -4716,7 +4725,7 @@ public class Strings { } /// - /// 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 { @@ -4725,7 +4734,7 @@ public class Strings { } /// - /// 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 { @@ -4734,7 +4743,7 @@ public class Strings { } /// - /// 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 { @@ -4743,7 +4752,7 @@ public class Strings { } /// - /// 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 { @@ -4752,7 +4761,7 @@ public class Strings { } /// - /// 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 { @@ -4761,7 +4770,7 @@ public class Strings { } /// - /// 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 { @@ -4770,7 +4779,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Local disconnection. ähnelt. + /// Looks up a localized string similar to Local disconnection.. /// public static string RemoteDesktopDisconnectReason_LocalNotError { get { @@ -4779,7 +4788,7 @@ public class Strings { } /// - /// 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 { @@ -4788,7 +4797,7 @@ public class Strings { } /// - /// 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 { @@ -4797,7 +4806,7 @@ public class Strings { } /// - /// 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 { @@ -4806,7 +4815,7 @@ public class Strings { } /// - /// 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 { @@ -4815,7 +4824,7 @@ public class Strings { } /// - /// 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 { @@ -4824,7 +4833,7 @@ public class Strings { } /// - /// 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 { @@ -4833,7 +4842,7 @@ public class Strings { } /// - /// 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 { @@ -4842,7 +4851,7 @@ public class Strings { } /// - /// 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 { @@ -4851,7 +4860,7 @@ public class Strings { } /// - /// 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 { @@ -4860,7 +4869,7 @@ public class Strings { } /// - /// 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 { @@ -4869,7 +4878,7 @@ public class Strings { } /// - /// 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 { @@ -4878,7 +4887,7 @@ public class Strings { } /// - /// 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 { @@ -4887,7 +4896,7 @@ public class Strings { } /// - /// 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 { @@ -4896,7 +4905,7 @@ public class Strings { } /// - /// 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 { @@ -4905,7 +4914,7 @@ public class Strings { } /// - /// 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 { @@ -4914,7 +4923,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Login failed. ähnelt. + /// Looks up a localized string similar to Login failed.. /// public static string RemoteDesktopDisconnectReason_SslErrLogonFailure { get { @@ -4923,7 +4932,7 @@ public class Strings { } /// - /// 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 { @@ -4932,7 +4941,7 @@ public class Strings { } /// - /// 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 { @@ -4941,7 +4950,7 @@ public class Strings { } /// - /// 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 { @@ -4950,7 +4959,7 @@ public class Strings { } /// - /// 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 { @@ -4959,7 +4968,7 @@ public class Strings { } /// - /// 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 { @@ -4968,7 +4977,7 @@ public class Strings { } /// - /// 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 { @@ -4977,7 +4986,7 @@ public class Strings { } /// - /// 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 { @@ -4986,7 +4995,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout occurred. ähnelt. + /// Looks up a localized string similar to Timeout occurred.. /// public static string RemoteDesktopDisconnectReason_TimeoutOccurred { get { @@ -4995,7 +5004,7 @@ public class Strings { } /// - /// 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 { @@ -5004,7 +5013,7 @@ public class Strings { } /// - /// 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 { @@ -5013,7 +5022,7 @@ public class Strings { } /// - /// 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 { @@ -5022,7 +5031,7 @@ public class Strings { } /// - /// 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 { @@ -5031,7 +5040,7 @@ public class Strings { } /// - /// 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 { @@ -5040,7 +5049,7 @@ public class Strings { } /// - /// 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 { @@ -5049,7 +5058,7 @@ public class Strings { } /// - /// 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 { @@ -5058,7 +5067,7 @@ public class Strings { } /// - /// 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 { @@ -5067,7 +5076,7 @@ public class Strings { } /// - /// 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 { @@ -5076,7 +5085,7 @@ public class Strings { } /// - /// 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 { @@ -5085,7 +5094,7 @@ public class Strings { } /// - /// 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 { @@ -5094,7 +5103,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote IP address ähnelt. + /// Looks up a localized string similar to Remote IP address. /// public static string RemoteIPAddress { get { @@ -5103,7 +5112,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote port ähnelt. + /// Looks up a localized string similar to Remote port. /// public static string RemotePort { get { @@ -5112,7 +5121,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Renew ähnelt. + /// Looks up a localized string similar to Renew. /// public static string Renew { get { @@ -5121,7 +5130,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Repeat ähnelt. + /// Looks up a localized string similar to Repeat. /// public static string Repeat { get { @@ -5130,7 +5139,7 @@ public class Strings { } /// - /// 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 ReportAnIssueOrCreateAFeatureRequest { get { @@ -5139,7 +5148,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reset ähnelt. + /// Looks up a localized string similar to Reset. /// public static string Reset { get { @@ -5148,8 +5157,8 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die If you have forgotten your password and want to start over, delete the following file and restart the application. - ///Path: "{0}" ähnelt. + /// Looks up a localized string similar to If you have forgotten your password and want to start over, delete the following file and restart the application. + ///Path: "{0}". /// public static string ResetCredentialsMessage { get { @@ -5158,7 +5167,7 @@ public class Strings { } /// - /// 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 { @@ -5167,7 +5176,7 @@ public class Strings { } /// - /// 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 { @@ -5176,7 +5185,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Resolve hostname ähnelt. + /// Looks up a localized string similar to Resolve hostname. /// public static string ResolveHostname { get { @@ -5185,7 +5194,7 @@ public class Strings { } /// - /// 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 { @@ -5194,7 +5203,7 @@ public class Strings { } /// - /// 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 { @@ -5203,7 +5212,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Resolve PTR ähnelt. + /// Looks up a localized string similar to Resolve PTR. /// public static string ResolvePTR { get { @@ -5212,7 +5221,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Resources ähnelt. + /// Looks up a localized string similar to Resources. /// public static string Resources { get { @@ -5221,7 +5230,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Responses ähnelt. + /// Looks up a localized string similar to Responses. /// public static string Responses { get { @@ -5230,7 +5239,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart ähnelt. + /// Looks up a localized string similar to Restart. /// public static string Restart { get { @@ -5239,7 +5248,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart now ähnelt. + /// Looks up a localized string similar to Restart now. /// public static string RestartNow { get { @@ -5248,7 +5257,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart required ähnelt. + /// Looks up a localized string similar to Restart required. /// public static string RestartRequired { get { @@ -5257,7 +5266,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Some settings are applied only after restarting the application! ähnelt. + /// Looks up a localized string similar to Some settings are applied only after restarting the application!. /// public static string RestartRequiredSettingsChangedMessage { get { @@ -5266,7 +5275,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart session ähnelt. + /// Looks up a localized string similar to Restart session. /// public static string RestartSession { get { @@ -5275,7 +5284,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart the application so that all settings are applied! ähnelt. + /// Looks up a localized string similar to Restart the application so that all settings are applied!. /// public static string RestartTheApplicationSoThatAllChangesAreApplied { get { @@ -5284,7 +5293,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Result ähnelt. + /// Looks up a localized string similar to Result. /// public static string Result { get { @@ -5293,7 +5302,16 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Retries ähnelt. + /// Looks up a localized string similar to Resume. + /// + public static string Resume { + get { + return ResourceManager.GetString("Resume", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retries. /// public static string Retries { get { @@ -5302,7 +5320,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Rlogin ähnelt. + /// Looks up a localized string similar to Rlogin. /// public static string Rlogin { get { @@ -5311,7 +5329,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Rlogin port ähnelt. + /// Looks up a localized string similar to Rlogin port. /// public static string RloginPort { get { @@ -5320,7 +5338,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Route ähnelt. + /// Looks up a localized string similar to Route. /// public static string Route { get { @@ -5329,7 +5347,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Routing ähnelt. + /// Looks up a localized string similar to Routing. /// public static string Routing { get { @@ -5338,7 +5356,7 @@ public class Strings { } /// - /// 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 { @@ -5347,7 +5365,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Save ähnelt. + /// Looks up a localized string similar to Save. /// public static string Save { get { @@ -5356,7 +5374,7 @@ public class Strings { } /// - /// 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 { @@ -5365,7 +5383,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Scan ähnelt. + /// Looks up a localized string similar to Scan. /// public static string Scan { get { @@ -5374,7 +5392,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Scanned ähnelt. + /// Looks up a localized string similar to Scanned. /// public static string Scanned { get { @@ -5383,7 +5401,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Search ähnelt. + /// Looks up a localized string similar to Search. /// public static string Search { get { @@ -5392,7 +5410,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Search... ähnelt. + /// Looks up a localized string similar to Search.... /// public static string SearchDots { get { @@ -5401,7 +5419,7 @@ public class Strings { } /// - /// 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 { @@ -5410,7 +5428,7 @@ public class Strings { } /// - /// 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 { @@ -5419,7 +5437,7 @@ public class Strings { } /// - /// 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 { @@ -5428,7 +5446,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Searching for networks... ähnelt. + /// Looks up a localized string similar to Searching for networks.... /// public static string SearchingForNetworksDots { get { @@ -5437,7 +5455,7 @@ public class Strings { } /// - /// 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 { @@ -5446,7 +5464,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Secondary DNS server ähnelt. + /// Looks up a localized string similar to Secondary DNS server. /// public static string SecondaryDNSServer { get { @@ -5455,7 +5473,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Security ähnelt. + /// Looks up a localized string similar to Security. /// public static string Security { get { @@ -5464,7 +5482,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select a profile... ähnelt. + /// Looks up a localized string similar to Select a profile.... /// public static string SelectAProfileDots { get { @@ -5473,7 +5491,7 @@ public class Strings { } /// - /// 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 { @@ -5482,7 +5500,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Selected ähnelt. + /// Looks up a localized string similar to Selected. /// public static string Selected { get { @@ -5491,7 +5509,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are overwritten. ähnelt. + /// Looks up a localized string similar to The selected settings are overwritten.. /// public static string SelectedSettingsAreOverwritten { get { @@ -5500,7 +5518,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are reset. ähnelt. + /// Looks up a localized string similar to The selected settings are reset.. /// public static string SelectedSettingsAreReset { get { @@ -5509,7 +5527,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to export: ähnelt. + /// Looks up a localized string similar to Select the settings you want to export:. /// public static string SelectTheSettingsYouWantToExport { get { @@ -5518,7 +5536,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to import: ähnelt. + /// Looks up a localized string similar to Select the settings you want to import:. /// public static string SelectTheSettingsYouWantToImport { get { @@ -5527,7 +5545,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to reset: ähnelt. + /// Looks up a localized string similar to Select the settings you want to reset:. /// public static string SelectTheSettingsYouWantToReset { get { @@ -5536,7 +5554,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Send ähnelt. + /// Looks up a localized string similar to Send. /// public static string Send { get { @@ -5545,7 +5563,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Serial ähnelt. + /// Looks up a localized string similar to Serial. /// public static string Serial { get { @@ -5554,7 +5572,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SerialLine ähnelt. + /// Looks up a localized string similar to SerialLine. /// public static string SerialLine { get { @@ -5563,7 +5581,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Service ähnelt. + /// Looks up a localized string similar to Service. /// public static string Service { get { @@ -5572,7 +5590,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password ähnelt. + /// Looks up a localized string similar to Set Master Password. /// public static string SetMasterPassword { get { @@ -5581,7 +5599,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password... ähnelt. + /// Looks up a localized string similar to Set Master Password.... /// public static string SetMasterPasswordDots { get { @@ -5590,7 +5608,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings ähnelt. + /// Looks up a localized string similar to Settings. /// public static string Settings { get { @@ -5599,7 +5617,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!) ähnelt. + /// Looks up a localized string similar to The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!). /// public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage { get { @@ -5608,7 +5626,7 @@ public class Strings { } /// - /// 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 { @@ -5617,7 +5635,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully exported! ähnelt. + /// Looks up a localized string similar to Settings successfully exported!. /// public static string SettingsSuccessfullyExported { get { @@ -5626,7 +5644,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully imported! ähnelt. + /// Looks up a localized string similar to Settings successfully imported!. /// public static string SettingsSuccessfullyImported { get { @@ -5635,7 +5653,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully reset! ähnelt. + /// Looks up a localized string similar to Settings successfully reset!. /// public static string SettingsSuccessfullyReset { get { @@ -5644,7 +5662,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show ähnelt. + /// Looks up a localized string similar to Show. /// public static string Show { get { @@ -5653,7 +5671,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show closed ports ähnelt. + /// Looks up a localized string similar to Show closed ports. /// public static string ShowClosedPorts { get { @@ -5662,7 +5680,7 @@ public class Strings { } /// - /// 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 { @@ -5671,7 +5689,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show error message ähnelt. + /// Looks up a localized string similar to Show error message. /// public static string ShowErrorMessage { get { @@ -5680,7 +5698,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show local licenses ähnelt. + /// Looks up a localized string similar to Show local licenses. /// public static string ShowLocalLicenses { get { @@ -5689,7 +5707,7 @@ public class Strings { } /// - /// 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 { @@ -5698,7 +5716,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show scan result for all IP addresses ähnelt. + /// Looks up a localized string similar to Show scan result for all IP addresses. /// public static string ShowScanResultForAllIPAddresses { get { @@ -5707,7 +5725,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show statistics ähnelt. + /// Looks up a localized string similar to Show statistics. /// public static string ShowStatistics { get { @@ -5716,7 +5734,7 @@ public class Strings { } /// - /// 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 { @@ -5725,7 +5743,7 @@ public class Strings { } /// - /// 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 { @@ -5734,7 +5752,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show window on network change ähnelt. + /// Looks up a localized string similar to Show window on network change. /// public static string ShowWindowOnNetworkChange { get { @@ -5743,7 +5761,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt. + /// Looks up a localized string similar to Sienna. /// public static string Sienna { get { @@ -5752,7 +5770,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Signal strength ähnelt. + /// Looks up a localized string similar to Signal strength. /// public static string SignalStrength { get { @@ -5761,7 +5779,7 @@ public class Strings { } /// - /// 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 { @@ -5770,7 +5788,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SNMP ähnelt. + /// Looks up a localized string similar to SNMP. /// public static string SNMP { get { @@ -5779,7 +5797,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Socket ähnelt. + /// Looks up a localized string similar to Socket. /// public static string Socket { get { @@ -5788,7 +5806,7 @@ public class Strings { } /// - /// 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 { @@ -5797,7 +5815,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Speed ähnelt. + /// Looks up a localized string similar to Speed. /// public static string Speed { get { @@ -5806,7 +5824,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SSH ähnelt. + /// Looks up a localized string similar to SSH. /// public static string SSH { get { @@ -5815,7 +5833,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SSH port ähnelt. + /// Looks up a localized string similar to SSH port. /// public static string SSHPort { get { @@ -5824,7 +5842,7 @@ public class Strings { } /// - /// 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 StarForkTheProjectOnGitHub { get { @@ -5833,7 +5851,7 @@ public class Strings { } /// - /// 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 { @@ -5842,7 +5860,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Start time ähnelt. + /// Looks up a localized string similar to Start time. /// public static string StartTime { get { @@ -5851,7 +5869,7 @@ public class Strings { } /// - /// 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 { @@ -5860,7 +5878,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die State ähnelt. + /// Looks up a localized string similar to State. /// public static string State { get { @@ -5869,7 +5887,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Static IPv4 address ähnelt. + /// Looks up a localized string similar to Static IPv4 address. /// public static string StaticIPv4Address { get { @@ -5878,7 +5896,7 @@ public class Strings { } /// - /// 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 { @@ -5887,7 +5905,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Statistics ähnelt. + /// Looks up a localized string similar to Statistics. /// public static string Statistics { get { @@ -5896,7 +5914,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Status ähnelt. + /// Looks up a localized string similar to Status. /// public static string Status { get { @@ -5905,7 +5923,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt. + /// Looks up a localized string similar to Steel. /// public static string Steel { get { @@ -5914,7 +5932,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet ähnelt. + /// Looks up a localized string similar to Subnet. /// public static string Subnet { get { @@ -5923,7 +5941,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet 1 ähnelt. + /// Looks up a localized string similar to Subnet 1. /// public static string Subnet1 { get { @@ -5932,7 +5950,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet 2 ähnelt. + /// Looks up a localized string similar to Subnet 2. /// public static string Subnet2 { get { @@ -5941,7 +5959,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet Calculator ähnelt. + /// Looks up a localized string similar to Subnet Calculator. /// public static string SubnetCalculator { get { @@ -5950,7 +5968,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask ähnelt. + /// Looks up a localized string similar to Subnetmask. /// public static string Subnetmask { get { @@ -5959,7 +5977,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask or CIDR ähnelt. + /// Looks up a localized string similar to Subnetmask or CIDR. /// public static string SubnetmaskOrCIDR { get { @@ -5968,7 +5986,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnetting ähnelt. + /// Looks up a localized string similar to Subnetting. /// public static string Subnetting { get { @@ -5977,7 +5995,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Success! ähnelt. + /// Looks up a localized string similar to Success!. /// public static string Success { get { @@ -5986,7 +6004,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Tags ähnelt. + /// Looks up a localized string similar to Tags. /// public static string Tags { get { @@ -5995,7 +6013,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Taupe ähnelt. + /// Looks up a localized string similar to Taupe. /// public static string Taupe { get { @@ -6004,7 +6022,7 @@ public class Strings { } /// - /// 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 { @@ -6013,7 +6031,7 @@ public class Strings { } /// - /// 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 { @@ -6022,7 +6040,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. + /// Looks up a localized string similar to Closed. /// public static string TcpState_Closed { get { @@ -6031,7 +6049,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die CloseWait ähnelt. + /// Looks up a localized string similar to CloseWait. /// public static string TcpState_CloseWait { get { @@ -6040,7 +6058,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closing ähnelt. + /// Looks up a localized string similar to Closing. /// public static string TcpState_Closing { get { @@ -6049,7 +6067,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DeleteTcb ähnelt. + /// Looks up a localized string similar to DeleteTcb. /// public static string TcpState_DeleteTcb { get { @@ -6058,7 +6076,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Established ähnelt. + /// Looks up a localized string similar to Established. /// public static string TcpState_Established { get { @@ -6067,7 +6085,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die FinWait1 ähnelt. + /// Looks up a localized string similar to FinWait1. /// public static string TcpState_FinWait1 { get { @@ -6076,7 +6094,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die FinWait2 ähnelt. + /// Looks up a localized string similar to FinWait2. /// public static string TcpState_FinWait2 { get { @@ -6085,7 +6103,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die LastAck ähnelt. + /// Looks up a localized string similar to LastAck. /// public static string TcpState_LastAck { get { @@ -6094,7 +6112,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Listen ähnelt. + /// Looks up a localized string similar to Listen. /// public static string TcpState_Listen { get { @@ -6103,7 +6121,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SynReceived ähnelt. + /// Looks up a localized string similar to SynReceived. /// public static string TcpState_SynReceived { get { @@ -6112,7 +6130,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SynSent ähnelt. + /// Looks up a localized string similar to SynSent. /// public static string TcpState_SynSent { get { @@ -6121,7 +6139,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TimeWait ähnelt. + /// Looks up a localized string similar to TimeWait. /// public static string TcpState_TimeWait { get { @@ -6130,7 +6148,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Unkown ähnelt. + /// Looks up a localized string similar to Unkown. /// public static string TcpState_Unknown { get { @@ -6139,7 +6157,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Teal ähnelt. + /// Looks up a localized string similar to Teal. /// public static string Teal { get { @@ -6148,7 +6166,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Telnet ähnelt. + /// Looks up a localized string similar to Telnet. /// public static string Telnet { get { @@ -6157,7 +6175,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Telnet port ähnelt. + /// Looks up a localized string similar to Telnet port. /// public static string TelnetPort { get { @@ -6166,7 +6184,7 @@ public class Strings { } /// - /// 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 { @@ -6175,7 +6193,7 @@ public class Strings { } /// - /// 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 { @@ -6184,7 +6202,7 @@ public class Strings { } /// - /// 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 { @@ -6193,7 +6211,7 @@ public class Strings { } /// - /// 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 { @@ -6202,7 +6220,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Theme ähnelt. + /// Looks up a localized string similar to Theme. /// public static string Theme { get { @@ -6211,7 +6229,7 @@ public class Strings { } /// - /// 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 { @@ -6220,7 +6238,7 @@ public class Strings { } /// - /// 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 { @@ -6229,7 +6247,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This feature is only available in Windows 10 / Server 2016 or later! ähnelt. + /// Looks up a localized string similar to This feature is only available in Windows 10 / Server 2016 or later!. /// public static string ThisFeatureIsOnlyAvailableInWindows10Server2016OrLater { get { @@ -6238,7 +6256,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Threads ähnelt. + /// Looks up a localized string similar to Threads. /// public static string Threads { get { @@ -6247,7 +6265,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC ähnelt. + /// Looks up a localized string similar to TigerVNC. /// public static string TigerVNC { get { @@ -6256,7 +6274,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC location... ähnelt. + /// Looks up a localized string similar to TigerVNC location.... /// public static string TigerVNCLocationDots { get { @@ -6265,7 +6283,7 @@ public class Strings { } /// - /// 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 { @@ -6274,7 +6292,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time ähnelt. + /// Looks up a localized string similar to Time. /// public static string Time { get { @@ -6283,7 +6301,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time 1 ähnelt. + /// Looks up a localized string similar to Time 1. /// public static string Time1 { get { @@ -6292,7 +6310,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time 2 ähnelt. + /// Looks up a localized string similar to Time 2. /// public static string Time2 { get { @@ -6301,7 +6319,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time 3 ähnelt. + /// Looks up a localized string similar to Time 3. /// public static string Time3 { get { @@ -6310,7 +6328,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time in seconds how long the window should be displayed ähnelt. + /// Looks up a localized string similar to Time in seconds how long the window should be displayed. /// public static string TimeInSecondsHowLongTheWindowShouldBeDisplayed { get { @@ -6319,7 +6337,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout ähnelt. + /// Looks up a localized string similar to Timeout. /// public static string Timeout { get { @@ -6328,7 +6346,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout (ms) ähnelt. + /// Looks up a localized string similar to Timeout (ms). /// public static string TimeoutMS { get { @@ -6337,7 +6355,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout on SNMP query. ähnelt. + /// Looks up a localized string similar to Timeout on SNMP query.. /// public static string TimeoutOnSNMPQuery { get { @@ -6346,7 +6364,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout (s) ähnelt. + /// Looks up a localized string similar to Timeout (s). /// public static string TimeoutS { get { @@ -6355,7 +6373,7 @@ public class Strings { } /// - /// 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 { @@ -6364,7 +6382,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timestamp ähnelt. + /// Looks up a localized string similar to Timestamp. /// public static string Timestamp { get { @@ -6373,7 +6391,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time to wait between each ping ähnelt. + /// Looks up a localized string similar to Time to wait between each ping. /// public static string TimeToWaitBetweenEachPing { get { @@ -6382,7 +6400,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hour(s) ähnelt. + /// Looks up a localized string similar to Hour(s). /// public static string TimeUnit_Hour { get { @@ -6391,7 +6409,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Minute(s) ähnelt. + /// Looks up a localized string similar to Minute(s). /// public static string TimeUnit_Minute { get { @@ -6400,7 +6418,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Second(s) ähnelt. + /// Looks up a localized string similar to Second(s). /// public static string TimeUnit_Second { get { @@ -6409,9 +6427,9 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Report an issue or create a feature request. + /// Looks up a localized string similar to Report an issue or create a feature request. /// - ///URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose ähnelt. + ///URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose. /// public static string ToolTip_GithubNewIssueUrl { get { @@ -6420,9 +6438,9 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Star/Fork the Project on Github. + /// Looks up a localized string similar to Star/Fork the Project on Github. /// - ///URL: https://github.com/BornToBeRoot/NETworkManager/ ähnelt. + ///URL: https://github.com/BornToBeRoot/NETworkManager/. /// public static string ToolTip_GitHubProjectUrl { get { @@ -6431,9 +6449,9 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Help translate the project on Transifex. + /// Looks up a localized string similar to Help translate the project on Transifex. /// - ///URL: https://transifex.com/BornToBeRoot/NETworkManager/ ähnelt. + ///URL: https://transifex.com/BornToBeRoot/NETworkManager/. /// public static string ToolTip_TransifexProjectUrl { get { @@ -6442,9 +6460,9 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Contact via Twitter. + /// Looks up a localized string similar to Contact via Twitter. /// - ///URL: https://twitter.com/BornToBeRoot_DE ähnelt. + ///URL: https://twitter.com/BornToBeRoot_DE. /// public static string ToolTip_TwitterContactUrl { get { @@ -6453,7 +6471,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Total bytes received ähnelt. + /// Looks up a localized string similar to Total bytes received. /// public static string TotalBytesReceived { get { @@ -6462,7 +6480,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Total bytes sent ähnelt. + /// Looks up a localized string similar to Total bytes sent. /// public static string TotalBytesSent { get { @@ -6471,7 +6489,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Total download ähnelt. + /// Looks up a localized string similar to Total download. /// public static string TotalDownload { get { @@ -6480,7 +6498,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Total upload ähnelt. + /// Looks up a localized string similar to Total upload. /// public static string TotalUpload { get { @@ -6489,7 +6507,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Trace ähnelt. + /// Looks up a localized string similar to Trace. /// public static string Trace { get { @@ -6498,7 +6516,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Traceroute ähnelt. + /// Looks up a localized string similar to Traceroute. /// public static string Traceroute { get { @@ -6507,7 +6525,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Transparency ähnelt. + /// Looks up a localized string similar to Transparency. /// public static string Transparency { get { @@ -6516,7 +6534,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Tray ähnelt. + /// Looks up a localized string similar to Tray. /// public static string Tray { get { @@ -6525,7 +6543,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TTL ähnelt. + /// Looks up a localized string similar to TTL. /// public static string TTL { get { @@ -6534,7 +6552,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Type ähnelt. + /// Looks up a localized string similar to Type. /// public static string Type { get { @@ -6543,7 +6561,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Unkown error! ähnelt. + /// Looks up a localized string similar to Unkown error!. /// public static string UnkownError { get { @@ -6552,7 +6570,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Untray / Bring window to front ähnelt. + /// Looks up a localized string similar to Untray / Bring window to front. /// public static string UntrayBringWindowToFront { get { @@ -6561,7 +6579,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt. + /// Looks up a localized string similar to Update. /// public static string Update { get { @@ -6570,7 +6588,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Upload ähnelt. + /// Looks up a localized string similar to Upload. /// public static string Upload { get { @@ -6579,7 +6597,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Uptime: ähnelt. + /// Looks up a localized string similar to Uptime:. /// public static string UptimeColon { get { @@ -6588,7 +6606,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die URL ähnelt. + /// Looks up a localized string similar to URL. /// public static string URL { get { @@ -6597,7 +6615,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use cache ähnelt. + /// Looks up a localized string similar to Use cache. /// public static string UseCache { get { @@ -6606,7 +6624,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use credentials ähnelt. + /// Looks up a localized string similar to Use credentials. /// public static string UseCredentials { get { @@ -6615,7 +6633,7 @@ public class Strings { } /// - /// 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 { @@ -6624,7 +6642,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use custom API ähnelt. + /// Looks up a localized string similar to Use custom API. /// public static string UseCustomAPI { get { @@ -6633,7 +6651,7 @@ public class Strings { } /// - /// 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 { @@ -6642,7 +6660,7 @@ public class Strings { } /// - /// 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 { @@ -6651,7 +6669,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use only TCP ähnelt. + /// Looks up a localized string similar to Use only TCP. /// public static string UseOnlyTCP { get { @@ -6660,7 +6678,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use resolver cache ähnelt. + /// Looks up a localized string similar to Use resolver cache. /// public static string UseResolverCache { get { @@ -6669,7 +6687,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die User interface locked! ähnelt. + /// Looks up a localized string similar to User interface locked!. /// public static string UserInterfaceLocked { get { @@ -6678,7 +6696,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. + /// Looks up a localized string similar to Username. /// public static string Username { get { @@ -6687,7 +6705,7 @@ public class Strings { } /// - /// 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 { @@ -6696,7 +6714,7 @@ public class Strings { } /// - /// 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 { @@ -6705,7 +6723,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die v1/v2c ähnelt. + /// Looks up a localized string similar to v1/v2c. /// public static string v1v2c { get { @@ -6714,7 +6732,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die v3 ähnelt. + /// Looks up a localized string similar to v3. /// public static string v3 { get { @@ -6723,7 +6741,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Validate ähnelt. + /// Looks up a localized string similar to Validate. /// public static string Validate { get { @@ -6732,7 +6750,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Validation failed! ähnelt. + /// Looks up a localized string similar to Validation failed!. /// public static string ValidationFailed { get { @@ -6741,7 +6759,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Vendor ähnelt. + /// Looks up a localized string similar to Vendor. /// public static string Vendor { get { @@ -6750,7 +6768,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Version ähnelt. + /// Looks up a localized string similar to Version. /// public static string Version { get { @@ -6759,7 +6777,7 @@ public class Strings { } /// - /// 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 { @@ -6768,7 +6786,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Violet ähnelt. + /// Looks up a localized string similar to Violet. /// public static string Violet { get { @@ -6777,7 +6795,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Visible applications ähnelt. + /// Looks up a localized string similar to Visible applications. /// public static string VisibleApplications { get { @@ -6786,7 +6804,7 @@ public class Strings { } /// - /// 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 { @@ -6795,7 +6813,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Visual styles ähnelt. + /// Looks up a localized string similar to Visual styles. /// public static string VisualStyles { get { @@ -6804,7 +6822,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt. + /// Looks up a localized string similar to Wake on LAN. /// public static string WakeOnLAN { get { @@ -6813,7 +6831,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Wake up ähnelt. + /// Looks up a localized string similar to Wake up. /// public static string WakeUp { get { @@ -6822,7 +6840,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Walk mode ähnelt. + /// Looks up a localized string similar to Walk mode. /// public static string WalkMode { get { @@ -6831,7 +6849,7 @@ public class Strings { } /// - /// 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_CouldNotResolvIPAddressForHostname { get { @@ -6840,7 +6858,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application. ähnelt. + /// Looks up a localized string similar to Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application.. /// public static string WarningMessage_SettingsGeneralAppearanceTransparency { get { @@ -6849,7 +6867,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Website ähnelt. + /// Looks up a localized string similar to Website. /// public static string Website { get { @@ -6858,7 +6876,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Welcome ähnelt. + /// Looks up a localized string similar to Welcome. /// public static string Welcome { get { @@ -6867,7 +6885,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die White ähnelt. + /// Looks up a localized string similar to White. /// public static string White { get { @@ -6876,7 +6894,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Whois ähnelt. + /// Looks up a localized string similar to Whois. /// public static string Whois { get { @@ -6885,7 +6903,7 @@ public class Strings { } /// - /// 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 { @@ -6894,7 +6912,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Wide Subnet ähnelt. + /// Looks up a localized string similar to Wide Subnet. /// public static string WideSubnet { get { @@ -6903,7 +6921,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Width ähnelt. + /// Looks up a localized string similar to Width. /// public static string Width { get { @@ -6912,7 +6930,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die WiFi ähnelt. + /// Looks up a localized string similar to WiFi. /// public static string WiFi { get { @@ -6921,7 +6939,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt. + /// Looks up a localized string similar to Window. /// public static string Window { get { @@ -6930,7 +6948,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Windows DNS settings ähnelt. + /// Looks up a localized string similar to Windows DNS settings. /// public static string WindowsDNSSettings { get { @@ -6939,7 +6957,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Wrong password! ähnelt. + /// Looks up a localized string similar to Wrong password!. /// public static string WrongPassword { get { @@ -6948,7 +6966,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credentials could not be decrypted with the given password. ähnelt. + /// Looks up a localized string similar to Credentials could not be decrypted with the given password.. /// public static string WrongPasswordDecryptionFailedMessage { get { @@ -6957,7 +6975,7 @@ public class Strings { } /// - /// 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 { @@ -6966,7 +6984,7 @@ public class Strings { } /// - /// 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 { @@ -6975,7 +6993,7 @@ public class Strings { } /// - /// 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 { @@ -6984,7 +7002,7 @@ public class Strings { } /// - /// 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 { @@ -6993,7 +7011,7 @@ public class Strings { } /// - /// 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 { @@ -7002,7 +7020,7 @@ public class Strings { } /// - /// 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 { @@ -7011,7 +7029,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt. + /// Looks up a localized string similar to Yellow. /// public static string Yellow { get { @@ -7020,7 +7038,7 @@ public class Strings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Yes ähnelt. + /// Looks up a localized string similar to Yes. /// public static string Yes { get { @@ -7029,7 +7047,7 @@ public class Strings { } /// - /// 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 { diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index a91829f32..85f7f3626 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -2462,4 +2462,10 @@ URL: https://github.com/BornToBeRoot/NETworkManager/issues/new/choose Add a host to monitor + + Pause + + + Resume + \ No newline at end of file diff --git a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs index f9fc6ebfc..3577e2484 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs @@ -1,26 +1,15 @@ using NETworkManager.Models.Network; using NETworkManager.Models.Settings; using System; -using System.Collections; using System.Linq; using System.Net; -using System.Net.Sockets; using System.Threading; using System.Windows; using System.Windows.Input; -using System.ComponentModel; using System.Diagnostics; using System.Windows.Threading; -using System.Windows.Data; -using Dragablz; -using NETworkManager.Controls; using NETworkManager.Utilities; using System.Collections.ObjectModel; -using System.Globalization; -using MahApps.Metro.Controls; -using MahApps.Metro.Controls.Dialogs; -using NETworkManager.Models.Export; -using NETworkManager.Views; namespace NETworkManager.ViewModels { @@ -256,24 +245,12 @@ public void OnLoaded() #endregion #region ICommands & Actions - /* - // Start - // Stop - // Delete - - - public ICommand PingCommand => new RelayCommand(p => PingAction(), Ping_CanExecute); - - private bool Ping_CanExecute(object paramter) => Application.Current.MainWindow != null && !((MetroWindow)Application.Current.MainWindow).IsAnyDialogOpen; + public ICommand PingCommand => new RelayCommand(p => PingAction()); private void PingAction() { - if (IsPingRunning) - StopPing(); - else - StartPing(); + Ping(); } - */ public ICommand CloseCommand => new RelayCommand(p => CloseAction()); @@ -284,6 +261,14 @@ private void CloseAction() #endregion #region Methods + private void Ping() + { + if (IsPingRunning) + StopPing(); + else + StartPing(); + } + private void StartPing() { IsPingRunning = true; diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index dc9a850e8..99006bc20 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -254,6 +254,8 @@ private void AddHostAction() // Add the hostname or ip address to the history AddHostToHistory(Host); + + Host = ""; } public ICommand AddHostProfileCommand => new RelayCommand(p => AddHostProfileAction()); diff --git a/Source/NETworkManager/ViewModels/PingViewModel.cs b/Source/NETworkManager/ViewModels/PingViewModel.cs index 750cde2f5..44ff39a31 100644 --- a/Source/NETworkManager/ViewModels/PingViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingViewModel.cs @@ -350,10 +350,7 @@ private void LoadSettings() private void PingAction() { - if (IsPingRunning) - StopPing(); - else - StartPing(); + Ping(); } public ICommand CopySelectedTimestampCommand => new RelayCommand(p => CopySelectedTimestampAction()); @@ -414,6 +411,14 @@ private void ExportAction() #endregion #region Methods + private void Ping() + { + if (IsPingRunning) + StopPing(); + else + StartPing(); + } + private async void StartPing() { DisplayStatusMessage = false; diff --git a/Source/NETworkManager/Views/PingMonitorHostView.xaml b/Source/NETworkManager/Views/PingMonitorHostView.xaml index c34ca9927..0d92a1f5c 100644 --- a/Source/NETworkManager/Views/PingMonitorHostView.xaml +++ b/Source/NETworkManager/Views/PingMonitorHostView.xaml @@ -3,14 +3,9 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:controls="clr-namespace:NETworkManager.Controls" - xmlns:validators="clr-namespace:NETworkManager.Validators" - xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls" xmlns:converters="clr-namespace:NETworkManager.Converters" xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks" - xmlns:mahAppsControls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro" xmlns:viewModels="clr-namespace:NETworkManager.ViewModels" - xmlns:network="clr-namespace:NETworkManager.Models.Network" xmlns:localization="clr-namespace:NETworkManager.Resources.Localization" Loaded="UserControl_Loaded" mc:Ignorable="d" d:DataContext="{d:DesignInstance viewModels:PingMonitorHostViewModel}"> @@ -36,9 +31,19 @@ - + + + + + + + + + + + - + @@ -51,15 +56,15 @@ - + - + - + @@ -70,10 +75,12 @@ - + + + @@ -107,18 +114,25 @@ - - + \ No newline at end of file From 9c64340d90799c7bb68d89c7d2580ebe3692e47f Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sun, 20 Oct 2019 00:11:58 +0200 Subject: [PATCH 11/13] View improved --- Source/NETworkManager/Views/PingMonitorHostView.xaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/NETworkManager/Views/PingMonitorHostView.xaml b/Source/NETworkManager/Views/PingMonitorHostView.xaml index 0d92a1f5c..5c151aec1 100644 --- a/Source/NETworkManager/Views/PingMonitorHostView.xaml +++ b/Source/NETworkManager/Views/PingMonitorHostView.xaml @@ -56,15 +56,15 @@ - + - + - + From cda44565548fd234f0cbebf1d373022f0ce0a042 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sun, 20 Oct 2019 00:20:37 +0200 Subject: [PATCH 12/13] Add host with enter key --- .../NETworkManager/ViewModels/PingMonitorViewModel.cs | 9 +++++++-- Source/NETworkManager/Views/PingMonitorView.xaml | 10 ++++++---- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs index 99006bc20..dc2b6be30 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorViewModel.cs @@ -254,11 +254,16 @@ private void AddHostAction() // Add the hostname or ip address to the history AddHostToHistory(Host); - + Host = ""; } - public ICommand AddHostProfileCommand => new RelayCommand(p => AddHostProfileAction()); + public ICommand AddHostProfileCommand => new RelayCommand(p => AddHostProfileAction(), AddHostProfile_CanExecute); + + private bool AddHostProfile_CanExecute(object obj) + { + return SelectedProfile != null; + } private void AddHostProfileAction() { diff --git a/Source/NETworkManager/Views/PingMonitorView.xaml b/Source/NETworkManager/Views/PingMonitorView.xaml index d51616ef3..4ee7c2fb1 100644 --- a/Source/NETworkManager/Views/PingMonitorView.xaml +++ b/Source/NETworkManager/Views/PingMonitorView.xaml @@ -143,7 +143,11 @@ - + + + + + @@ -184,13 +188,11 @@ - + From dcf0cb6a4e42a1f9271cdd0c12d553f32728f5e7 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sun, 20 Oct 2019 00:30:27 +0200 Subject: [PATCH 13/13] Stop ping on network exception --- .../ViewModels/PingMonitorHostViewModel.cs | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs index 3577e2484..000c1df57 100644 --- a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs +++ b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs @@ -303,24 +303,18 @@ private void StartPing() Hostname = Host }; - ping.PingReceived += Ping_PingReceived; - //ping.PingCompleted += Ping_PingCompleted; - //ping.PingException += Ping_PingException; + ping.PingReceived += Ping_PingReceived; + ping.PingException += Ping_PingException; ping.UserHasCanceled += Ping_UserHasCanceled; ping.SendAsync(IPAddress, _cancellationTokenSource.Token); } - + private void StopPing() { _cancellationTokenSource?.Cancel(); } - private void UserHasCanceled() - { - PingFinished(); - } - private void PingFinished() { IsPingRunning = false; @@ -393,7 +387,12 @@ private void Ping_PingReceived(object sender, PingReceivedArgs e) private void Ping_UserHasCanceled(object sender, EventArgs e) { - UserHasCanceled(); + PingFinished(); + } + + private void Ping_PingException(object sender, PingExceptionArgs e) + { + PingFinished(); } private void DispatcherTimer_Tick(object sender, EventArgs e)