From 3f2ffea1f446681b51b834513bd2af254ee2b3a1 Mon Sep 17 00:00:00 2001 From: Riley McArdle Date: Tue, 17 May 2011 03:27:39 -0500 Subject: [PATCH] Added a language selection option so users can override the language if they don't want it automatically detected. --- mRemoteV1/App/App.SupportedCultures.vb | 66 + mRemoteV1/CHANGELOG.TXT | 1 + mRemoteV1/Forms/frmMain.vb | 5 + mRemoteV1/My Project/Resources.Designer.vb | 1291 ++++++++++---------- mRemoteV1/My Project/Resources.resx | 9 + mRemoteV1/My Project/Settings.Designer.vb | 32 +- mRemoteV1/My Project/Settings.settings | 6 + mRemoteV1/UI/UI.Window.Options.resx | 3 + mRemoteV1/UI/UI.Window.Options.vb | 736 +++++------ mRemoteV1/app.config | 13 + mRemoteV1/mRemoteV1.vbproj | 3 +- 11 files changed, 1186 insertions(+), 979 deletions(-) create mode 100644 mRemoteV1/App/App.SupportedCultures.vb diff --git a/mRemoteV1/App/App.SupportedCultures.vb b/mRemoteV1/App/App.SupportedCultures.vb new file mode 100644 index 00000000..8a9204c8 --- /dev/null +++ b/mRemoteV1/App/App.SupportedCultures.vb @@ -0,0 +1,66 @@ +Namespace App + Public Class SupportedCultures + Inherits Dictionary(Of String, String) + + Private Sub New() + Dim CultureInfo As Globalization.CultureInfo + For Each CultureName As String In My.Settings.SupportedUICultures.Split(",") + Try + CultureInfo = New Globalization.CultureInfo(CultureName.Trim) + Add(CultureInfo.Name, CultureInfo.NativeName) + Catch ex As Exception + Debug.Print(String.Format("An exception occurred while adding the culture '{0}' to the list of supported cultures. {1}", CultureName, ex.ToString)) + End Try + Next + End Sub + + Private Shared _Instance As SupportedCultures = Nothing + Public Shared Sub InstantiateSingleton() + If _Instance Is Nothing Then + _Instance = New SupportedCultures + End If + End Sub + + Public Shared Function IsNameSupported(ByVal CultureName As String) As Boolean + Return _Instance.ContainsKey(CultureName) + End Function + + Public Shared Function IsNativeNameSupported(ByVal CultureNativeName As String) As Boolean + Return _Instance.ContainsValue(CultureNativeName) + End Function + + Public Shared ReadOnly Property CultureName(ByVal CultureNativeName As String) As String + Get + Dim Names(_Instance.Count) As String + Dim NativeNames(_Instance.Count) As String + + _Instance.Keys.CopyTo(Names, 0) + _Instance.Values.CopyTo(NativeNames, 0) + + For Index As Integer = 0 To _Instance.Count + If NativeNames(Index) = CultureNativeName Then + Return Names(Index) + End If + Next + + Throw New System.Collections.Generic.KeyNotFoundException() + End Get + End Property + + Public Shared ReadOnly Property CultureNativeName(ByVal CultureName As String) As String + Get + Return _Instance.Item(CultureName) + End Get + End Property + + Public Shared ReadOnly Property CultureNativeNames() As List(Of String) + Get + Dim ValueList As List(Of String) = New List(Of String) + For Each Value As String In _Instance.Values + ValueList.Add(Value) + Next + Return ValueList + End Get + End Property + End Class +End Namespace diff --git a/mRemoteV1/CHANGELOG.TXT b/mRemoteV1/CHANGELOG.TXT index fe27124d..fcc3a86d 100644 --- a/mRemoteV1/CHANGELOG.TXT +++ b/mRemoteV1/CHANGELOG.TXT @@ -1,6 +1,7 @@ 1.67 (2011-XX-XX): Fixed migration of external tools configuration and panel layout from Local to Roaming folder. Disable ICA Hotkeys for Citrix connections. Fixes issue with international users. + Added a language selection option so users can override the language if they don't want it automatically detected. 1.66 (2011-05-02): Fixed connections not working diff --git a/mRemoteV1/Forms/frmMain.vb b/mRemoteV1/Forms/frmMain.vb index 3df6653f..c8577383 100644 --- a/mRemoteV1/Forms/frmMain.vb +++ b/mRemoteV1/Forms/frmMain.vb @@ -15,6 +15,11 @@ Public Class frmMain 'insert enable edition code here App.Editions.Spanlink.Enabled = False + App.SupportedCultures.InstantiateSingleton() + If Not My.Settings.OverrideUICulture = "" And App.SupportedCultures.IsNameSupported(My.Settings.OverrideUICulture) Then + Threading.Thread.CurrentThread.CurrentUICulture = New Globalization.CultureInfo(My.Settings.OverrideUICulture) + End If + ApplyLanguage() Debug.Print("---------------------------" & vbNewLine & "[START] - " & Now) diff --git a/mRemoteV1/My Project/Resources.Designer.vb b/mRemoteV1/My Project/Resources.Designer.vb index f0686c28..342eea60 100644 --- a/mRemoteV1/My Project/Resources.Designer.vb +++ b/mRemoteV1/My Project/Resources.Designer.vb @@ -1,10 +1,10 @@ '------------------------------------------------------------------------------ ' -' Dieser Code wurde von einem Tool generiert. -' Laufzeitversion:2.0.50727.4952 +' This code was generated by a tool. +' Runtime Version:2.0.50727.5444 ' -' Ä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. ' '------------------------------------------------------------------------------ @@ -15,12 +15,12 @@ Imports System Namespace My.Resources - '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. ''' - ''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + ''' A strongly-typed resource class, for looking up localized strings, etc. ''' - ''' Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + ''' Returns the cached ResourceManager instance used by this class. ''' _ Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager @@ -47,8 +47,8 @@ Namespace My.Resources End Property ''' - ''' Ü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. ''' _ Friend Property Culture() As Global.System.Globalization.CultureInfo @@ -754,7 +754,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die About ähnelt. + ''' Looks up a localized string similar to About. ''' Friend ReadOnly Property strAbout() As String Get @@ -763,7 +763,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Active ähnelt. + ''' Looks up a localized string similar to Active. ''' Friend ReadOnly Property strActive() As String Get @@ -772,7 +772,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Activity ähnelt. + ''' Looks up a localized string similar to Activity. ''' Friend ReadOnly Property strActivity() As String Get @@ -781,7 +781,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New Connection ähnelt. + ''' Looks up a localized string similar to New Connection. ''' Friend ReadOnly Property strAddConnection() As String Get @@ -790,7 +790,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New folder ähnelt. + ''' Looks up a localized string similar to New folder. ''' Friend ReadOnly Property strAddFolder() As String Get @@ -799,7 +799,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die AddNodeFromXML failed! ähnelt. + ''' Looks up a localized string similar to AddNodeFromXML failed!. ''' Friend ReadOnly Property strAddNodeFromXmlFailed() As String Get @@ -808,7 +808,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die AddNodesFromSQL failed! ähnelt. + ''' Looks up a localized string similar to AddNodesFromSQL failed!. ''' Friend ReadOnly Property strAddNodesFromSqlFailed() As String Get @@ -817,7 +817,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Allow only a single instance of the application (mRemoteNG restart required) ähnelt. + ''' Looks up a localized string similar to Allow only a single instance of the application (mRemoteNG restart required). ''' Friend ReadOnly Property strAllowOnlySingleInstance() As String Get @@ -826,7 +826,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Always ähnelt. + ''' Looks up a localized string similar to Always. ''' Friend ReadOnly Property strAlways() As String Get @@ -835,7 +835,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Always connect, even if authentication fails ähnelt. + ''' Looks up a localized string similar to Always connect, even if authentication fails. ''' Friend ReadOnly Property strAlwaysConnectEvenIfAuthFails() As String Get @@ -844,7 +844,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Always show panel selection dialog when opening connections ähnelt. + ''' Looks up a localized string similar to Always show panel selection dialog when opening connections. ''' Friend ReadOnly Property strAlwaysShowPanelSelection() As String Get @@ -853,7 +853,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Always show System Tray Icon ähnelt. + ''' Looks up a localized string similar to Always show System Tray Icon. ''' Friend ReadOnly Property strAlwaysShowSysTrayIcon() As String Get @@ -862,7 +862,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Aspect ähnelt. + ''' Looks up a localized string similar to Aspect. ''' Friend ReadOnly Property strAspect() As String Get @@ -871,7 +871,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Automatically get session information ähnelt. + ''' Looks up a localized string similar to Automatically get session information. ''' Friend ReadOnly Property strAutomaticallyGetSessionInfo() As String Get @@ -880,7 +880,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Auto Save every: ähnelt. + ''' Looks up a localized string similar to Auto Save every:. ''' Friend ReadOnly Property strAutoSaveEvery() As String Get @@ -889,7 +889,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Minutes (0 means disabled) ähnelt. + ''' Looks up a localized string similar to Minutes (0 means disabled). ''' Friend ReadOnly Property strAutoSaveMins() As String Get @@ -898,7 +898,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Current Version ähnelt. + ''' Looks up a localized string similar to Current Version. ''' Friend ReadOnly Property strAvailableVersion() As String Get @@ -907,7 +907,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Browse... ähnelt. + ''' Looks up a localized string similar to &Browse.... ''' Friend ReadOnly Property strButtonBrowse() As String Get @@ -916,7 +916,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Cancel ähnelt. + ''' Looks up a localized string similar to &Cancel. ''' Friend ReadOnly Property strButtonCancel() As String Get @@ -925,7 +925,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Change ähnelt. + ''' Looks up a localized string similar to Change. ''' Friend ReadOnly Property strButtonChange() As String Get @@ -934,7 +934,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Close ähnelt. + ''' Looks up a localized string similar to &Close. ''' Friend ReadOnly Property strButtonClose() As String Get @@ -943,7 +943,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Default Inheritance ähnelt. + ''' Looks up a localized string similar to Default Inheritance. ''' Friend ReadOnly Property strButtonDefaultInheritance() As String Get @@ -952,7 +952,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Default Properties ähnelt. + ''' Looks up a localized string similar to Default Properties. ''' Friend ReadOnly Property strButtonDefaultProperties() As String Get @@ -961,7 +961,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt. + ''' Looks up a localized string similar to Disconnect. ''' Friend ReadOnly Property strButtonDisconnect() As String Get @@ -970,7 +970,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Icon ähnelt. + ''' Looks up a localized string similar to Icon. ''' Friend ReadOnly Property strButtonIcon() As String Get @@ -979,7 +979,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Import ähnelt. + ''' Looks up a localized string similar to &Import. ''' Friend ReadOnly Property strButtonImport() As String Get @@ -988,7 +988,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Inheritance ähnelt. + ''' Looks up a localized string similar to Inheritance. ''' Friend ReadOnly Property strButtonInheritance() As String Get @@ -997,7 +997,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Launch PuTTY ähnelt. + ''' Looks up a localized string similar to Launch PuTTY. ''' Friend ReadOnly Property strButtonLaunchPutty() As String Get @@ -1006,7 +1006,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &New ähnelt. + ''' Looks up a localized string similar to &New. ''' Friend ReadOnly Property strButtonNew() As String Get @@ -1015,7 +1015,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &OK ähnelt. + ''' Looks up a localized string similar to &OK. ''' Friend ReadOnly Property strButtonOK() As String Get @@ -1024,7 +1024,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Properties ähnelt. + ''' Looks up a localized string similar to Properties. ''' Friend ReadOnly Property strButtonProperties() As String Get @@ -1033,7 +1033,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Scan ähnelt. + ''' Looks up a localized string similar to &Scan. ''' Friend ReadOnly Property strButtonScan() As String Get @@ -1042,7 +1042,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Stop ähnelt. + ''' Looks up a localized string similar to &Stop. ''' Friend ReadOnly Property strButtonStop() As String Get @@ -1051,7 +1051,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Test Proxy ähnelt. + ''' Looks up a localized string similar to Test Proxy. ''' Friend ReadOnly Property strButtonTestProxy() As String Get @@ -1060,8 +1060,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die You cannot import a normal connection file. - '''Please use File - Load Connections for normal connection files! ähnelt. + ''' Looks up a localized string similar to You cannot import a normal connection file. + '''Please use File - Load Connections for normal connection files!. ''' Friend ReadOnly Property strCannotImportNormalSessionFile() As String Get @@ -1070,7 +1070,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Cannot start Port Scan, incorrect IP format! ähnelt. + ''' Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!. ''' Friend ReadOnly Property strCannotStartPortScan() As String Get @@ -1079,7 +1079,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. + ''' Looks up a localized string similar to Appearance. ''' Friend ReadOnly Property strCategoryAppearance() As String Get @@ -1088,7 +1088,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt. + ''' Looks up a localized string similar to Connection. ''' Friend ReadOnly Property strCategoryConnection() As String Get @@ -1097,7 +1097,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt. + ''' Looks up a localized string similar to Credentials. ''' Friend ReadOnly Property strCategoryCredentials() As String Get @@ -1106,7 +1106,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Display ähnelt. + ''' Looks up a localized string similar to Display. ''' Friend ReadOnly Property strCategoryDisplay() As String Get @@ -1115,7 +1115,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Gateway ähnelt. + ''' Looks up a localized string similar to Gateway. ''' Friend ReadOnly Property strCategoryGateway() As String Get @@ -1124,7 +1124,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die General ähnelt. + ''' Looks up a localized string similar to General. ''' Friend ReadOnly Property strCategoryGeneral() As String Get @@ -1133,7 +1133,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Miscellaneous ähnelt. + ''' Looks up a localized string similar to Miscellaneous. ''' Friend ReadOnly Property strCategoryMiscellaneous() As String Get @@ -1142,7 +1142,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. + ''' Looks up a localized string similar to Protocol. ''' Friend ReadOnly Property strCategoryProtocol() As String Get @@ -1151,7 +1151,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Redirect ähnelt. + ''' Looks up a localized string similar to Redirect. ''' Friend ReadOnly Property strCategoryRedirect() As String Get @@ -1160,7 +1160,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Always show this screen at startup ähnelt. + ''' Looks up a localized string similar to Always show this screen at startup. ''' Friend ReadOnly Property strCcAlwaysShowScreen() As String Get @@ -1169,7 +1169,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. + ''' Looks up a localized string similar to Refresh. ''' Friend ReadOnly Property strCcCheckAgain() As String Get @@ -1178,7 +1178,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check failed! ähnelt. + ''' Looks up a localized string similar to Check failed!. ''' Friend ReadOnly Property strCcCheckFailed() As String Get @@ -1187,7 +1187,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check succeeded! ähnelt. + ''' Looks up a localized string similar to Check succeeded!. ''' Friend ReadOnly Property strCcCheckSucceeded() As String Get @@ -1196,10 +1196,10 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die The (RDP) Sessions feature requires that you have a registered copy of eolwtscom.dll on your system. + ''' Looks up a localized string similar to The (RDP) Sessions feature requires that you have a registered copy of eolwtscom.dll on your system. '''mRemoteNG ships with this component but will not register it automatically unless you run the setup package. '''To do register it manually do this: Open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\Program Files\mRemoteNG\eolwtscom.dll" (Where c:\Program Files\mRemoteNG\ is the path to your mRemoteNG installation). - '''If you are still not able to pass this check or use the (RDP) Session [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + '''If you are still not able to pass this check or use the (RDP) Session [rest of string was truncated]";. ''' Friend ReadOnly Property strCcEOLFailed() As String Get @@ -1208,7 +1208,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die EOLWTSCOM was found and seems to be registered properly. ähnelt. + ''' Looks up a localized string similar to EOLWTSCOM was found and seems to be registered properly.. ''' Friend ReadOnly Property strCcEOLOK() As String Get @@ -1217,10 +1217,10 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die To use the Gecko Rendering Engine you need to have XULrunner 1.8.1.x and the path to the installation set in your Options. + ''' Looks up a localized string similar to To use the Gecko Rendering Engine you need to have XULrunner 1.8.1.x and the path to the installation set in your Options. '''You can download XULrunner 1.8.1.3 here: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/ '''When you are finished downloading extract the package to a path of your choice. Then in mRemoteNG go to Tools - Options - Advanced and enter the correct path in the XULrunner path field. - '''If you are still not able to pass this check or use the Gecko Engine in mRemoteNG please c [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + '''If you are still not able to pass this check or use the Gecko Engine in mRemoteNG please c [rest of string was truncated]";. ''' Friend ReadOnly Property strCcGeckoFailed() As String Get @@ -1229,7 +1229,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die XULrunner was found and seems to be installed properly. ähnelt. + ''' Looks up a localized string similar to XULrunner was found and seems to be installed properly.. ''' Friend ReadOnly Property strCcGeckoOK() As String Get @@ -1238,9 +1238,9 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die ICA requires that the XenDesktop Online Plugin is installed and that the wfica.ocx library is registered. You can download the client here: http://www.citrix.com/download/ + ''' Looks up a localized string similar to ICA requires that the XenDesktop Online Plugin is installed and that the wfica.ocx library is registered. You can download the client here: http://www.citrix.com/download/ '''If you have the XenDesktop Online Plugin installed and the check still fails, try to register wfica.ocx manually. - '''To do this open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\Program Files\Citrix\ICA Client\wfica.ocx" (Where c:\Program Files\Citrix\ICA Client\ is the path to your XenDesktop Online Plugin install [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + '''To do this open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\Program Files\Citrix\ICA Client\wfica.ocx" (Where c:\Program Files\Citrix\ICA Client\ is the path to your XenDesktop Online Plugin install [rest of string was truncated]";. ''' Friend ReadOnly Property strCcICAFailed() As String Get @@ -1249,8 +1249,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die All ICA components were found and seem to be registered properly. - '''Citrix ICA Client Control Version {0} ähnelt. + ''' Looks up a localized string similar to All ICA components were found and seem to be registered properly. + '''Citrix ICA Client Control Version {0}. ''' Friend ReadOnly Property strCcICAOK() As String Get @@ -1259,7 +1259,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die not installed properly ähnelt. + ''' Looks up a localized string similar to not installed properly. ''' Friend ReadOnly Property strCcNotInstalledProperly() As String Get @@ -1268,8 +1268,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die The SSH, Telnet, Rlogin and RAW protocols need PuTTY to work. PuTTY comes with every mRemoteNG package and is located in the installation path. - '''Please make sure that either you have the Putty.exe in your mRemoteNG directory (default: c:\Program Files\mRemoteNG\) or that you specified a valid path to your PuTTY executable in the Options (Tools - Options - Advanced - Custom PuTTY path) ähnelt. + ''' Looks up a localized string similar to The SSH, Telnet, Rlogin and RAW protocols need PuTTY to work. PuTTY comes with every mRemoteNG package and is located in the installation path. + '''Please make sure that either you have the Putty.exe in your mRemoteNG directory (default: c:\Program Files\mRemoteNG\) or that you specified a valid path to your PuTTY executable in the Options (Tools - Options - Advanced - Custom PuTTY path). ''' Friend ReadOnly Property strCcPuttyFailed() As String Get @@ -1278,7 +1278,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die The PuTTY executable was found and should be ready to use. ähnelt. + ''' Looks up a localized string similar to The PuTTY executable was found and should be ready to use.. ''' Friend ReadOnly Property strCcPuttyOK() As String Get @@ -1287,9 +1287,9 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services Client) 6.1 installed. You can get it here: http://support.microsoft.com/kb/951616 + ''' Looks up a localized string similar to For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services Client) 6.1 installed. You can get it here: http://support.microsoft.com/kb/951616 '''If you have RDP 6.1 installed and the check still fails, try to register mstscax.dll manually. To do this open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\windows\system32\mstscax.dll" (Where c:\ is your system drive). - '''If you still have trouble getting RDP to work please consult the mRemoteNG Forum at ht [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + '''If you still have trouble getting RDP to work please consult the mRemoteNG Forum at ht [rest of string was truncated]";. ''' Friend ReadOnly Property strCcRDPFailed() As String Get @@ -1298,8 +1298,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die All RDP components were found and seem to be registered properly. - '''Remote Desktop Connection Control Version {0} ähnelt. + ''' Looks up a localized string similar to All RDP components were found and seem to be registered properly. + '''Remote Desktop Connection Control Version {0}. ''' Friend ReadOnly Property strCcRDPOK() As String Get @@ -1308,9 +1308,9 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC requires VncSharpNG.dll to be located in your mRemoteNG application folder. + ''' Looks up a localized string similar to VNC requires VncSharpNG.dll to be located in your mRemoteNG application folder. '''Please make sure that you have the VncSharpNG.dll file in your mRemoteNG application folder (usually C:\Program Files\mRemoteNG\). - '''If you are still not able to pass this check or use VNC in mRemoteNG please consult the mRemoteNG Forum at http://forum.mremoteng.org/ ähnelt. + '''If you are still not able to pass this check or use VNC in mRemoteNG please consult the mRemoteNG Forum at http://forum.mremoteng.org/. ''' Friend ReadOnly Property strCcVNCFailed() As String Get @@ -1319,8 +1319,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die All VNC components were found and seem to be registered properly. - '''VncSharpNG Control Version {0} ähnelt. + ''' Looks up a localized string similar to All VNC components were found and seem to be registered properly. + '''VncSharpNG Control Version {0}. ''' Friend ReadOnly Property strCcVNCOK() As String Get @@ -1329,7 +1329,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Automatically try to reconnect when disconnected from server (RDP && ICA only) ähnelt. + ''' Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only). ''' Friend ReadOnly Property strCheckboxAutomaticReconnect() As String Get @@ -1338,7 +1338,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. + ''' Looks up a localized string similar to Domain. ''' Friend ReadOnly Property strCheckboxDomain() As String Get @@ -1347,7 +1347,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Do not show this message again. ähnelt. + ''' Looks up a localized string similar to Do not show this message again.. ''' Friend ReadOnly Property strCheckboxDoNotShowThisMessageAgain() As String Get @@ -1356,7 +1356,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Inheritance ähnelt. + ''' Looks up a localized string similar to Inheritance. ''' Friend ReadOnly Property strCheckboxInheritance() As String Get @@ -1365,7 +1365,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. + ''' Looks up a localized string similar to Password. ''' Friend ReadOnly Property strCheckboxPassword() As String Get @@ -1374,7 +1374,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die This proxy server requires authentication ähnelt. + ''' Looks up a localized string similar to This proxy server requires authentication. ''' Friend ReadOnly Property strCheckboxProxyAuthentication() As String Get @@ -1383,7 +1383,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use custom PuTTY path: ähnelt. + ''' Looks up a localized string similar to Use custom PuTTY path:. ''' Friend ReadOnly Property strCheckboxPuttyPath() As String Get @@ -1392,7 +1392,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Reconnect when ready ähnelt. + ''' Looks up a localized string similar to Reconnect when ready. ''' Friend ReadOnly Property strCheckboxReconnectWhenReady() As String Get @@ -1401,7 +1401,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use a proxy server to connect ähnelt. + ''' Looks up a localized string similar to Use a proxy server to connect. ''' Friend ReadOnly Property strCheckboxUpdateUseProxy() As String Get @@ -1410,7 +1410,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. + ''' Looks up a localized string similar to Username. ''' Friend ReadOnly Property strCheckboxUsername() As String Get @@ -1419,7 +1419,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Wait for exit ähnelt. + ''' Looks up a localized string similar to Wait for exit. ''' Friend ReadOnly Property strCheckboxWaitForExit() As String Get @@ -1428,7 +1428,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check Again ähnelt. + ''' Looks up a localized string similar to Check Again. ''' Friend ReadOnly Property strCheckForUpdate() As String Get @@ -1437,7 +1437,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check for updates and announcements at startup ähnelt. + ''' Looks up a localized string similar to Check for updates and announcements at startup. ''' Friend ReadOnly Property strCheckForUpdatesOnStartup() As String Get @@ -1446,7 +1446,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check now ähnelt. + ''' Looks up a localized string similar to Check now. ''' Friend ReadOnly Property strCheckNow() As String Get @@ -1455,7 +1455,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check proper installation of components at startup ähnelt. + ''' Looks up a localized string similar to Check proper installation of components at startup. ''' Friend ReadOnly Property strCheckProperInstallationOfComponentsAtStartup() As String Get @@ -1464,7 +1464,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Choose panel before connecting ähnelt. + ''' Looks up a localized string similar to Choose panel before connecting. ''' Friend ReadOnly Property strChoosePanelBeforeConnecting() As String Get @@ -1473,7 +1473,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Closed Ports ähnelt. + ''' Looks up a localized string similar to Closed Ports. ''' Friend ReadOnly Property strClosedPorts() As String Get @@ -1482,7 +1482,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Collapse all folders ähnelt. + ''' Looks up a localized string similar to Collapse all folders. ''' Friend ReadOnly Property strCollapseAllFolders() As String Get @@ -1491,7 +1491,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt. + ''' Looks up a localized string similar to Arguments. ''' Friend ReadOnly Property strColumnArguments() As String Get @@ -1500,7 +1500,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Display Name ähnelt. + ''' Looks up a localized string similar to Display Name. ''' Friend ReadOnly Property strColumnDisplayName() As String Get @@ -1509,7 +1509,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Filename ähnelt. + ''' Looks up a localized string similar to Filename. ''' Friend ReadOnly Property strColumnFilename() As String Get @@ -1518,7 +1518,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Hostname/IP ähnelt. + ''' Looks up a localized string similar to Hostname/IP. ''' Friend ReadOnly Property strColumnHostnameIP() As String Get @@ -1527,7 +1527,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Message ähnelt. + ''' Looks up a localized string similar to Message. ''' Friend ReadOnly Property strColumnMessage() As String Get @@ -1536,7 +1536,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. + ''' Looks up a localized string similar to Username. ''' Friend ReadOnly Property strColumnUsername() As String Get @@ -1545,7 +1545,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Wait For Exit ähnelt. + ''' Looks up a localized string similar to Wait For Exit. ''' Friend ReadOnly Property strColumnWaitForExit() As String Get @@ -1554,7 +1554,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't parse command line args! ähnelt. + ''' Looks up a localized string similar to Couldn't parse command line args!. ''' Friend ReadOnly Property strCommandLineArgsCouldNotBeParsed() As String Get @@ -1563,7 +1563,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Components Check ähnelt. + ''' Looks up a localized string similar to Components Check. ''' Friend ReadOnly Property strComponentsCheck() As String Get @@ -1572,7 +1572,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die btnIcon_Click failed! ähnelt. + ''' Looks up a localized string similar to btnIcon_Click failed!. ''' Friend ReadOnly Property strConfigPropertyGridButtonIconClickFailed() As String Get @@ -1581,7 +1581,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die ShowHideGridItems failed! ähnelt. + ''' Looks up a localized string similar to ShowHideGridItems failed!. ''' Friend ReadOnly Property strConfigPropertyGridHideItemsFailed() As String Get @@ -1590,7 +1590,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die IconMenu_Click failed! ähnelt. + ''' Looks up a localized string similar to IconMenu_Click failed!. ''' Friend ReadOnly Property strConfigPropertyGridMenuClickFailed() As String Get @@ -1599,7 +1599,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Property Grid object failed! ähnelt. + ''' Looks up a localized string similar to Property Grid object failed!. ''' Friend ReadOnly Property strConfigPropertyGridObjectFailed() As String Get @@ -1608,7 +1608,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SetHostStatus failed! ähnelt. + ''' Looks up a localized string similar to SetHostStatus failed!. ''' Friend ReadOnly Property strConfigPropertyGridSetHostStatusFailed() As String Get @@ -1617,7 +1617,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die pGrid_PopertyValueChanged failed! ähnelt. + ''' Looks up a localized string similar to pGrid_PopertyValueChanged failed!. ''' Friend ReadOnly Property strConfigPropertyGridValueFailed() As String Get @@ -1626,7 +1626,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Config UI load failed! ähnelt. + ''' Looks up a localized string similar to Config UI load failed!. ''' Friend ReadOnly Property strConfigUiLoadFailed() As String Get @@ -1635,7 +1635,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the external tool, "{0}"? ähnelt. + ''' Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?. ''' Friend ReadOnly Property strConfirmDeleteExternalTool() As String Get @@ -1644,7 +1644,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the {0} selected external tools? ähnelt. + ''' Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?. ''' Friend ReadOnly Property strConfirmDeleteExternalToolMultiple() As String Get @@ -1653,7 +1653,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the connection, "{0}"? ähnelt. + ''' Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?. ''' Friend ReadOnly Property strConfirmDeleteNodeConnection() As String Get @@ -1662,7 +1662,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the empty folder, "{0}"? ähnelt. + ''' Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?. ''' Friend ReadOnly Property strConfirmDeleteNodeFolder() As String Get @@ -1671,7 +1671,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted. ähnelt. + ''' Looks up a localized string similar to Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted.. ''' Friend ReadOnly Property strConfirmDeleteNodeFolderNotEmpty() As String Get @@ -1680,7 +1680,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Confirm exit if there are open connections ähnelt. + ''' Looks up a localized string similar to Confirm exit if there are open connections. ''' Friend ReadOnly Property strConfirmExit() As String Get @@ -1689,7 +1689,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Do you want to close all open connections? ähnelt. + ''' Looks up a localized string similar to Do you want to close all open connections?. ''' Friend ReadOnly Property strConfirmExitMainInstruction() As String Get @@ -1698,7 +1698,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to reset the panels to their default layout? ähnelt. + ''' Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?. ''' Friend ReadOnly Property strConfirmResetLayout() As String Get @@ -1707,7 +1707,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. + ''' Looks up a localized string similar to Connect. ''' Friend ReadOnly Property strConnect() As String Get @@ -1716,7 +1716,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connect in fullscreen mode ähnelt. + ''' Looks up a localized string similar to Connect in fullscreen mode. ''' Friend ReadOnly Property strConnectInFullscreen() As String Get @@ -1725,7 +1725,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connecting... ähnelt. + ''' Looks up a localized string similar to Connecting.... ''' Friend ReadOnly Property strConnecting() As String Get @@ -1734,7 +1734,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol Event Connected ähnelt. + ''' Looks up a localized string similar to Protocol Event Connected. ''' Friend ReadOnly Property strConnectionEventConnected() As String Get @@ -1743,7 +1743,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}") ähnelt. + ''' Looks up a localized string similar to Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}"). ''' Friend ReadOnly Property strConnectionEventConnectedDetail() As String Get @@ -1752,7 +1752,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Conenction failed! ähnelt. + ''' Looks up a localized string similar to Conenction failed!. ''' Friend ReadOnly Property strConnectionEventConnectionFailed() As String Get @@ -1761,7 +1761,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol Event ErrorOccured ähnelt. + ''' Looks up a localized string similar to Protocol Event ErrorOccured. ''' Friend ReadOnly Property strConnectionEventErrorOccured() As String Get @@ -1770,7 +1770,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Opening connection failed! ähnelt. + ''' Looks up a localized string similar to Opening connection failed!. ''' Friend ReadOnly Property strConnectionOpenFailed() As String Get @@ -1779,7 +1779,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Cannot open connection: No hostname specified! ähnelt. + ''' Looks up a localized string similar to Cannot open connection: No hostname specified!. ''' Friend ReadOnly Property strConnectionOpenFailedNoHostname() As String Get @@ -1788,9 +1788,9 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP error! + ''' Looks up a localized string similar to RDP error! '''Error Code: {0} - '''Error Description: {1} ähnelt. + '''Error Description: {1}. ''' Friend ReadOnly Property strConnectionRdpErrorDetail() As String Get @@ -1799,7 +1799,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. + ''' Looks up a localized string similar to Connections. ''' Friend ReadOnly Property strConnections() As String Get @@ -1808,7 +1808,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't set default port! ähnelt. + ''' Looks up a localized string similar to Couldn't set default port!. ''' Friend ReadOnly Property strConnectionSetDefaultPortFailed() As String Get @@ -1817,7 +1817,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't create backup of connections file! ähnelt. + ''' Looks up a localized string similar to Couldn't create backup of connections file!. ''' Friend ReadOnly Property strConnectionsFileBackupFailed() As String Get @@ -1826,7 +1826,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't import connections file! ähnelt. + ''' Looks up a localized string similar to Couldn't import connections file!. ''' Friend ReadOnly Property strConnectionsFileCouldNotBeImported() As String Get @@ -1835,7 +1835,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connections file "{0}" could not be loaded! ähnelt. + ''' Looks up a localized string similar to Connections file "{0}" could not be loaded!. ''' Friend ReadOnly Property strConnectionsFileCouldNotBeLoaded() As String Get @@ -1844,8 +1844,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connections file "{0}" could not be loaded! - '''Starting with new connections file. ähnelt. + ''' Looks up a localized string similar to Connections file "{0}" could not be loaded! + '''Starting with new connections file.. ''' Friend ReadOnly Property strConnectionsFileCouldNotBeLoadedNew() As String Get @@ -1854,7 +1854,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't save connections file! ähnelt. + ''' Looks up a localized string similar to Couldn't save connections file!. ''' Friend ReadOnly Property strConnectionsFileCouldNotBeSaved() As String Get @@ -1863,7 +1863,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't save connections file as "{0}"! ähnelt. + ''' Looks up a localized string similar to Couldn't save connections file as "{0}"!. ''' Friend ReadOnly Property strConnectionsFileCouldNotSaveAs() As String Get @@ -1872,7 +1872,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connect to console session ähnelt. + ''' Looks up a localized string similar to Connect to console session. ''' Friend ReadOnly Property strConnectToConsoleSession() As String Get @@ -1881,7 +1881,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connect (with options) ähnelt. + ''' Looks up a localized string similar to Connect (with options). ''' Friend ReadOnly Property strConnectWithOptions() As String Get @@ -1890,7 +1890,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection to {0} via {1} closed by user {2}. ähnelt. + ''' Looks up a localized string similar to Connection to {0} via {1} closed by user {2}.. ''' Friend ReadOnly Property strConnenctionClosedByUser() As String Get @@ -1899,7 +1899,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection to {0} via {1} closed by user {2}. (Description: "{3}"; User Field: "{4}") ähnelt. + ''' Looks up a localized string similar to Connection to {0} via {1} closed by user {2}. (Description: "{3}"; User Field: "{4}"). ''' Friend ReadOnly Property strConnenctionClosedByUserDetail() As String Get @@ -1908,7 +1908,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection Event Closed ähnelt. + ''' Looks up a localized string similar to Connection Event Closed. ''' Friend ReadOnly Property strConnenctionCloseEvent() As String Get @@ -1917,7 +1917,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection Event Closed failed! ähnelt. + ''' Looks up a localized string similar to Connection Event Closed failed!. ''' Friend ReadOnly Property strConnenctionCloseEventFailed() As String Get @@ -1926,7 +1926,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't create new connections file! ähnelt. + ''' Looks up a localized string similar to Couldn't create new connections file!. ''' Friend ReadOnly Property strCouldNotCreateNewConnectionsFile() As String Get @@ -1935,7 +1935,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Installed version ähnelt. + ''' Looks up a localized string similar to Installed version. ''' Friend ReadOnly Property strCurrentVersion() As String Get @@ -1944,7 +1944,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Detect ähnelt. + ''' Looks up a localized string similar to Detect. ''' Friend ReadOnly Property strDetect() As String Get @@ -1953,7 +1953,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Don't connect if authentication fails ähnelt. + ''' Looks up a localized string similar to Don't connect if authentication fails. ''' Friend ReadOnly Property strDontConnectWhenAuthFails() As String Get @@ -1962,7 +1962,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Double click on tab closes it ähnelt. + ''' Looks up a localized string similar to Double click on tab closes it. ''' Friend ReadOnly Property strDoubleClickTabClosesIt() As String Get @@ -1971,7 +1971,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Download and Install ähnelt. + ''' Looks up a localized string similar to Download and Install. ''' Friend ReadOnly Property strDownloadAndInstall() As String Get @@ -1980,7 +1980,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate ähnelt. + ''' Looks up a localized string similar to Duplicate. ''' Friend ReadOnly Property strDuplicate() As String Get @@ -1989,7 +1989,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Do you want to continue with no password? ähnelt. + ''' Looks up a localized string similar to Do you want to continue with no password?. ''' Friend ReadOnly Property strEmptyPasswordContinue() As String Get @@ -1998,7 +1998,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die For empty Username, Password or Domain fields use: ähnelt. + ''' Looks up a localized string similar to For empty Username, Password or Domain fields use:. ''' Friend ReadOnly Property strEmptyUsernamePasswordDomainFields() As String Get @@ -2007,7 +2007,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 128 Bit ähnelt. + ''' Looks up a localized string similar to 128 Bit. ''' Friend ReadOnly Property strEnc128Bit() As String Get @@ -2016,7 +2016,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 128Bit (logon only) ähnelt. + ''' Looks up a localized string similar to 128Bit (logon only). ''' Friend ReadOnly Property strEnc128BitLogonOnly() As String Get @@ -2025,7 +2025,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 40 Bit ähnelt. + ''' Looks up a localized string similar to 40 Bit. ''' Friend ReadOnly Property strEnc40Bit() As String Get @@ -2034,7 +2034,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 56 Bit ähnelt. + ''' Looks up a localized string similar to 56 Bit. ''' Friend ReadOnly Property strEnc56Bit() As String Get @@ -2043,7 +2043,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Basic ähnelt. + ''' Looks up a localized string similar to Basic. ''' Friend ReadOnly Property strEncBasic() As String Get @@ -2052,7 +2052,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Completely encrypt connection file ähnelt. + ''' Looks up a localized string similar to Completely encrypt connection file. ''' Friend ReadOnly Property strEncryptCompleteConnectionFile() As String Get @@ -2061,7 +2061,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die End IP ähnelt. + ''' Looks up a localized string similar to End IP. ''' Friend ReadOnly Property strEndIP() As String Get @@ -2070,7 +2070,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die End Port ähnelt. + ''' Looks up a localized string similar to End Port. ''' Friend ReadOnly Property strEndPort() As String Get @@ -2079,7 +2079,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Error code {0}. ähnelt. + ''' Looks up a localized string similar to Error code {0}.. ''' Friend ReadOnly Property strErrorCode() As String Get @@ -2088,7 +2088,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Errors ähnelt. + ''' Looks up a localized string similar to Errors. ''' Friend ReadOnly Property strErrors() As String Get @@ -2097,7 +2097,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Expand all folders ähnelt. + ''' Looks up a localized string similar to Expand all folders. ''' Friend ReadOnly Property strExpandAllFolders() As String Get @@ -2106,7 +2106,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Experimental ähnelt. + ''' Looks up a localized string similar to Experimental. ''' Friend ReadOnly Property strExperimental() As String Get @@ -2115,7 +2115,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Export ähnelt. + ''' Looks up a localized string similar to Export. ''' Friend ReadOnly Property strExport() As String Get @@ -2124,7 +2124,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Export mRemote/mRemoteNG XML ähnelt. + ''' Looks up a localized string similar to Export mRemote/mRemoteNG XML. ''' Friend ReadOnly Property strExportmRemoteXML() As String Get @@ -2133,7 +2133,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Ext. App ähnelt. + ''' Looks up a localized string similar to Ext. App. ''' Friend ReadOnly Property strExtApp() As String Get @@ -2142,7 +2142,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Includes icons by [FAMFAMFAM] ähnelt. + ''' Looks up a localized string similar to Includes icons by [FAMFAMFAM]. ''' Friend ReadOnly Property strFAMFAMFAMAttribution() As String Get @@ -2151,7 +2151,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die http://www.famfamfam.com/ ähnelt. + ''' Looks up a localized string similar to http://www.famfamfam.com/. ''' Friend ReadOnly Property strFAMFAMFAMAttributionURL() As String Get @@ -2160,7 +2160,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die All Files (*.*) ähnelt. + ''' Looks up a localized string similar to All Files (*.*). ''' Friend ReadOnly Property strFilterAll() As String Get @@ -2169,7 +2169,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Application Files (*.exe) ähnelt. + ''' Looks up a localized string similar to Application Files (*.exe). ''' Friend ReadOnly Property strFilterApplication() As String Get @@ -2178,7 +2178,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die mRemote CSV Files (*.csv) ähnelt. + ''' Looks up a localized string similar to mRemote CSV Files (*.csv). ''' Friend ReadOnly Property strFiltermRemoteCSV() As String Get @@ -2187,7 +2187,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die mRemote XML Files (*.xml) ähnelt. + ''' Looks up a localized string similar to mRemote XML Files (*.xml). ''' Friend ReadOnly Property strFiltermRemoteXML() As String Get @@ -2196,7 +2196,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP Files (*.rdp) ähnelt. + ''' Looks up a localized string similar to RDP Files (*.rdp). ''' Friend ReadOnly Property strFilterRDP() As String Get @@ -2205,7 +2205,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die visionapp Remote Desktop 2008 CSV Files (*.csv) ähnelt. + ''' Looks up a localized string similar to visionapp Remote Desktop 2008 CSV Files (*.csv). ''' Friend ReadOnly Property strFiltervRD2008CSV() As String Get @@ -2214,7 +2214,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Inherit {0} ähnelt. + ''' Looks up a localized string similar to Inherit {0}. ''' Friend ReadOnly Property strFormatInherit() As String Get @@ -2223,7 +2223,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Description of inherited property: {0} ähnelt. + ''' Looks up a localized string similar to Description of inherited property: {0}. ''' Friend ReadOnly Property strFormatInheritDescription() As String Get @@ -2232,7 +2232,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Free ähnelt. + ''' Looks up a localized string similar to Free. ''' Friend ReadOnly Property strFree() As String Get @@ -2241,7 +2241,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Fullscreen ähnelt. + ''' Looks up a localized string similar to Fullscreen. ''' Friend ReadOnly Property strFullscreen() As String Get @@ -2250,7 +2250,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die General ähnelt. + ''' Looks up a localized string similar to General. ''' Friend ReadOnly Property strGeneral() As String Get @@ -2259,7 +2259,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Get Connection Info From SQL failed ähnelt. + ''' Looks up a localized string similar to Get Connection Info From SQL failed. ''' Friend ReadOnly Property strGetConnectionInfoFromSqlFailed() As String Get @@ -2268,7 +2268,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Get Connection Info From Xml failed ähnelt. + ''' Looks up a localized string similar to Get Connection Info From Xml failed. ''' Friend ReadOnly Property strGetConnectionInfoFromXmlFailed() As String Get @@ -2277,7 +2277,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Automatic Reconnect ähnelt. + ''' Looks up a localized string similar to Automatic Reconnect. ''' Friend ReadOnly Property strGroupboxAutomaticReconnect() As String Get @@ -2286,7 +2286,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt. + ''' Looks up a localized string similar to Connection. ''' Friend ReadOnly Property strGroupboxConnection() As String Get @@ -2295,7 +2295,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die External Tool Properties ähnelt. + ''' Looks up a localized string similar to External Tool Properties. ''' Friend ReadOnly Property strGroupboxExternalToolProperties() As String Get @@ -2304,7 +2304,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Files ähnelt. + ''' Looks up a localized string similar to Files. ''' Friend ReadOnly Property strGroupboxFiles() As String Get @@ -2313,7 +2313,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Host ähnelt. + ''' Looks up a localized string similar to Host. ''' Friend ReadOnly Property strHost() As String Get @@ -2322,7 +2322,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die HTTP ähnelt. + ''' Looks up a localized string similar to HTTP. ''' Friend ReadOnly Property strHttp() As String Get @@ -2331,7 +2331,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die HTTP Connect Failed! ähnelt. + ''' Looks up a localized string similar to HTTP Connect Failed!. ''' Friend ReadOnly Property strHttpConnectFailed() As String Get @@ -2340,7 +2340,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't create new HTTP Connection! ähnelt. + ''' Looks up a localized string similar to Couldn't create new HTTP Connection!. ''' Friend ReadOnly Property strHttpConnectionFailed() As String Get @@ -2349,7 +2349,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Changeing HTTP Document Tile Failed! ähnelt. + ''' Looks up a localized string similar to Changeing HTTP Document Tile Failed!. ''' Friend ReadOnly Property strHttpDocumentTileChangeFailed() As String Get @@ -2358,7 +2358,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Gecko (Firefox) ähnelt. + ''' Looks up a localized string similar to Gecko (Firefox). ''' Friend ReadOnly Property strHttpGecko() As String Get @@ -2367,7 +2367,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Internet Explorer ähnelt. + ''' Looks up a localized string similar to Internet Explorer. ''' Friend ReadOnly Property strHttpInternetExplorer() As String Get @@ -2376,7 +2376,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die HTTPS ähnelt. + ''' Looks up a localized string similar to HTTPS. ''' Friend ReadOnly Property strHttps() As String Get @@ -2385,7 +2385,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Set HTTP Props failed! ähnelt. + ''' Looks up a localized string similar to Set HTTP Props failed!. ''' Friend ReadOnly Property strHttpSetPropsFailed() As String Get @@ -2394,7 +2394,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die ICA ähnelt. + ''' Looks up a localized string similar to ICA. ''' Friend ReadOnly Property strICA() As String Get @@ -2403,7 +2403,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't create new ICA Connection! ähnelt. + ''' Looks up a localized string similar to Couldn't create new ICA Connection!. ''' Friend ReadOnly Property strIcaConnectionFailed() As String Get @@ -2412,7 +2412,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Loading ICA Plugin failed! ähnelt. + ''' Looks up a localized string similar to Loading ICA Plugin failed!. ''' Friend ReadOnly Property strIcaControlFailed() As String Get @@ -2421,7 +2421,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die ICA SetCredentials failed! ähnelt. + ''' Looks up a localized string similar to ICA SetCredentials failed!. ''' Friend ReadOnly Property strIcaSetCredentialsFailed() As String Get @@ -2430,7 +2430,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die ICA Set Event Handlers Failed! ähnelt. + ''' Looks up a localized string similar to ICA Set Event Handlers Failed!. ''' Friend ReadOnly Property strIcaSetEventHandlersFailed() As String Get @@ -2439,7 +2439,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die ICA Set Props Failed! ähnelt. + ''' Looks up a localized string similar to ICA Set Props Failed!. ''' Friend ReadOnly Property strIcaSetPropsFailed() As String Get @@ -2448,7 +2448,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die ICA Set Resolution Failed! ähnelt. + ''' Looks up a localized string similar to ICA Set Resolution Failed!. ''' Friend ReadOnly Property strIcaSetResolutionFailed() As String Get @@ -2457,7 +2457,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Import from Active Directory ähnelt. + ''' Looks up a localized string similar to Import from Active Directory. ''' Friend ReadOnly Property strImportAD() As String Get @@ -2466,7 +2466,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Import/Export ähnelt. + ''' Looks up a localized string similar to Import/Export. ''' Friend ReadOnly Property strImportExport() As String Get @@ -2475,7 +2475,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Import mRemote/mRemoteNG XML ähnelt. + ''' Looks up a localized string similar to Import mRemote/mRemoteNG XML. ''' Friend ReadOnly Property strImportmRemoteXML() As String Get @@ -2484,7 +2484,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Import from Port Scan ähnelt. + ''' Looks up a localized string similar to Import from Port Scan. ''' Friend ReadOnly Property strImportPortScan() As String Get @@ -2493,7 +2493,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Import from .RDP file(s) ähnelt. + ''' Looks up a localized string similar to Import from .RDP file(s). ''' Friend ReadOnly Property strImportRDPFiles() As String Get @@ -2502,7 +2502,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Inactive ähnelt. + ''' Looks up a localized string similar to Inactive. ''' Friend ReadOnly Property strInactive() As String Get @@ -2511,7 +2511,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Informations ähnelt. + ''' Looks up a localized string similar to Informations. ''' Friend ReadOnly Property strInformations() As String Get @@ -2520,7 +2520,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die mRemoteNG is up to date ähnelt. + ''' Looks up a localized string similar to mRemoteNG is up to date. ''' Friend ReadOnly Property strInheritNewConnection() As String Get @@ -2529,7 +2529,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection failed! ähnelt. + ''' Looks up a localized string similar to Connection failed!. ''' Friend ReadOnly Property strIntAppConnectionFailed() As String Get @@ -2538,7 +2538,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Dispose of Int App process failed! ähnelt. + ''' Looks up a localized string similar to Dispose of Int App process failed!. ''' Friend ReadOnly Property strIntAppDisposeFailed() As String Get @@ -2547,7 +2547,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Int App Focus Failed! ähnelt. + ''' Looks up a localized string similar to Int App Focus Failed!. ''' Friend ReadOnly Property strIntAppFocusFailed() As String Get @@ -2556,7 +2556,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Int App Handle: {0} ähnelt. + ''' Looks up a localized string similar to Int App Handle: {0}. ''' Friend ReadOnly Property strIntAppHandle() As String Get @@ -2565,7 +2565,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Killing Int App Process failed! ähnelt. + ''' Looks up a localized string similar to Killing Int App Process failed!. ''' Friend ReadOnly Property strIntAppKillFailed() As String Get @@ -2574,7 +2574,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Panel Handle: {0} ähnelt. + ''' Looks up a localized string similar to Panel Handle: {0}. ''' Friend ReadOnly Property strIntAppParentHandle() As String Get @@ -2583,7 +2583,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Int App Resize failed! ähnelt. + ''' Looks up a localized string similar to Int App Resize failed!. ''' Friend ReadOnly Property strIntAppResizeFailed() As String Get @@ -2592,7 +2592,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die --- IntApp Stuff --- ähnelt. + ''' Looks up a localized string similar to --- IntApp Stuff ---. ''' Friend ReadOnly Property strIntAppStuff() As String Get @@ -2601,7 +2601,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Int App Title: {0} ähnelt. + ''' Looks up a localized string similar to Int App Title: {0}. ''' Friend ReadOnly Property strIntAppTitle() As String Get @@ -2610,7 +2610,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die CTRL-ALT-DEL ähnelt. + ''' Looks up a localized string similar to CTRL-ALT-DEL. ''' Friend ReadOnly Property strKeysCtrlAltDel() As String Get @@ -2619,7 +2619,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die CTRL-ESC ähnelt. + ''' Looks up a localized string similar to CTRL-ESC. ''' Friend ReadOnly Property strKeysCtrlEsc() As String Get @@ -2628,7 +2628,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Address: ähnelt. + ''' Looks up a localized string similar to Address:. ''' Friend ReadOnly Property strLabelAddress() As String Get @@ -2637,7 +2637,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Arguments: ähnelt. + ''' Looks up a localized string similar to Arguments:. ''' Friend ReadOnly Property strLabelArguments() As String Get @@ -2646,7 +2646,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Change Log: ähnelt. + ''' Looks up a localized string similar to Change Log:. ''' Friend ReadOnly Property strLabelChangeLog() As String Get @@ -2655,7 +2655,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Connect: ähnelt. + ''' Looks up a localized string similar to &Connect:. ''' Friend ReadOnly Property strLabelConnect() As String Get @@ -2664,7 +2664,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Display Name ähnelt. + ''' Looks up a localized string similar to Display Name. ''' Friend ReadOnly Property strLabelDisplayName() As String Get @@ -2673,7 +2673,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Domain: ähnelt. + ''' Looks up a localized string similar to Domain:. ''' Friend ReadOnly Property strLabelDomain() As String Get @@ -2682,7 +2682,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Filename: ähnelt. + ''' Looks up a localized string similar to Filename:. ''' Friend ReadOnly Property strLabelFilename() As String Get @@ -2691,7 +2691,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Options: ähnelt. + ''' Looks up a localized string similar to Options:. ''' Friend ReadOnly Property strLabelOptions() As String Get @@ -2700,7 +2700,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Password: ähnelt. + ''' Looks up a localized string similar to Password:. ''' Friend ReadOnly Property strLabelPassword() As String Get @@ -2709,7 +2709,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Port: ähnelt. + ''' Looks up a localized string similar to Port:. ''' Friend ReadOnly Property strLabelPort() As String Get @@ -2718,7 +2718,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Portable Edition ähnelt. + ''' Looks up a localized string similar to Portable Edition. ''' Friend ReadOnly Property strLabelPortableEdition() As String Get @@ -2727,7 +2727,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol: ähnelt. + ''' Looks up a localized string similar to Protocol:. ''' Friend ReadOnly Property strLabelProtocol() As String Get @@ -2736,7 +2736,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die To configure PuTTY sessions click this button: ähnelt. + ''' Looks up a localized string similar to To configure PuTTY sessions click this button:. ''' Friend ReadOnly Property strLabelPuttySessionsConfig() As String Get @@ -2745,7 +2745,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Max. PuTTY && Integrated Ext. Apps wait time: ähnelt. + ''' Looks up a localized string similar to Max. PuTTY && Integrated Ext. Apps wait time:. ''' Friend ReadOnly Property strLabelPuttyTimeout() As String Get @@ -2754,7 +2754,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Released under the GNU General Public License (GPL) ähnelt. + ''' Looks up a localized string similar to Released under the GNU General Public License (GPL). ''' Friend ReadOnly Property strLabelReleasedUnderGPL() As String Get @@ -2763,7 +2763,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die seconds ähnelt. + ''' Looks up a localized string similar to seconds. ''' Friend ReadOnly Property strLabelSeconds() As String Get @@ -2772,7 +2772,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select a panel from the list below or click New to add a new one. Click OK to continue. ähnelt. + ''' Looks up a localized string similar to Select a panel from the list below or click New to add a new one. Click OK to continue.. ''' Friend ReadOnly Property strLabelSelectPanel() As String Get @@ -2781,7 +2781,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Server Status: ähnelt. + ''' Looks up a localized string similar to Server Status:. ''' Friend ReadOnly Property strLabelServerStatus() As String Get @@ -2790,7 +2790,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Username: ähnelt. + ''' Looks up a localized string similar to Username:. ''' Friend ReadOnly Property strLabelUsername() As String Get @@ -2799,7 +2799,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Verify: ähnelt. + ''' Looks up a localized string similar to Verify:. ''' Friend ReadOnly Property strLabelVerify() As String Get @@ -2808,7 +2808,34 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Load From SQL failed! ähnelt. + ''' Looks up a localized string similar to Language. + ''' + Friend ReadOnly Property strLanguage() As String + Get + Return ResourceManager.GetString("strLanguage", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to (Automatically Detect). + ''' + Friend ReadOnly Property strLanguageDefault() As String + Get + Return ResourceManager.GetString("strLanguageDefault", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to {0} must be restarted before changes to the language will take effect.. + ''' + Friend ReadOnly Property strLanguageRestartRequired() As String + Get + Return ResourceManager.GetString("strLanguageRestartRequired", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Load From SQL failed!. ''' Friend ReadOnly Property strLoadFromSqlFailed() As String Get @@ -2817,7 +2844,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Load From XML failed! ähnelt. + ''' Looks up a localized string similar to Load From XML failed!. ''' Friend ReadOnly Property strLoadFromXmlFailed() As String Get @@ -2826,7 +2853,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Local file ähnelt. + ''' Looks up a localized string similar to Local file. ''' Friend ReadOnly Property strLocalFile() As String Get @@ -2835,7 +2862,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Local file does not exist! ähnelt. + ''' Looks up a localized string similar to Local file does not exist!. ''' Friend ReadOnly Property strLocalFileDoesNotExist() As String Get @@ -2844,7 +2871,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Logoff ähnelt. + ''' Looks up a localized string similar to Logoff. ''' Friend ReadOnly Property strLogOff() As String Get @@ -2853,7 +2880,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Writing to report file failed! ähnelt. + ''' Looks up a localized string similar to Writing to report file failed!. ''' Friend ReadOnly Property strLogWriteToFileFailed() As String Get @@ -2862,7 +2889,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't save report to final location. ähnelt. + ''' Looks up a localized string similar to Couldn't save report to final location.. ''' Friend ReadOnly Property strLogWriteToFileFinalLocationFailed() As String Get @@ -2871,7 +2898,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Uses the Magic library by [Crownwood Software] ähnelt. + ''' Looks up a localized string similar to Uses the Magic library by [Crownwood Software]. ''' Friend ReadOnly Property strMagicLibraryAttribution() As String Get @@ -2880,7 +2907,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die http://www.dotnetmagic.com/ ähnelt. + ''' Looks up a localized string similar to http://www.dotnetmagic.com/. ''' Friend ReadOnly Property strMagicLibraryAttributionURL() As String Get @@ -2889,7 +2916,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die About ähnelt. + ''' Looks up a localized string similar to About. ''' Friend ReadOnly Property strMenuAbout() As String Get @@ -2898,7 +2925,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Add Connection Panel ähnelt. + ''' Looks up a localized string similar to Add Connection Panel. ''' Friend ReadOnly Property strMenuAddConnectionPanel() As String Get @@ -2907,7 +2934,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Announcements ähnelt. + ''' Looks up a localized string similar to Announcements. ''' Friend ReadOnly Property strMenuAnnouncements() As String Get @@ -2916,7 +2943,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check for Updates ähnelt. + ''' Looks up a localized string similar to Check for Updates. ''' Friend ReadOnly Property strMenuCheckForUpdates() As String Get @@ -2925,7 +2952,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Config ähnelt. + ''' Looks up a localized string similar to Config. ''' Friend ReadOnly Property strMenuConfig() As String Get @@ -2934,7 +2961,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. + ''' Looks up a localized string similar to Connect. ''' Friend ReadOnly Property strMenuConnect() As String Get @@ -2943,7 +2970,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection Panels ähnelt. + ''' Looks up a localized string similar to Connection Panels. ''' Friend ReadOnly Property strMenuConnectionPanels() As String Get @@ -2952,7 +2979,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. + ''' Looks up a localized string similar to Connections. ''' Friend ReadOnly Property strMenuConnections() As String Get @@ -2961,7 +2988,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connections and Config ähnelt. + ''' Looks up a localized string similar to Connections and Config. ''' Friend ReadOnly Property strMenuConnectionsAndConfig() As String Get @@ -2970,7 +2997,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. + ''' Looks up a localized string similar to Copy. ''' Friend ReadOnly Property strMenuCopy() As String Get @@ -2979,7 +3006,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Ctrl-Alt-Del ähnelt. + ''' Looks up a localized string similar to Ctrl-Alt-Del. ''' Friend ReadOnly Property strMenuCtrlAltDel() As String Get @@ -2988,7 +3015,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Ctrl-Esc ähnelt. + ''' Looks up a localized string similar to Ctrl-Esc. ''' Friend ReadOnly Property strMenuCtrlEsc() As String Get @@ -2997,7 +3024,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt. + ''' Looks up a localized string similar to Delete.... ''' Friend ReadOnly Property strMenuDelete() As String Get @@ -3006,7 +3033,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Delete Connection... ähnelt. + ''' Looks up a localized string similar to Delete Connection.... ''' Friend ReadOnly Property strMenuDeleteConnection() As String Get @@ -3015,7 +3042,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Delete External Tool... ähnelt. + ''' Looks up a localized string similar to Delete External Tool.... ''' Friend ReadOnly Property strMenuDeleteExternalTool() As String Get @@ -3024,7 +3051,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Delete Folder... ähnelt. + ''' Looks up a localized string similar to Delete Folder.... ''' Friend ReadOnly Property strMenuDeleteFolder() As String Get @@ -3033,7 +3060,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt. + ''' Looks up a localized string similar to Disconnect. ''' Friend ReadOnly Property strMenuDisconnect() As String Get @@ -3042,7 +3069,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Donate ähnelt. + ''' Looks up a localized string similar to Donate. ''' Friend ReadOnly Property strMenuDonate() As String Get @@ -3051,7 +3078,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate ähnelt. + ''' Looks up a localized string similar to Duplicate. ''' Friend ReadOnly Property strMenuDuplicate() As String Get @@ -3060,7 +3087,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate Connection ähnelt. + ''' Looks up a localized string similar to Duplicate Connection. ''' Friend ReadOnly Property strMenuDuplicateConnection() As String Get @@ -3069,7 +3096,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate Folder ähnelt. + ''' Looks up a localized string similar to Duplicate Folder. ''' Friend ReadOnly Property strMenuDuplicateFolder() As String Get @@ -3078,7 +3105,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate Tab ähnelt. + ''' Looks up a localized string similar to Duplicate Tab. ''' Friend ReadOnly Property strMenuDuplicateTab() As String Get @@ -3087,7 +3114,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Exit ähnelt. + ''' Looks up a localized string similar to Exit. ''' Friend ReadOnly Property strMenuExit() As String Get @@ -3096,7 +3123,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die External Tools ähnelt. + ''' Looks up a localized string similar to External Tools. ''' Friend ReadOnly Property strMenuExternalTools() As String Get @@ -3105,7 +3132,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die External Tools Toolbar ähnelt. + ''' Looks up a localized string similar to External Tools Toolbar. ''' Friend ReadOnly Property strMenuExternalToolsToolbar() As String Get @@ -3114,7 +3141,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &File ähnelt. + ''' Looks up a localized string similar to &File. ''' Friend ReadOnly Property strMenuFile() As String Get @@ -3123,7 +3150,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Full Screen ähnelt. + ''' Looks up a localized string similar to Full Screen. ''' Friend ReadOnly Property strMenuFullScreen() As String Get @@ -3132,7 +3159,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Full Screen (RDP) ähnelt. + ''' Looks up a localized string similar to Full Screen (RDP). ''' Friend ReadOnly Property strMenuFullScreenRDP() As String Get @@ -3141,7 +3168,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Help ähnelt. + ''' Looks up a localized string similar to &Help. ''' Friend ReadOnly Property strMenuHelp() As String Get @@ -3150,7 +3177,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die mRemoteNG Help ähnelt. + ''' Looks up a localized string similar to mRemoteNG Help. ''' Friend ReadOnly Property strMenuHelpContents() As String Get @@ -3159,7 +3186,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Jump To ähnelt. + ''' Looks up a localized string similar to Jump To. ''' Friend ReadOnly Property strMenuJumpTo() As String Get @@ -3168,7 +3195,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Launch External Tool ähnelt. + ''' Looks up a localized string similar to Launch External Tool. ''' Friend ReadOnly Property strMenuLaunchExternalTool() As String Get @@ -3177,7 +3204,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New Connection File ähnelt. + ''' Looks up a localized string similar to New Connection File. ''' Friend ReadOnly Property strMenuNewConnectionFile() As String Get @@ -3186,7 +3213,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New External Tool ähnelt. + ''' Looks up a localized string similar to New External Tool. ''' Friend ReadOnly Property strMenuNewExternalTool() As String Get @@ -3195,7 +3222,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Notifications ähnelt. + ''' Looks up a localized string similar to Notifications. ''' Friend ReadOnly Property strMenuNotifications() As String Get @@ -3204,7 +3231,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Open Connection File... ähnelt. + ''' Looks up a localized string similar to Open Connection File.... ''' Friend ReadOnly Property strMenuOpenConnectionFile() As String Get @@ -3213,7 +3240,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Options ähnelt. + ''' Looks up a localized string similar to Options. ''' Friend ReadOnly Property strMenuOptions() As String Get @@ -3222,7 +3249,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Paste ähnelt. + ''' Looks up a localized string similar to Paste. ''' Friend ReadOnly Property strMenuPaste() As String Get @@ -3231,7 +3258,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Port Scan ähnelt. + ''' Looks up a localized string similar to Port Scan. ''' Friend ReadOnly Property strMenuPortScan() As String Get @@ -3240,7 +3267,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Quick Connect Toolbar ähnelt. + ''' Looks up a localized string similar to Quick Connect Toolbar. ''' Friend ReadOnly Property strMenuQuickConnectToolbar() As String Get @@ -3249,7 +3276,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Reconnect ähnelt. + ''' Looks up a localized string similar to Reconnect. ''' Friend ReadOnly Property strMenuReconnect() As String Get @@ -3258,7 +3285,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Refresh Screen (VNC) ähnelt. + ''' Looks up a localized string similar to Refresh Screen (VNC). ''' Friend ReadOnly Property strMenuRefreshScreen() As String Get @@ -3267,7 +3294,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rename ähnelt. + ''' Looks up a localized string similar to Rename. ''' Friend ReadOnly Property strMenuRename() As String Get @@ -3276,7 +3303,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rename Connection ähnelt. + ''' Looks up a localized string similar to Rename Connection. ''' Friend ReadOnly Property strMenuRenameConnection() As String Get @@ -3285,7 +3312,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rename Folder ähnelt. + ''' Looks up a localized string similar to Rename Folder. ''' Friend ReadOnly Property strMenuRenameFolder() As String Get @@ -3294,7 +3321,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rename Tab ähnelt. + ''' Looks up a localized string similar to Rename Tab. ''' Friend ReadOnly Property strMenuRenameTab() As String Get @@ -3303,7 +3330,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Report a Bug ähnelt. + ''' Looks up a localized string similar to Report a Bug. ''' Friend ReadOnly Property strMenuReportBug() As String Get @@ -3312,7 +3339,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Reset layout ähnelt. + ''' Looks up a localized string similar to Reset layout. ''' Friend ReadOnly Property strMenuResetLayout() As String Get @@ -3321,7 +3348,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Save Connection File ähnelt. + ''' Looks up a localized string similar to Save Connection File. ''' Friend ReadOnly Property strMenuSaveConnectionFile() As String Get @@ -3330,7 +3357,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Save Connection File As... ähnelt. + ''' Looks up a localized string similar to Save Connection File As.... ''' Friend ReadOnly Property strMenuSaveConnectionFileAs() As String Get @@ -3339,7 +3366,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Screenshot ähnelt. + ''' Looks up a localized string similar to Screenshot. ''' Friend ReadOnly Property strMenuScreenshot() As String Get @@ -3348,7 +3375,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Screenshot Manager ähnelt. + ''' Looks up a localized string similar to Screenshot Manager. ''' Friend ReadOnly Property strMenuScreenshotManager() As String Get @@ -3357,7 +3384,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Send Special Keys (VNC) ähnelt. + ''' Looks up a localized string similar to Send Special Keys (VNC). ''' Friend ReadOnly Property strMenuSendSpecialKeys() As String Get @@ -3366,7 +3393,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Sessions ähnelt. + ''' Looks up a localized string similar to Sessions. ''' Friend ReadOnly Property strMenuSessions() As String Get @@ -3375,7 +3402,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Sessions and Screenshots ähnelt. + ''' Looks up a localized string similar to Sessions and Screenshots. ''' Friend ReadOnly Property strMenuSessionsAndScreenshots() As String Get @@ -3384,7 +3411,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Show Text ähnelt. + ''' Looks up a localized string similar to Show Text. ''' Friend ReadOnly Property strMenuShowText() As String Get @@ -3393,7 +3420,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SmartSize (RDP/VNC) ähnelt. + ''' Looks up a localized string similar to SmartSize (RDP/VNC). ''' Friend ReadOnly Property strMenuSmartSize() As String Get @@ -3402,7 +3429,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SSH File Transfer ähnelt. + ''' Looks up a localized string similar to SSH File Transfer. ''' Friend ReadOnly Property strMenuSSHFileTransfer() As String Get @@ -3411,7 +3438,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Start Chat (VNC) ähnelt. + ''' Looks up a localized string similar to Start Chat (VNC). ''' Friend ReadOnly Property strMenuStartChat() As String Get @@ -3420,7 +3447,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Support Forum ähnelt. + ''' Looks up a localized string similar to Support Forum. ''' Friend ReadOnly Property strMenuSupportForum() As String Get @@ -3429,7 +3456,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &Tools ähnelt. + ''' Looks up a localized string similar to &Tools. ''' Friend ReadOnly Property strMenuTools() As String Get @@ -3438,7 +3465,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Transfer File (SSH) ähnelt. + ''' Looks up a localized string similar to Transfer File (SSH). ''' Friend ReadOnly Property strMenuTransferFile() As String Get @@ -3447,7 +3474,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die &View ähnelt. + ''' Looks up a localized string similar to &View. ''' Friend ReadOnly Property strMenuView() As String Get @@ -3456,7 +3483,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die View Only (VNC) ähnelt. + ''' Looks up a localized string similar to View Only (VNC). ''' Friend ReadOnly Property strMenuViewOnly() As String Get @@ -3465,7 +3492,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Website ähnelt. + ''' Looks up a localized string similar to Website. ''' Friend ReadOnly Property strMenuWebsite() As String Get @@ -3474,7 +3501,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Minimize to System Tray ähnelt. + ''' Looks up a localized string similar to Minimize to System Tray. ''' Friend ReadOnly Property strMinimizeToSysTray() As String Get @@ -3483,7 +3510,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Move down ähnelt. + ''' Looks up a localized string similar to Move down. ''' Friend ReadOnly Property strMoveDown() As String Get @@ -3492,7 +3519,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Move up ähnelt. + ''' Looks up a localized string similar to Move up. ''' Friend ReadOnly Property strMoveUp() As String Get @@ -3501,7 +3528,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die my current credentials (windows logon info) ähnelt. + ''' Looks up a localized string similar to my current credentials (windows logon info). ''' Friend ReadOnly Property strMyCurrentWindowsCreds() As String Get @@ -3510,7 +3537,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Never ähnelt. + ''' Looks up a localized string similar to Never. ''' Friend ReadOnly Property strNever() As String Get @@ -3519,7 +3546,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New Connection ähnelt. + ''' Looks up a localized string similar to New Connection. ''' Friend ReadOnly Property strNewConnection() As String Get @@ -3528,7 +3555,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New Folder ähnelt. + ''' Looks up a localized string similar to New Folder. ''' Friend ReadOnly Property strNewFolder() As String Get @@ -3537,7 +3564,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New Panel ähnelt. + ''' Looks up a localized string similar to New Panel. ''' Friend ReadOnly Property strNewPanel() As String Get @@ -3546,7 +3573,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New Root ähnelt. + ''' Looks up a localized string similar to New Root. ''' Friend ReadOnly Property strNewRoot() As String Get @@ -3555,7 +3582,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die New Title ähnelt. + ''' Looks up a localized string similar to New Title. ''' Friend ReadOnly Property strNewTitle() As String Get @@ -3564,7 +3591,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die No ähnelt. + ''' Looks up a localized string similar to No. ''' Friend ReadOnly Property strNo() As String Get @@ -3573,7 +3600,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die No Compression ähnelt. + ''' Looks up a localized string similar to No Compression. ''' Friend ReadOnly Property strNoCompression() As String Get @@ -3582,7 +3609,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die No Ext. App specified. ähnelt. + ''' Looks up a localized string similar to No Ext. App specified.. ''' Friend ReadOnly Property strNoExtAppDefined() As String Get @@ -3591,7 +3618,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die none ähnelt. + ''' Looks up a localized string similar to none. ''' Friend ReadOnly Property strNoInformation() As String Get @@ -3600,7 +3627,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die None ähnelt. + ''' Looks up a localized string similar to None. ''' Friend ReadOnly Property strNone() As String Get @@ -3609,7 +3636,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Normal ähnelt. + ''' Looks up a localized string similar to Normal. ''' Friend ReadOnly Property strNormal() As String Get @@ -3618,7 +3645,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die No SmartSize ähnelt. + ''' Looks up a localized string similar to No SmartSize. ''' Friend ReadOnly Property strNoSmartSize() As String Get @@ -3627,7 +3654,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die No update available ähnelt. + ''' Looks up a localized string similar to No update available. ''' Friend ReadOnly Property strNoUpdateAvailable() As String Get @@ -3636,8 +3663,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die You are trying to load a connection file that was created using an very early version of mRemote, this could result in an runtime error. - '''If you run into such an error, please create a new connection file! ähnelt. + ''' Looks up a localized string similar to You are trying to load a connection file that was created using an very early version of mRemote, this could result in an runtime error. + '''If you run into such an error, please create a new connection file!. ''' Friend ReadOnly Property strOldConffile() As String Get @@ -3646,7 +3673,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Open new tab to the right of the currently selected tab ähnelt. + ''' Looks up a localized string similar to Open new tab to the right of the currently selected tab. ''' Friend ReadOnly Property strOpenNewTabRight() As String Get @@ -3655,7 +3682,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Open Ports ähnelt. + ''' Looks up a localized string similar to Open Ports. ''' Friend ReadOnly Property strOpenPorts() As String Get @@ -3664,7 +3691,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Panel Name ähnelt. + ''' Looks up a localized string similar to Panel Name. ''' Friend ReadOnly Property strPanelName() As String Get @@ -3673,7 +3700,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Password protect ähnelt. + ''' Looks up a localized string similar to Password protect. ''' Friend ReadOnly Property strPasswordProtect() As String Get @@ -3682,7 +3709,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Please fill all fields ähnelt. + ''' Looks up a localized string similar to Please fill all fields. ''' Friend ReadOnly Property strPleaseFillAllFields() As String Get @@ -3691,7 +3718,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't load PortScan panel! ähnelt. + ''' Looks up a localized string similar to Couldn't load PortScan panel!. ''' Friend ReadOnly Property strPortScanCouldNotLoadPanel() As String Get @@ -3700,7 +3727,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die (These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!) ähnelt. + ''' Looks up a localized string similar to (These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!). ''' Friend ReadOnly Property strPropertiesWillOnlyBeSavedMRemoteXML() As String Get @@ -3709,7 +3736,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter the hostname or ip you want to connect to. ähnelt. + ''' Looks up a localized string similar to Enter the hostname or ip you want to connect to.. ''' Friend ReadOnly Property strPropertyDescriptionAddress() As String Get @@ -3718,7 +3745,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Toggle all inheritance options. ähnelt. + ''' Looks up a localized string similar to Toggle all inheritance options.. ''' Friend ReadOnly Property strPropertyDescriptionAll() As String Get @@ -3727,7 +3754,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select which authentication level this connection should use. ähnelt. + ''' Looks up a localized string similar to Select which authentication level this connection should use.. ''' Friend ReadOnly Property strPropertyDescriptionAuthenticationLevel() As String Get @@ -3736,7 +3763,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select how you want to authenticate against the VNC server. ähnelt. + ''' Looks up a localized string similar to Select how you want to authenticate against the VNC server.. ''' Friend ReadOnly Property strPropertyDescriptionAuthenticationMode() As String Get @@ -3745,7 +3772,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select whether to use bitmap caching or not. ähnelt. + ''' Looks up a localized string similar to Select whether to use bitmap caching or not.. ''' Friend ReadOnly Property strPropertyDescriptionCacheBitmaps() As String Get @@ -3754,7 +3781,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select the colour quality to be used. ähnelt. + ''' Looks up a localized string similar to Select the colour quality to be used.. ''' Friend ReadOnly Property strPropertyDescriptionColors() As String Get @@ -3763,7 +3790,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select the compression value to be used. ähnelt. + ''' Looks up a localized string similar to Select the compression value to be used.. ''' Friend ReadOnly Property strPropertyDescriptionCompression() As String Get @@ -3772,7 +3799,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Put your notes or a description for the host here. ähnelt. + ''' Looks up a localized string similar to Put your notes or a description for the host here.. ''' Friend ReadOnly Property strPropertyDescriptionDescription() As String Get @@ -3781,7 +3808,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select yes if the theme of the remote host should be displayed. ähnelt. + ''' Looks up a localized string similar to Select yes if the theme of the remote host should be displayed.. ''' Friend ReadOnly Property strPropertyDescriptionDisplayThemes() As String Get @@ -3790,7 +3817,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select yes if the wallpaper of the remote host should be displayed. ähnelt. + ''' Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed.. ''' Friend ReadOnly Property strPropertyDescriptionDisplayWallpaper() As String Get @@ -3799,7 +3826,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter your domain. ähnelt. + ''' Looks up a localized string similar to Enter your domain.. ''' Friend ReadOnly Property strPropertyDescriptionDomain() As String Get @@ -3808,7 +3835,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select the encoding mode to be used. ähnelt. + ''' Looks up a localized string similar to Select the encoding mode to be used.. ''' Friend ReadOnly Property strPropertyDescriptionEncoding() As String Get @@ -3817,7 +3844,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select the encryption strength of the remote host. ähnelt. + ''' Looks up a localized string similar to Select the encryption strength of the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionEncryptionStrength() As String Get @@ -3826,7 +3853,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select the external tool to be started. ähnelt. + ''' Looks up a localized string similar to Select the external tool to be started.. ''' Friend ReadOnly Property strPropertyDescriptionExternalTool() As String Get @@ -3835,7 +3862,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select a external tool to be started after the disconnection to the remote host. ähnelt. + ''' Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionExternalToolAfter() As String Get @@ -3844,7 +3871,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select a external tool to be started before the connection to the remote host is established. ähnelt. + ''' Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established.. ''' Friend ReadOnly Property strPropertyDescriptionExternalToolBefore() As String Get @@ -3853,7 +3880,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Choose a icon that will be displayed when connected to the host. ähnelt. + ''' Looks up a localized string similar to Choose a icon that will be displayed when connected to the host.. ''' Friend ReadOnly Property strPropertyDescriptionIcon() As String Get @@ -3862,7 +3889,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter the MAC address of the remote host if you wish to use it in an external tool. ähnelt. + ''' Looks up a localized string similar to Enter the MAC address of the remote host if you wish to use it in an external tool.. ''' Friend ReadOnly Property strPropertyDescriptionMACAddress() As String Get @@ -3871,7 +3898,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die This is the name that will be displayed in the connections tree. ähnelt. + ''' Looks up a localized string similar to This is the name that will be displayed in the connections tree.. ''' Friend ReadOnly Property strPropertyDescriptionName() As String Get @@ -3880,7 +3907,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Sets the panel in which the connection will open. ähnelt. + ''' Looks up a localized string similar to Sets the panel in which the connection will open.. ''' Friend ReadOnly Property strPropertyDescriptionPanel() As String Get @@ -3889,7 +3916,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter your password. ähnelt. + ''' Looks up a localized string similar to Enter your password.. ''' Friend ReadOnly Property strPropertyDescriptionPassword() As String Get @@ -3898,7 +3925,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter the port the selected protocol is listening on. ähnelt. + ''' Looks up a localized string similar to Enter the port the selected protocol is listening on.. ''' Friend ReadOnly Property strPropertyDescriptionPort() As String Get @@ -3907,7 +3934,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Choose the protocol mRemoteNG should use to connect to the host. ähnelt. + ''' Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host.. ''' Friend ReadOnly Property strPropertyDescriptionProtocol() As String Get @@ -3916,7 +3943,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select a PuTTY session to be used when connecting. ähnelt. + ''' Looks up a localized string similar to Select a PuTTY session to be used when connecting.. ''' Friend ReadOnly Property strPropertyDescriptionPuttySession() As String Get @@ -3925,7 +3952,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Specifies the domain name that a user provides to connect to the RD Gateway server. ähnelt. + ''' Looks up a localized string similar to Specifies the domain name that a user provides to connect to the RD Gateway server.. ''' Friend ReadOnly Property strPropertyDescriptionRDGatewayDomain() As String Get @@ -3934,7 +3961,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Specifies the host name of the Remote Desktop Gateway server. ähnelt. + ''' Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server.. ''' Friend ReadOnly Property strPropertyDescriptionRDGatewayHostname() As String Get @@ -3943,7 +3970,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Specifies when to use a Remote Desktop Gateway (RD Gateway) server. ähnelt. + ''' Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server.. ''' Friend ReadOnly Property strPropertyDescriptionRDGatewayUsageMethod() As String Get @@ -3952,7 +3979,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Specifies whether or not to log on to the gateway using the same username and password as the connection. ähnelt. + ''' Looks up a localized string similar to Specifies whether or not to log on to the gateway using the same username and password as the connection.. ''' Friend ReadOnly Property strPropertyDescriptionRDGatewayUseConnectionCredentials() As String Get @@ -3961,7 +3988,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Specifies the user name that a user provides to connect to the RD Gateway server. ähnelt. + ''' Looks up a localized string similar to Specifies the user name that a user provides to connect to the RD Gateway server.. ''' Friend ReadOnly Property strPropertyDescriptionRDGatewayUsername() As String Get @@ -3970,7 +3997,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local disk drives should be shown on the remote host. ähnelt. + ''' Looks up a localized string similar to Select whether local disk drives should be shown on the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionRedirectDrives() As String Get @@ -3979,7 +4006,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host. ähnelt. + ''' Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionRedirectKeys() As String Get @@ -3988,7 +4015,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local ports (ie. com, parallel) should be shown on the remote host. ähnelt. + ''' Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionRedirectPorts() As String Get @@ -3997,7 +4024,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local printers should be shown on the remote host. ähnelt. + ''' Looks up a localized string similar to Select whether local printers should be shown on the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionRedirectPrinters() As String Get @@ -4006,7 +4033,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local Smart Cards should be available on the remote host. ähnelt. + ''' Looks up a localized string similar to Select whether local Smart Cards should be available on the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionRedirectSmartCards() As String Get @@ -4015,7 +4042,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select how remote sound should be redirected. ähnelt. + ''' Looks up a localized string similar to Select how remote sound should be redirected.. ''' Friend ReadOnly Property strPropertyDescriptionRedirectSounds() As String Get @@ -4024,7 +4051,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select one of the available rendering engines that will be used to display HTML. ähnelt. + ''' Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML.. ''' Friend ReadOnly Property strPropertyDescriptionRenderingEngine() As String Get @@ -4033,7 +4060,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Choose the resolution or mode this connection will open in. ähnelt. + ''' Looks up a localized string similar to Choose the resolution or mode this connection will open in.. ''' Friend ReadOnly Property strPropertyDescriptionResolution() As String Get @@ -4042,7 +4069,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select the SmartSize mode to be used. ähnelt. + ''' Looks up a localized string similar to Select the SmartSize mode to be used.. ''' Friend ReadOnly Property strPropertyDescriptionSmartSizeMode() As String Get @@ -4051,7 +4078,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connect to the console session of the remote host. ähnelt. + ''' Looks up a localized string similar to Connect to the console session of the remote host.. ''' Friend ReadOnly Property strPropertyDescriptionUseConsoleSession() As String Get @@ -4060,7 +4087,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Feel free to enter any information you need here. ähnelt. + ''' Looks up a localized string similar to Feel free to enter any information you need here.. ''' Friend ReadOnly Property strPropertyDescriptionUser1() As String Get @@ -4069,7 +4096,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter your username. ähnelt. + ''' Looks up a localized string similar to Enter your username.. ''' Friend ReadOnly Property strPropertyDescriptionUsername() As String Get @@ -4078,7 +4105,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die If you want to establish a view only connection to the host select yes. ähnelt. + ''' Looks up a localized string similar to If you want to establish a view only connection to the host select yes.. ''' Friend ReadOnly Property strPropertyDescriptionViewOnly() As String Get @@ -4087,7 +4114,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter the proxy address to be used. ähnelt. + ''' Looks up a localized string similar to Enter the proxy address to be used.. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyAddress() As String Get @@ -4096,7 +4123,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter your password for authenticating against the proxy. ähnelt. + ''' Looks up a localized string similar to Enter your password for authenticating against the proxy.. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyPassword() As String Get @@ -4105,7 +4132,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter the port the proxy server listens on. ähnelt. + ''' Looks up a localized string similar to Enter the port the proxy server listens on.. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyPort() As String Get @@ -4114,7 +4141,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die If you use a proxy to tunnel VNC connections, select which type it is. ähnelt. + ''' Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is.. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyType() As String Get @@ -4123,7 +4150,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Enter your username for authenticating against the proxy. ähnelt. + ''' Looks up a localized string similar to Enter your username for authenticating against the proxy.. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyUsername() As String Get @@ -4132,7 +4159,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Hostname/IP ähnelt. + ''' Looks up a localized string similar to Hostname/IP. ''' Friend ReadOnly Property strPropertyNameAddress() As String Get @@ -4141,7 +4168,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die All ähnelt. + ''' Looks up a localized string similar to All. ''' Friend ReadOnly Property strPropertyNameAll() As String Get @@ -4150,7 +4177,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Server Authentication ähnelt. + ''' Looks up a localized string similar to Server Authentication. ''' Friend ReadOnly Property strPropertyNameAuthenticationLevel() As String Get @@ -4159,7 +4186,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Authentication Mode ähnelt. + ''' Looks up a localized string similar to Authentication Mode. ''' Friend ReadOnly Property strPropertyNameAuthenticationMode() As String Get @@ -4168,7 +4195,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Cache Bitmaps ähnelt. + ''' Looks up a localized string similar to Cache Bitmaps. ''' Friend ReadOnly Property strPropertyNameCacheBitmaps() As String Get @@ -4177,7 +4204,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Colours ähnelt. + ''' Looks up a localized string similar to Colours. ''' Friend ReadOnly Property strPropertyNameColors() As String Get @@ -4186,7 +4213,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Compression ähnelt. + ''' Looks up a localized string similar to Compression. ''' Friend ReadOnly Property strPropertyNameCompression() As String Get @@ -4195,7 +4222,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Description ähnelt. + ''' Looks up a localized string similar to Description. ''' Friend ReadOnly Property strPropertyNameDescription() As String Get @@ -4204,7 +4231,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Display Themes ähnelt. + ''' Looks up a localized string similar to Display Themes. ''' Friend ReadOnly Property strPropertyNameDisplayThemes() As String Get @@ -4213,7 +4240,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Display Wallpaper ähnelt. + ''' Looks up a localized string similar to Display Wallpaper. ''' Friend ReadOnly Property strPropertyNameDisplayWallpaper() As String Get @@ -4222,7 +4249,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. + ''' Looks up a localized string similar to Domain. ''' Friend ReadOnly Property strPropertyNameDomain() As String Get @@ -4231,7 +4258,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Encoding ähnelt. + ''' Looks up a localized string similar to Encoding. ''' Friend ReadOnly Property strPropertyNameEncoding() As String Get @@ -4240,7 +4267,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Encryption Strength ähnelt. + ''' Looks up a localized string similar to Encryption Strength. ''' Friend ReadOnly Property strPropertyNameEncryptionStrength() As String Get @@ -4249,7 +4276,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die External Tool ähnelt. + ''' Looks up a localized string similar to External Tool. ''' Friend ReadOnly Property strPropertyNameExternalTool() As String Get @@ -4258,7 +4285,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die External Tool After ähnelt. + ''' Looks up a localized string similar to External Tool After. ''' Friend ReadOnly Property strPropertyNameExternalToolAfter() As String Get @@ -4267,7 +4294,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die External Tool Before ähnelt. + ''' Looks up a localized string similar to External Tool Before. ''' Friend ReadOnly Property strPropertyNameExternalToolBefore() As String Get @@ -4276,7 +4303,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Icon ähnelt. + ''' Looks up a localized string similar to Icon. ''' Friend ReadOnly Property strPropertyNameIcon() As String Get @@ -4285,7 +4312,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt. + ''' Looks up a localized string similar to MAC Address. ''' Friend ReadOnly Property strPropertyNameMACAddress() As String Get @@ -4294,7 +4321,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Name ähnelt. + ''' Looks up a localized string similar to Name. ''' Friend ReadOnly Property strPropertyNameName() As String Get @@ -4303,7 +4330,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Panel ähnelt. + ''' Looks up a localized string similar to Panel. ''' Friend ReadOnly Property strPropertyNamePanel() As String Get @@ -4312,7 +4339,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. + ''' Looks up a localized string similar to Password. ''' Friend ReadOnly Property strPropertyNamePassword() As String Get @@ -4321,7 +4348,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Port ähnelt. + ''' Looks up a localized string similar to Port. ''' Friend ReadOnly Property strPropertyNamePort() As String Get @@ -4330,7 +4357,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. + ''' Looks up a localized string similar to Protocol. ''' Friend ReadOnly Property strPropertyNameProtocol() As String Get @@ -4339,7 +4366,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die PuTTY Session ähnelt. + ''' Looks up a localized string similar to PuTTY Session. ''' Friend ReadOnly Property strPropertyNamePuttySession() As String Get @@ -4348,7 +4375,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Domain ähnelt. + ''' Looks up a localized string similar to Gateway Domain. ''' Friend ReadOnly Property strPropertyNameRDGatewayDomain() As String Get @@ -4357,7 +4384,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Hostname ähnelt. + ''' Looks up a localized string similar to Gateway Hostname. ''' Friend ReadOnly Property strPropertyNameRDGatewayHostname() As String Get @@ -4366,7 +4393,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Remote Desktop Gateway Password ähnelt. + ''' Looks up a localized string similar to Remote Desktop Gateway Password. ''' Friend ReadOnly Property strPropertyNameRDGatewayPassword() As String Get @@ -4375,7 +4402,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use Gateway ähnelt. + ''' Looks up a localized string similar to Use Gateway. ''' Friend ReadOnly Property strPropertyNameRDGatewayUsageMethod() As String Get @@ -4384,7 +4411,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Credentials ähnelt. + ''' Looks up a localized string similar to Gateway Credentials. ''' Friend ReadOnly Property strPropertyNameRDGatewayUseConnectionCredentials() As String Get @@ -4393,7 +4420,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Username ähnelt. + ''' Looks up a localized string similar to Gateway Username. ''' Friend ReadOnly Property strPropertyNameRDGatewayUsername() As String Get @@ -4402,7 +4429,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disk Drives ähnelt. + ''' Looks up a localized string similar to Disk Drives. ''' Friend ReadOnly Property strPropertyNameRedirectDrives() As String Get @@ -4411,7 +4438,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Key Combinations ähnelt. + ''' Looks up a localized string similar to Key Combinations. ''' Friend ReadOnly Property strPropertyNameRedirectKeys() As String Get @@ -4420,7 +4447,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Ports ähnelt. + ''' Looks up a localized string similar to Ports. ''' Friend ReadOnly Property strPropertyNameRedirectPorts() As String Get @@ -4429,7 +4456,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Printers ähnelt. + ''' Looks up a localized string similar to Printers. ''' Friend ReadOnly Property strPropertyNameRedirectPrinters() As String Get @@ -4438,7 +4465,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Smart Cards ähnelt. + ''' Looks up a localized string similar to Smart Cards. ''' Friend ReadOnly Property strPropertyNameRedirectSmartCards() As String Get @@ -4447,7 +4474,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Sounds ähnelt. + ''' Looks up a localized string similar to Sounds. ''' Friend ReadOnly Property strPropertyNameRedirectSounds() As String Get @@ -4456,7 +4483,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rendering Engine ähnelt. + ''' Looks up a localized string similar to Rendering Engine. ''' Friend ReadOnly Property strPropertyNameRenderingEngine() As String Get @@ -4465,7 +4492,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Resolution ähnelt. + ''' Looks up a localized string similar to Resolution. ''' Friend ReadOnly Property strPropertyNameResolution() As String Get @@ -4474,7 +4501,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SmartSize Mode ähnelt. + ''' Looks up a localized string similar to SmartSize Mode. ''' Friend ReadOnly Property strPropertyNameSmartSizeMode() As String Get @@ -4483,7 +4510,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use Console Session ähnelt. + ''' Looks up a localized string similar to Use Console Session. ''' Friend ReadOnly Property strPropertyNameUseConsoleSession() As String Get @@ -4492,7 +4519,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die User Field ähnelt. + ''' Looks up a localized string similar to User Field. ''' Friend ReadOnly Property strPropertyNameUser1() As String Get @@ -4501,7 +4528,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. + ''' Looks up a localized string similar to Username. ''' Friend ReadOnly Property strPropertyNameUsername() As String Get @@ -4510,7 +4537,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die View Only ähnelt. + ''' Looks up a localized string similar to View Only. ''' Friend ReadOnly Property strPropertyNameViewOnly() As String Get @@ -4519,7 +4546,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Address ähnelt. + ''' Looks up a localized string similar to Proxy Address. ''' Friend ReadOnly Property strPropertyNameVNCProxyAddress() As String Get @@ -4528,7 +4555,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Password ähnelt. + ''' Looks up a localized string similar to Proxy Password. ''' Friend ReadOnly Property strPropertyNameVNCProxyPassword() As String Get @@ -4537,7 +4564,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Port ähnelt. + ''' Looks up a localized string similar to Proxy Port. ''' Friend ReadOnly Property strPropertyNameVNCProxyPort() As String Get @@ -4546,7 +4573,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Type ähnelt. + ''' Looks up a localized string similar to Proxy Type. ''' Friend ReadOnly Property strPropertyNameVNCProxyType() As String Get @@ -4555,7 +4582,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Username ähnelt. + ''' Looks up a localized string similar to Proxy Username. ''' Friend ReadOnly Property strPropertyNameVNCProxyUsername() As String Get @@ -4564,9 +4591,9 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol Event Disconnected. + ''' Looks up a localized string similar to Protocol Event Disconnected. '''Message: - '''{0} ähnelt. + '''{0}. ''' Friend ReadOnly Property strProtocolEventDisconnected() As String Get @@ -4575,8 +4602,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol Event Disconnected failed. - '''{0} ähnelt. + ''' Looks up a localized string similar to Protocol Event Disconnected failed. + '''{0}. ''' Friend ReadOnly Property strProtocolEventDisconnectFailed() As String Get @@ -4585,7 +4612,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Protocol to import ähnelt. + ''' Looks up a localized string similar to Protocol to import. ''' Friend ReadOnly Property strProtocolToImport() As String Get @@ -4594,7 +4621,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Proxy test failed! ähnelt. + ''' Looks up a localized string similar to Proxy test failed!. ''' Friend ReadOnly Property strProxyTestFailed() As String Get @@ -4603,7 +4630,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Proxy test succeeded! ähnelt. + ''' Looks up a localized string similar to Proxy test succeeded!. ''' Friend ReadOnly Property strProxyTestSucceeded() As String Get @@ -4612,7 +4639,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Connection failed! ähnelt. + ''' Looks up a localized string similar to Connection failed!. ''' Friend ReadOnly Property strPuttyConnectionFailed() As String Get @@ -4621,7 +4648,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Dispose of Putty process failed! ähnelt. + ''' Looks up a localized string similar to Dispose of Putty process failed!. ''' Friend ReadOnly Property strPuttyDisposeFailed() As String Get @@ -4630,7 +4657,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't set focus! ähnelt. + ''' Looks up a localized string similar to Couldn't set focus!. ''' Friend ReadOnly Property strPuttyFocusFailed() As String Get @@ -4639,7 +4666,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Get Putty Sessions Failed! ähnelt. + ''' Looks up a localized string similar to Get Putty Sessions Failed!. ''' Friend ReadOnly Property strPuttyGetSessionsFailed() As String Get @@ -4648,7 +4675,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Putty Handle: {0} ähnelt. + ''' Looks up a localized string similar to Putty Handle: {0}. ''' Friend ReadOnly Property strPuttyHandle() As String Get @@ -4657,7 +4684,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Killing Putty Process failed! ähnelt. + ''' Looks up a localized string similar to Killing Putty Process failed!. ''' Friend ReadOnly Property strPuttyKillFailed() As String Get @@ -4666,7 +4693,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Panel Handle: {0} ähnelt. + ''' Looks up a localized string similar to Panel Handle: {0}. ''' Friend ReadOnly Property strPuttyParentHandle() As String Get @@ -4675,7 +4702,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Putty Resize Failed! ähnelt. + ''' Looks up a localized string similar to Putty Resize Failed!. ''' Friend ReadOnly Property strPuttyResizeFailed() As String Get @@ -4684,7 +4711,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die PuTTY Settings ähnelt. + ''' Looks up a localized string similar to PuTTY Settings. ''' Friend ReadOnly Property strPuttySettings() As String Get @@ -4693,7 +4720,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Show PuTTY Settings Dialog failed! ähnelt. + ''' Looks up a localized string similar to Show PuTTY Settings Dialog failed!. ''' Friend ReadOnly Property strPuttyShowSettingsDialogFailed() As String Get @@ -4702,7 +4729,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Putty Start Failed! ähnelt. + ''' Looks up a localized string similar to Putty Start Failed!. ''' Friend ReadOnly Property strPuttyStartFailed() As String Get @@ -4711,7 +4738,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die --- PuTTY Stuff --- ähnelt. + ''' Looks up a localized string similar to --- PuTTY Stuff ---. ''' Friend ReadOnly Property strPuttyStuff() As String Get @@ -4720,7 +4747,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die PuTTY Title: {0} ähnelt. + ''' Looks up a localized string similar to PuTTY Title: {0}. ''' Friend ReadOnly Property strPuttyTitle() As String Get @@ -4729,7 +4756,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Quick: {0} ähnelt. + ''' Looks up a localized string similar to Quick: {0}. ''' Friend ReadOnly Property strQuick() As String Get @@ -4738,7 +4765,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Quick Connect ähnelt. + ''' Looks up a localized string similar to Quick Connect. ''' Friend ReadOnly Property strQuickConnect() As String Get @@ -4747,7 +4774,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Quick Connect Add Failed! ähnelt. + ''' Looks up a localized string similar to Quick Connect Add Failed!. ''' Friend ReadOnly Property strQuickConnectAddFailed() As String Get @@ -4756,7 +4783,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Creating quick connect failed ähnelt. + ''' Looks up a localized string similar to Creating quick connect failed. ''' Friend ReadOnly Property strQuickConnectFailed() As String Get @@ -4765,7 +4792,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Quick Connect History Exists Failed! ähnelt. + ''' Looks up a localized string similar to Quick Connect History Exists Failed!. ''' Friend ReadOnly Property strQuickConnectHistoryExistsFailed() As String Get @@ -4774,7 +4801,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RAW ähnelt. + ''' Looks up a localized string similar to RAW. ''' Friend ReadOnly Property strRAW() As String Get @@ -4783,7 +4810,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP ähnelt. + ''' Looks up a localized string similar to RDP. ''' Friend ReadOnly Property strRDP() As String Get @@ -4792,7 +4819,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 16777216 Colors (24bit) ähnelt. + ''' Looks up a localized string similar to 16777216 Colors (24bit). ''' Friend ReadOnly Property strRDP16777216Colors() As String Get @@ -4801,7 +4828,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 256 Colors (8bit) ähnelt. + ''' Looks up a localized string similar to 256 Colors (8bit). ''' Friend ReadOnly Property strRDP256Colors() As String Get @@ -4810,7 +4837,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 4294967296 Colors (32bit) ähnelt. + ''' Looks up a localized string similar to 4294967296 Colors (32bit). ''' Friend ReadOnly Property strRDP4294967296Colors() As String Get @@ -4819,7 +4846,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die 65536 Colors (16bit) ähnelt. + ''' Looks up a localized string similar to 65536 Colors (16bit). ''' Friend ReadOnly Property strRDP65536Colors() As String Get @@ -4828,7 +4855,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP Add Resolution failed! ähnelt. + ''' Looks up a localized string similar to RDP Add Resolution failed!. ''' Friend ReadOnly Property strRdpAddResolutionFailed() As String Get @@ -4837,7 +4864,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP Add Resolutions failed! ähnelt. + ''' Looks up a localized string similar to RDP Add Resolutions failed!. ''' Friend ReadOnly Property strRdpAddResolutionsFailed() As String Get @@ -4846,7 +4873,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Add Session failed ähnelt. + ''' Looks up a localized string similar to Add Session failed. ''' Friend ReadOnly Property strRdpAddSessionFailed() As String Get @@ -4855,7 +4882,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Close RDP Connection failed! ähnelt. + ''' Looks up a localized string similar to Close RDP Connection failed!. ''' Friend ReadOnly Property strRdpCloseConnectionFailed() As String Get @@ -4864,7 +4891,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Opening connection failed! ähnelt. + ''' Looks up a localized string similar to Opening connection failed!. ''' Friend ReadOnly Property strRdpConnectionOpenFailed() As String Get @@ -4873,7 +4900,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't create RDP control, please check mRemote requirements. ähnelt. + ''' Looks up a localized string similar to Couldn't create RDP control, please check mRemote requirements.. ''' Friend ReadOnly Property strRdpControlCreationFailed() As String Get @@ -4882,7 +4909,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disable Cursor blinking ähnelt. + ''' Looks up a localized string similar to Disable Cursor blinking. ''' Friend ReadOnly Property strRDPDisableCursorblinking() As String Get @@ -4891,7 +4918,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disable Cursor Shadow ähnelt. + ''' Looks up a localized string similar to Disable Cursor Shadow. ''' Friend ReadOnly Property strRDPDisableCursorShadow() As String Get @@ -4900,7 +4927,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disable Full Window drag ähnelt. + ''' Looks up a localized string similar to Disable Full Window drag. ''' Friend ReadOnly Property strRDPDisableFullWindowdrag() As String Get @@ -4909,7 +4936,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disable Menu Animations ähnelt. + ''' Looks up a localized string similar to Disable Menu Animations. ''' Friend ReadOnly Property strRDPDisableMenuAnimations() As String Get @@ -4918,7 +4945,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disable Themes ähnelt. + ''' Looks up a localized string similar to Disable Themes. ''' Friend ReadOnly Property strRDPDisableThemes() As String Get @@ -4927,7 +4954,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Disable Wallpaper ähnelt. + ''' Looks up a localized string similar to Disable Wallpaper. ''' Friend ReadOnly Property strRDPDisableWallpaper() As String Get @@ -4936,7 +4963,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP disconnected! ähnelt. + ''' Looks up a localized string similar to RDP disconnected!. ''' Friend ReadOnly Property strRdpDisconnected() As String Get @@ -4945,7 +4972,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP Disconnect failed, trying to close! ähnelt. + ''' Looks up a localized string similar to RDP Disconnect failed, trying to close!. ''' Friend ReadOnly Property strRdpDisconnectFailed() As String Get @@ -4954,7 +4981,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Internal error code 1. ähnelt. + ''' Looks up a localized string similar to Internal error code 1.. ''' Friend ReadOnly Property strRdpErrorCode1() As String Get @@ -4963,7 +4990,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Internal error code 2. ähnelt. + ''' Looks up a localized string similar to Internal error code 2.. ''' Friend ReadOnly Property strRdpErrorCode2() As String Get @@ -4972,7 +4999,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Internal error code 3. This is not a valid state. ähnelt. + ''' Looks up a localized string similar to Internal error code 3. This is not a valid state.. ''' Friend ReadOnly Property strRdpErrorCode3() As String Get @@ -4981,7 +5008,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Internal error code 4. ähnelt. + ''' Looks up a localized string similar to Internal error code 4.. ''' Friend ReadOnly Property strRdpErrorCode4() As String Get @@ -4990,7 +5017,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die An unrecoverable error has occurred during client connection. ähnelt. + ''' Looks up a localized string similar to An unrecoverable error has occurred during client connection.. ''' Friend ReadOnly Property strRdpErrorConnection() As String Get @@ -4999,7 +5026,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die GetError failed (FatalErrors) ähnelt. + ''' Looks up a localized string similar to GetError failed (FatalErrors). ''' Friend ReadOnly Property strRdpErrorGetFailure() As String Get @@ -5008,7 +5035,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die An unknown fatal RDP error has occurred. Error code {0}. ähnelt. + ''' Looks up a localized string similar to An unknown fatal RDP error has occurred. Error code {0}.. ''' Friend ReadOnly Property strRdpErrorGetUnknown() As String Get @@ -5017,7 +5044,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die An out-of-memory error has occurred. ähnelt. + ''' Looks up a localized string similar to An out-of-memory error has occurred.. ''' Friend ReadOnly Property strRdpErrorOutOfMemory() As String Get @@ -5026,7 +5053,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die An unknown error has occurred. ähnelt. + ''' Looks up a localized string similar to An unknown error has occurred.. ''' Friend ReadOnly Property strRdpErrorUnknown() As String Get @@ -5035,7 +5062,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die A window-creation error has occurred. ähnelt. + ''' Looks up a localized string similar to A window-creation error has occurred.. ''' Friend ReadOnly Property strRdpErrorWindowCreation() As String Get @@ -5044,7 +5071,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Winsock initialization error. ähnelt. + ''' Looks up a localized string similar to Winsock initialization error.. ''' Friend ReadOnly Property strRdpErrorWinsock() As String Get @@ -5053,7 +5080,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't import rdp file! ähnelt. + ''' Looks up a localized string similar to Couldn't import rdp file!. ''' Friend ReadOnly Property strRdpFileCouldNotBeImported() As String Get @@ -5062,7 +5089,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Fit To Panel ähnelt. + ''' Looks up a localized string similar to Fit To Panel. ''' Friend ReadOnly Property strRDPFitToPanel() As String Get @@ -5071,7 +5098,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP Focus failed! ähnelt. + ''' Looks up a localized string similar to RDP Focus failed!. ''' Friend ReadOnly Property strRdpFocusFailed() As String Get @@ -5080,7 +5107,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RD Gateway is supported. ähnelt. + ''' Looks up a localized string similar to RD Gateway is supported.. ''' Friend ReadOnly Property strRdpGatewayIsSupported() As String Get @@ -5089,7 +5116,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RD Gateway is not supported! ähnelt. + ''' Looks up a localized string similar to RD Gateway is not supported!. ''' Friend ReadOnly Property strRdpGatewayNotSupported() As String Get @@ -5098,7 +5125,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die GetSessions failed! ähnelt. + ''' Looks up a localized string similar to GetSessions failed!. ''' Friend ReadOnly Property strRdpGetSessionsFailed() As String Get @@ -5107,7 +5134,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Open RDP Connectin failed! ähnelt. + ''' Looks up a localized string similar to Open RDP Connectin failed!. ''' Friend ReadOnly Property strRdpOpenConnectionFailed() As String Get @@ -5116,7 +5143,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP Reconnection Count ähnelt. + ''' Looks up a localized string similar to RDP Reconnection Count. ''' Friend ReadOnly Property strRdpReconnectCount() As String Get @@ -5125,7 +5152,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetAuthenticationLevel failed! ähnelt. + ''' Looks up a localized string similar to RDP SetAuthenticationLevel failed!. ''' Friend ReadOnly Property strRdpSetAuthenticationLevelFailed() As String Get @@ -5134,7 +5161,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetUseConsoleSession failed! ähnelt. + ''' Looks up a localized string similar to RDP SetUseConsoleSession failed!. ''' Friend ReadOnly Property strRdpSetConsoleSessionFailed() As String Get @@ -5143,7 +5170,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Setting Console switch for RDC {0}. ähnelt. + ''' Looks up a localized string similar to Setting Console switch for RDC {0}.. ''' Friend ReadOnly Property strRdpSetConsoleSwitch() As String Get @@ -5152,7 +5179,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetCredentials failed! ähnelt. + ''' Looks up a localized string similar to RDP SetCredentials failed!. ''' Friend ReadOnly Property strRdpSetCredentialsFailed() As String Get @@ -5161,7 +5188,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetEventHandlers failed! ähnelt. + ''' Looks up a localized string similar to RDP SetEventHandlers failed!. ''' Friend ReadOnly Property strRdpSetEventHandlersFailed() As String Get @@ -5170,7 +5197,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetRDGateway failed! ähnelt. + ''' Looks up a localized string similar to RDP SetRDGateway failed!. ''' Friend ReadOnly Property strRdpSetGatewayFailed() As String Get @@ -5179,7 +5206,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetPerformanceFlags failed! ähnelt. + ''' Looks up a localized string similar to RDP SetPerformanceFlags failed!. ''' Friend ReadOnly Property strRdpSetPerformanceFlagsFailed() As String Get @@ -5188,7 +5215,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetPort failed! ähnelt. + ''' Looks up a localized string similar to RDP SetPort failed!. ''' Friend ReadOnly Property strRdpSetPortFailed() As String Get @@ -5197,7 +5224,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetProps failed! ähnelt. + ''' Looks up a localized string similar to RDP SetProps failed!. ''' Friend ReadOnly Property strRdpSetPropsFailed() As String Get @@ -5206,7 +5233,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rdp Set Redirection Failed! ähnelt. + ''' Looks up a localized string similar to Rdp Set Redirection Failed!. ''' Friend ReadOnly Property strRdpSetRedirectionFailed() As String Get @@ -5215,7 +5242,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rdp Set Redirect Keys Failed! ähnelt. + ''' Looks up a localized string similar to Rdp Set Redirect Keys Failed!. ''' Friend ReadOnly Property strRdpSetRedirectKeysFailed() As String Get @@ -5224,7 +5251,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP SetResolution failed! ähnelt. + ''' Looks up a localized string similar to RDP SetResolution failed!. ''' Friend ReadOnly Property strRdpSetResolutionFailed() As String Get @@ -5233,7 +5260,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Smart Size ähnelt. + ''' Looks up a localized string similar to Smart Size. ''' Friend ReadOnly Property strRDPSmartSize() As String Get @@ -5242,7 +5269,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Bring to this computer ähnelt. + ''' Looks up a localized string similar to Bring to this computer. ''' Friend ReadOnly Property strRDPSoundBringToThisComputer() As String Get @@ -5251,7 +5278,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Do not play ähnelt. + ''' Looks up a localized string similar to Do not play. ''' Friend ReadOnly Property strRDPSoundDoNotPlay() As String Get @@ -5260,7 +5287,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Leave at remote computer ähnelt. + ''' Looks up a localized string similar to Leave at remote computer. ''' Friend ReadOnly Property strRDPSoundLeaveAtRemoteComputer() As String Get @@ -5269,7 +5296,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP ToggleFullscreen failed! ähnelt. + ''' Looks up a localized string similar to RDP ToggleFullscreen failed!. ''' Friend ReadOnly Property strRdpToggleFullscreenFailed() As String Get @@ -5278,7 +5305,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die RDP ToggleSmartSize failed! ähnelt. + ''' Looks up a localized string similar to RDP ToggleSmartSize failed!. ''' Friend ReadOnly Property strRdpToggleSmartSizeFailed() As String Get @@ -5287,7 +5314,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Reconnect to previously opened sessions on startup ähnelt. + ''' Looks up a localized string similar to Reconnect to previously opened sessions on startup. ''' Friend ReadOnly Property strReconnectAtStartup() As String Get @@ -5296,7 +5323,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. + ''' Looks up a localized string similar to Refresh. ''' Friend ReadOnly Property strRefresh() As String Get @@ -5305,7 +5332,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Remote file ähnelt. + ''' Looks up a localized string similar to Remote file. ''' Friend ReadOnly Property strRemoteFile() As String Get @@ -5314,7 +5341,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Remove All ähnelt. + ''' Looks up a localized string similar to Remove All. ''' Friend ReadOnly Property strRemoveAll() As String Get @@ -5323,7 +5350,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rename ähnelt. + ''' Looks up a localized string similar to Rename. ''' Friend ReadOnly Property strRename() As String Get @@ -5332,7 +5359,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Rlogin ähnelt. + ''' Looks up a localized string similar to Rlogin. ''' Friend ReadOnly Property strRlogin() As String Get @@ -5341,7 +5368,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Save ähnelt. + ''' Looks up a localized string similar to Save. ''' Friend ReadOnly Property strSave() As String Get @@ -5350,7 +5377,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Save All ähnelt. + ''' Looks up a localized string similar to Save All. ''' Friend ReadOnly Property strSaveAll() As String Get @@ -5359,7 +5386,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Do you want to save the current connections file before loading another? ähnelt. + ''' Looks up a localized string similar to Do you want to save the current connections file before loading another?. ''' Friend ReadOnly Property strSaveConnectionsFileBeforeOpeningAnother() As String Get @@ -5368,7 +5395,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Save connections on exit ähnelt. + ''' Looks up a localized string similar to Save connections on exit. ''' Friend ReadOnly Property strSaveConsOnExit() As String Get @@ -5377,7 +5404,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Graphics Interchange Format File (.gif)|*.gif|Joint Photographic Experts Group File (.jpeg)|*.jpeg|Joint Photographic Experts Group File (.jpg)|*.jpg|Portable Network Graphics File (.png)|*.png ähnelt. + ''' Looks up a localized string similar to Graphics Interchange Format File (.gif)|*.gif|Joint Photographic Experts Group File (.jpeg)|*.jpeg|Joint Photographic Experts Group File (.jpg)|*.jpg|Portable Network Graphics File (.png)|*.png. ''' Friend ReadOnly Property strSaveImageFilter() As String Get @@ -5386,7 +5413,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Screen ähnelt. + ''' Looks up a localized string similar to Screen. ''' Friend ReadOnly Property strScreen() As String Get @@ -5395,7 +5422,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Screenshot ähnelt. + ''' Looks up a localized string similar to Screenshot. ''' Friend ReadOnly Property strScreenshot() As String Get @@ -5404,7 +5431,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Screenshots ähnelt. + ''' Looks up a localized string similar to Screenshots. ''' Friend ReadOnly Property strScreenshots() As String Get @@ -5413,7 +5440,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Send To... ähnelt. + ''' Looks up a localized string similar to Send To.... ''' Friend ReadOnly Property strSendTo() As String Get @@ -5422,7 +5449,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Get Sessions Background failed ähnelt. + ''' Looks up a localized string similar to Get Sessions Background failed. ''' Friend ReadOnly Property strSessionGetFailed() As String Get @@ -5431,7 +5458,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Kill Session Background failed ähnelt. + ''' Looks up a localized string similar to Kill Session Background failed. ''' Friend ReadOnly Property strSessionKillFailed() As String Get @@ -5440,7 +5467,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Set hostname like display name when creating new connections ähnelt. + ''' Looks up a localized string similar to Set hostname like display name when creating new connections. ''' Friend ReadOnly Property strSetHostnameLikeDisplayName() As String Get @@ -5449,7 +5476,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Setting main form text failed ähnelt. + ''' Looks up a localized string similar to Setting main form text failed. ''' Friend ReadOnly Property strSettingMainFormTextFailed() As String Get @@ -5458,7 +5485,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Couldn't save settings or dispose SysTray Icon! ähnelt. + ''' Looks up a localized string similar to Couldn't save settings or dispose SysTray Icon!. ''' Friend ReadOnly Property strSettingsCouldNotBeSavedOrTrayDispose() As String Get @@ -5467,7 +5494,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Show description tooltips in connection tree ähnelt. + ''' Looks up a localized string similar to Show description tooltips in connection tree. ''' Friend ReadOnly Property strShowDescriptionTooltips() As String Get @@ -5476,7 +5503,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Show full connections file path in window title ähnelt. + ''' Looks up a localized string similar to Show full connections file path in window title. ''' Friend ReadOnly Property strShowFullConsFilePath() As String Get @@ -5485,7 +5512,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Show logon information on tab names ähnelt. + ''' Looks up a localized string similar to Show logon information on tab names. ''' Friend ReadOnly Property strShowLogonInfoOnTabs() As String Get @@ -5494,7 +5521,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Show protocols on tab names ähnelt. + ''' Looks up a localized string similar to Show protocols on tab names. ''' Friend ReadOnly Property strShowProtocolOnTabs() As String Get @@ -5503,7 +5530,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Single click on connection opens it ähnelt. + ''' Looks up a localized string similar to Single click on connection opens it. ''' Friend ReadOnly Property strSingleClickOnConnectionOpensIt() As String Get @@ -5512,7 +5539,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Single click on opened connection switches to it ähnelt. + ''' Looks up a localized string similar to Single click on opened connection switches to it. ''' Friend ReadOnly Property strSingleClickOnOpenConnectionSwitchesToIt() As String Get @@ -5521,7 +5548,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Aspect ähnelt. + ''' Looks up a localized string similar to Aspect. ''' Friend ReadOnly Property strSmartSizeModeAspect() As String Get @@ -5530,7 +5557,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Free ähnelt. + ''' Looks up a localized string similar to Free. ''' Friend ReadOnly Property strSmartSizeModeFree() As String Get @@ -5539,7 +5566,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die No SmartSize ähnelt. + ''' Looks up a localized string similar to No SmartSize. ''' Friend ReadOnly Property strSmartSizeModeNone() As String Get @@ -5548,7 +5575,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Socks 5 ähnelt. + ''' Looks up a localized string similar to Socks 5. ''' Friend ReadOnly Property strSocks5() As String Get @@ -5557,7 +5584,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Sort ähnelt. + ''' Looks up a localized string similar to Sort. ''' Friend ReadOnly Property strSort() As String Get @@ -5566,7 +5593,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Ascending (A-Z) ähnelt. + ''' Looks up a localized string similar to Ascending (A-Z). ''' Friend ReadOnly Property strSortAsc() As String Get @@ -5575,7 +5602,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Descending (Z-A) ähnelt. + ''' Looks up a localized string similar to Descending (Z-A). ''' Friend ReadOnly Property strSortDesc() As String Get @@ -5584,7 +5611,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Speical Keys ähnelt. + ''' Looks up a localized string similar to Speical Keys. ''' Friend ReadOnly Property strSpecialKeys() As String Get @@ -5593,7 +5620,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Please see Help - Getting started - SQL Configuration for more Info! ähnelt. + ''' Looks up a localized string similar to Please see Help - Getting started - SQL Configuration for more Info!. ''' Friend ReadOnly Property strSQLInfo() As String Get @@ -5602,7 +5629,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SQL Server ähnelt. + ''' Looks up a localized string similar to SQL Server. ''' Friend ReadOnly Property strSQLServer() As String Get @@ -5611,7 +5638,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SQL Update check finished and there is an update available! Going to refresh connections. ähnelt. + ''' Looks up a localized string similar to SQL Update check finished and there is an update available! Going to refresh connections.. ''' Friend ReadOnly Property strSqlUpdateCheckUpdateAvailable() As String Get @@ -5620,7 +5647,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SSH version 1 ähnelt. + ''' Looks up a localized string similar to SSH version 1. ''' Friend ReadOnly Property strSsh1() As String Get @@ -5629,7 +5656,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SSH version 2 ähnelt. + ''' Looks up a localized string similar to SSH version 2. ''' Friend ReadOnly Property strSsh2() As String Get @@ -5638,7 +5665,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die SSH background transfer failed! ähnelt. + ''' Looks up a localized string similar to SSH background transfer failed!. ''' Friend ReadOnly Property strSSHStartTransferBG() As String Get @@ -5647,7 +5674,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Transfer successful! ähnelt. + ''' Looks up a localized string similar to Transfer successful!. ''' Friend ReadOnly Property strSSHTranferSuccessful() As String Get @@ -5656,7 +5683,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Ssh Transfee End (UI.Window.SSHTransfer) failed! ähnelt. + ''' Looks up a localized string similar to Ssh Transfee End (UI.Window.SSHTransfer) failed!. ''' Friend ReadOnly Property strSSHTransferEndFailed() As String Get @@ -5665,7 +5692,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Transfer ähnelt. + ''' Looks up a localized string similar to Transfer. ''' Friend ReadOnly Property strSSHTransferFailed() As String Get @@ -5674,7 +5701,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Start IP ähnelt. + ''' Looks up a localized string similar to Start IP. ''' Friend ReadOnly Property strStartIP() As String Get @@ -5683,7 +5710,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Start Port ähnelt. + ''' Looks up a localized string similar to Start Port. ''' Friend ReadOnly Property strStartPort() As String Get @@ -5692,7 +5719,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Startup/Exit ähnelt. + ''' Looks up a localized string similar to Startup/Exit. ''' Friend ReadOnly Property strStartupExit() As String Get @@ -5701,7 +5728,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Status ähnelt. + ''' Looks up a localized string similar to Status. ''' Friend ReadOnly Property strStatus() As String Get @@ -5710,7 +5737,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Switch to Notifications panel on ähnelt. + ''' Looks up a localized string similar to Switch to Notifications panel on. ''' Friend ReadOnly Property strSwitchToErrorsAndInfos() As String Get @@ -5719,7 +5746,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Advanced ähnelt. + ''' Looks up a localized string similar to Advanced. ''' Friend ReadOnly Property strTabAdvanced() As String Get @@ -5728,7 +5755,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. + ''' Looks up a localized string similar to Appearance. ''' Friend ReadOnly Property strTabAppearance() As String Get @@ -5737,7 +5764,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Tabs && Panels ähnelt. + ''' Looks up a localized string similar to Tabs && Panels. ''' Friend ReadOnly Property strTabsAndPanels() As String Get @@ -5746,7 +5773,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Telnet ähnelt. + ''' Looks up a localized string similar to Telnet. ''' Friend ReadOnly Property strTelnet() As String Get @@ -5755,7 +5782,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die the follwing ähnelt. + ''' Looks up a localized string similar to the follwing. ''' Friend ReadOnly Property strTheFollowing() As String Get @@ -5764,7 +5791,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Error ({0}) ähnelt. + ''' Looks up a localized string similar to Error ({0}). ''' Friend ReadOnly Property strTitleError() As String Get @@ -5773,7 +5800,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Information ({0}) ähnelt. + ''' Looks up a localized string similar to Information ({0}). ''' Friend ReadOnly Property strTitleInformation() As String Get @@ -5782,7 +5809,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. + ''' Looks up a localized string similar to Password. ''' Friend ReadOnly Property strTitlePassword() As String Get @@ -5791,7 +5818,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Select Panel ähnelt. + ''' Looks up a localized string similar to Select Panel. ''' Friend ReadOnly Property strTitleSelectPanel() As String Get @@ -5800,7 +5827,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Warning ({0}) ähnelt. + ''' Looks up a localized string similar to Warning ({0}). ''' Friend ReadOnly Property strTitleWarning() As String Get @@ -5809,7 +5836,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Tools ähnelt. + ''' Looks up a localized string similar to Tools. ''' Friend ReadOnly Property strTools() As String Get @@ -5818,7 +5845,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Transfer ähnelt. + ''' Looks up a localized string similar to Transfer. ''' Friend ReadOnly Property strTransfer() As String Get @@ -5827,7 +5854,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Transfer failed! ähnelt. + ''' Looks up a localized string similar to Transfer failed!. ''' Friend ReadOnly Property strTransferFailed() As String Get @@ -5836,7 +5863,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Try to integrate ähnelt. + ''' Looks up a localized string similar to Try to integrate. ''' Friend ReadOnly Property strTryIntegrate() As String Get @@ -5845,7 +5872,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Type ähnelt. + ''' Looks up a localized string similar to Type. ''' Friend ReadOnly Property strType() As String Get @@ -5854,7 +5881,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Ultra VNC Repeater ähnelt. + ''' Looks up a localized string similar to Ultra VNC Repeater. ''' Friend ReadOnly Property strUltraVncRepeater() As String Get @@ -5863,7 +5890,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die UltraVNC SingleClick Port ähnelt. + ''' Looks up a localized string similar to UltraVNC SingleClick Port. ''' Friend ReadOnly Property strUltraVNCSCListeningPort() As String Get @@ -5872,7 +5899,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Uncheck the properties you want not to be saved! ähnelt. + ''' Looks up a localized string similar to Uncheck the properties you want not to be saved!. ''' Friend ReadOnly Property strUncheckProperties() As String Get @@ -5881,7 +5908,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die mRemoteNG requires an update ähnelt. + ''' Looks up a localized string similar to mRemoteNG requires an update. ''' Friend ReadOnly Property strUpdateAvailable() As String Get @@ -5890,7 +5917,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die mRemoteNG can periodically connect to the mRemoteNG website to check for updates and product announcements. ähnelt. + ''' Looks up a localized string similar to mRemoteNG can periodically connect to the mRemoteNG website to check for updates and product announcements.. ''' Friend ReadOnly Property strUpdateCheck() As String Get @@ -5899,7 +5926,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check for update completion failed! ähnelt. + ''' Looks up a localized string similar to Check for update completion failed!. ''' Friend ReadOnly Property strUpdateCheckCompleteFailed() As String Get @@ -5908,7 +5935,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Check For Update failed! ähnelt. + ''' Looks up a localized string similar to Check For Update failed!. ''' Friend ReadOnly Property strUpdateCheckFailed() As String Get @@ -5917,7 +5944,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Error deleting update file! ähnelt. + ''' Looks up a localized string similar to Error deleting update file!. ''' Friend ReadOnly Property strUpdateDeleteFailed() As String Get @@ -5926,8 +5953,8 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Download complete! - '''mRemoteNG will now quit and begin with the installation. ähnelt. + ''' Looks up a localized string similar to Download complete! + '''mRemoteNG will now quit and begin with the installation.. ''' Friend ReadOnly Property strUpdateDownloadComplete() As String Get @@ -5936,7 +5963,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Download complete failed! ähnelt. + ''' Looks up a localized string similar to Download complete failed!. ''' Friend ReadOnly Property strUpdateDownloadCompleteFailed() As String Get @@ -5945,7 +5972,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Download Update failed! ähnelt. + ''' Looks up a localized string similar to Download Update failed!. ''' Friend ReadOnly Property strUpdateDownloadFailed() As String Get @@ -5954,7 +5981,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Every {0} days ähnelt. + ''' Looks up a localized string similar to Every {0} days. ''' Friend ReadOnly Property strUpdateFrequencyCustom() As String Get @@ -5963,7 +5990,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Daily ähnelt. + ''' Looks up a localized string similar to Daily. ''' Friend ReadOnly Property strUpdateFrequencyDaily() As String Get @@ -5972,7 +5999,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Monthly ähnelt. + ''' Looks up a localized string similar to Monthly. ''' Friend ReadOnly Property strUpdateFrequencyMonthly() As String Get @@ -5981,7 +6008,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Weekly ähnelt. + ''' Looks up a localized string similar to Weekly. ''' Friend ReadOnly Property strUpdateFrequencyWeekly() As String Get @@ -5990,7 +6017,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Error starting update! ähnelt. + ''' Looks up a localized string similar to Error starting update!. ''' Friend ReadOnly Property strUpdateStartFailed() As String Get @@ -5999,7 +6026,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use a different username and password ähnelt. + ''' Looks up a localized string similar to Use a different username and password. ''' Friend ReadOnly Property strUseDifferentUsernameAndPassword() As String Get @@ -6008,7 +6035,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use only Notifications panel (no messagebox popups) ähnelt. + ''' Looks up a localized string similar to Use only Notifications panel (no messagebox popups). ''' Friend ReadOnly Property strUseOnlyErrorsAndInfosPanel() As String Get @@ -6017,7 +6044,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die User ähnelt. + ''' Looks up a localized string similar to User. ''' Friend ReadOnly Property strUser() As String Get @@ -6026,7 +6053,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use the same username and password ähnelt. + ''' Looks up a localized string similar to Use the same username and password. ''' Friend ReadOnly Property strUseSameUsernameAndPassword() As String Get @@ -6035,7 +6062,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Use SQL Server to load && save connections ähnelt. + ''' Looks up a localized string similar to Use SQL Server to load && save connections. ''' Friend ReadOnly Property strUseSQLServer() As String Get @@ -6044,7 +6071,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Version ähnelt. + ''' Looks up a localized string similar to Version. ''' Friend ReadOnly Property strVersion() As String Get @@ -6053,7 +6080,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC ähnelt. + ''' Looks up a localized string similar to VNC. ''' Friend ReadOnly Property strVnc() As String Get @@ -6062,7 +6089,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC disconnect failed! ähnelt. + ''' Looks up a localized string similar to VNC disconnect failed!. ''' Friend ReadOnly Property strVncConnectionDisconnectFailed() As String Get @@ -6071,7 +6098,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Opening connection failed! ähnelt. + ''' Looks up a localized string similar to Opening connection failed!. ''' Friend ReadOnly Property strVncConnectionOpenFailed() As String Get @@ -6080,7 +6107,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC Refresh Screen Failed! ähnelt. + ''' Looks up a localized string similar to VNC Refresh Screen Failed!. ''' Friend ReadOnly Property strVncRefreshFailed() As String Get @@ -6089,7 +6116,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC SendSpecialKeys failed! ähnelt. + ''' Looks up a localized string similar to VNC SendSpecialKeys failed!. ''' Friend ReadOnly Property strVncSendSpecialKeysFailed() As String Get @@ -6098,7 +6125,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC Set Event Handlers failed! ähnelt. + ''' Looks up a localized string similar to VNC Set Event Handlers failed!. ''' Friend ReadOnly Property strVncSetEventHandlersFailed() As String Get @@ -6107,7 +6134,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC Set Props Failed! ähnelt. + ''' Looks up a localized string similar to VNC Set Props Failed!. ''' Friend ReadOnly Property strVncSetPropsFailed() As String Get @@ -6116,7 +6143,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC Start Chat Failed! ähnelt. + ''' Looks up a localized string similar to VNC Start Chat Failed!. ''' Friend ReadOnly Property strVncStartChatFailed() As String Get @@ -6125,7 +6152,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC Toggle SmartSize Failed! ähnelt. + ''' Looks up a localized string similar to VNC Toggle SmartSize Failed!. ''' Friend ReadOnly Property strVncToggleSmartSizeFailed() As String Get @@ -6134,7 +6161,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die VNC Toggle ViewOnly Failed! ähnelt. + ''' Looks up a localized string similar to VNC Toggle ViewOnly Failed!. ''' Friend ReadOnly Property strVncToggleViewOnlyFailed() As String Get @@ -6143,7 +6170,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Warn me if authentication fails ähnelt. + ''' Looks up a localized string similar to Warn me if authentication fails. ''' Friend ReadOnly Property strWarnIfAuthFails() As String Get @@ -6152,7 +6179,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Warnings ähnelt. + ''' Looks up a localized string similar to Warnings. ''' Friend ReadOnly Property strWarnings() As String Get @@ -6161,7 +6188,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Uses the DockPanel Suite by [Weifen Luo] ähnelt. + ''' Looks up a localized string similar to Uses the DockPanel Suite by [Weifen Luo]. ''' Friend ReadOnly Property strWeifenLuoAttribution() As String Get @@ -6170,7 +6197,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die http://sourceforge.net/projects/dockpanelsuite/ ähnelt. + ''' Looks up a localized string similar to http://sourceforge.net/projects/dockpanelsuite/. ''' Friend ReadOnly Property strWeifenLuoAttributionURL() As String Get @@ -6179,7 +6206,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Windows ähnelt. + ''' Looks up a localized string similar to Windows. ''' Friend ReadOnly Property strWindows() As String Get @@ -6188,7 +6215,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Write log file (mRemoteNG.log) ähnelt. + ''' Looks up a localized string similar to Write log file (mRemoteNG.log). ''' Friend ReadOnly Property strWriteLogFile() As String Get @@ -6197,7 +6224,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die XULrunner path ähnelt. + ''' Looks up a localized string similar to XULrunner path. ''' Friend ReadOnly Property strXULrunnerPath() As String Get @@ -6206,7 +6233,7 @@ Namespace My.Resources End Property ''' - ''' Sucht eine lokalisierte Zeichenfolge, die Yes ähnelt. + ''' Looks up a localized string similar to Yes. ''' Friend ReadOnly Property strYes() As String Get diff --git a/mRemoteV1/My Project/Resources.resx b/mRemoteV1/My Project/Resources.resx index 1c7da485..29e85156 100644 --- a/mRemoteV1/My Project/Resources.resx +++ b/mRemoteV1/My Project/Resources.resx @@ -2283,4 +2283,13 @@ Error Description: {1} General + + Language + + + (Automatically Detect) + + + {0} must be restarted before changes to the language will take effect. + \ No newline at end of file diff --git a/mRemoteV1/My Project/Settings.Designer.vb b/mRemoteV1/My Project/Settings.Designer.vb index 3445f4dc..2104b240 100644 --- a/mRemoteV1/My Project/Settings.Designer.vb +++ b/mRemoteV1/My Project/Settings.Designer.vb @@ -1,10 +1,10 @@ '------------------------------------------------------------------------------ ' -' Dieser Code wurde von einem Tool generiert. -' Laufzeitversion:2.0.50727.5444 +' This code was generated by a tool. +' Runtime Version:2.0.50727.5444 ' -' Ä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. ' '------------------------------------------------------------------------------ @@ -22,7 +22,7 @@ Namespace My Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings),MySettings) -#Region "Funktion zum automatischen Speichern von My.Settings" +#Region "My.Settings Auto-Save Functionality" #If _MyType = "WindowsForms" Then Private Shared addedHandler As Boolean @@ -2070,6 +2070,28 @@ Namespace My Me("RdpReconnectionCount") = value End Set End Property + + _ + Public Property OverrideUICulture() As String + Get + Return CType(Me("OverrideUICulture"),String) + End Get + Set + Me("OverrideUICulture") = value + End Set + End Property + + _ + Public ReadOnly Property SupportedUICultures() As String + Get + Return CType(Me("SupportedUICultures"),String) + End Get + End Property End Class End Namespace diff --git a/mRemoteV1/My Project/Settings.settings b/mRemoteV1/My Project/Settings.settings index 327045c8..3804d343 100644 --- a/mRemoteV1/My Project/Settings.settings +++ b/mRemoteV1/My Project/Settings.settings @@ -470,5 +470,11 @@ 5 + + + + + de,en,en-US + \ No newline at end of file diff --git a/mRemoteV1/UI/UI.Window.Options.resx b/mRemoteV1/UI/UI.Window.Options.resx index 19dc0dd8..c7881b97 100644 --- a/mRemoteV1/UI/UI.Window.Options.resx +++ b/mRemoteV1/UI/UI.Window.Options.resx @@ -117,4 +117,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False + \ No newline at end of file diff --git a/mRemoteV1/UI/UI.Window.Options.vb b/mRemoteV1/UI/UI.Window.Options.vb index 8012f863..14164e56 100644 --- a/mRemoteV1/UI/UI.Window.Options.vb +++ b/mRemoteV1/UI/UI.Window.Options.vb @@ -106,10 +106,41 @@ Namespace UI Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents lblRdpReconnectCount As System.Windows.Forms.Label Friend WithEvents numRdpReconnectionCount As System.Windows.Forms.NumericUpDown + Friend WithEvents lblLanguageRestartRequired As System.Windows.Forms.Label + Friend WithEvents cboLanguage As System.Windows.Forms.ComboBox + Friend WithEvents lblLanguage As System.Windows.Forms.Label Friend WithEvents TabController As Crownwood.Magic.Controls.TabControl Private Sub InitializeComponent() Me.TabController = New Crownwood.Magic.Controls.TabControl + Me.tabAppearance = New Crownwood.Magic.Controls.TabPage + Me.pnlAppearance = New System.Windows.Forms.Panel + Me.lblLanguageRestartRequired = New System.Windows.Forms.Label + Me.cboLanguage = New System.Windows.Forms.ComboBox + Me.lblLanguage = New System.Windows.Forms.Label + Me.chkShowDescriptionTooltipsInTree = New System.Windows.Forms.CheckBox + Me.chkMinimizeToSystemTray = New System.Windows.Forms.CheckBox + Me.chkShowSystemTrayIcon = New System.Windows.Forms.CheckBox + Me.chkShowFullConnectionsFilePathInTitle = New System.Windows.Forms.CheckBox + Me.tabStartupExit = New Crownwood.Magic.Controls.TabPage + Me.pnlStartup = New System.Windows.Forms.Panel + Me.chkSaveConsOnExit = New System.Windows.Forms.CheckBox + Me.chkProperInstallationOfComponentsAtStartup = New System.Windows.Forms.CheckBox + Me.chkConfirmExit = New System.Windows.Forms.CheckBox + Me.chkSingleInstance = New System.Windows.Forms.CheckBox + Me.chkReconnectOnStart = New System.Windows.Forms.CheckBox + Me.tabTabs = New Crownwood.Magic.Controls.TabPage + Me.pnlTabsAndPanels = New System.Windows.Forms.Panel + Me.chkUseOnlyErrorsAndInfosPanel = New System.Windows.Forms.CheckBox + Me.lblSwitchToErrorsAndInfos = New System.Windows.Forms.Label + Me.chkMCInformation = New System.Windows.Forms.CheckBox + Me.chkMCErrors = New System.Windows.Forms.CheckBox + Me.chkMCWarnings = New System.Windows.Forms.CheckBox + Me.chkOpenNewTabRightOfSelected = New System.Windows.Forms.CheckBox + Me.chkShowProtocolOnTabs = New System.Windows.Forms.CheckBox + Me.chkDoubleClickClosesTab = New System.Windows.Forms.CheckBox + Me.chkShowLogonInfoOnTabs = New System.Windows.Forms.CheckBox + Me.chkAlwaysShowPanelSelectionDlg = New System.Windows.Forms.CheckBox Me.tabConnections = New Crownwood.Magic.Controls.TabPage Me.pnlConnections = New System.Windows.Forms.Panel Me.Panel1 = New System.Windows.Forms.Panel @@ -142,31 +173,6 @@ Namespace UI Me.lblSQLPassword = New System.Windows.Forms.Label Me.txtSQLServer = New System.Windows.Forms.TextBox Me.chkHostnameLikeDisplayName = New System.Windows.Forms.CheckBox - Me.tabStartupExit = New Crownwood.Magic.Controls.TabPage - Me.pnlStartup = New System.Windows.Forms.Panel - Me.chkSaveConsOnExit = New System.Windows.Forms.CheckBox - Me.chkProperInstallationOfComponentsAtStartup = New System.Windows.Forms.CheckBox - Me.chkConfirmExit = New System.Windows.Forms.CheckBox - Me.chkSingleInstance = New System.Windows.Forms.CheckBox - Me.chkReconnectOnStart = New System.Windows.Forms.CheckBox - Me.tabAppearance = New Crownwood.Magic.Controls.TabPage - Me.pnlAppearance = New System.Windows.Forms.Panel - Me.chkShowDescriptionTooltipsInTree = New System.Windows.Forms.CheckBox - Me.chkMinimizeToSystemTray = New System.Windows.Forms.CheckBox - Me.chkShowSystemTrayIcon = New System.Windows.Forms.CheckBox - Me.chkShowFullConnectionsFilePathInTitle = New System.Windows.Forms.CheckBox - Me.tabTabs = New Crownwood.Magic.Controls.TabPage - Me.pnlTabsAndPanels = New System.Windows.Forms.Panel - Me.chkUseOnlyErrorsAndInfosPanel = New System.Windows.Forms.CheckBox - Me.lblSwitchToErrorsAndInfos = New System.Windows.Forms.Label - Me.chkMCInformation = New System.Windows.Forms.CheckBox - Me.chkMCErrors = New System.Windows.Forms.CheckBox - Me.chkMCWarnings = New System.Windows.Forms.CheckBox - Me.chkOpenNewTabRightOfSelected = New System.Windows.Forms.CheckBox - Me.chkShowProtocolOnTabs = New System.Windows.Forms.CheckBox - Me.chkDoubleClickClosesTab = New System.Windows.Forms.CheckBox - Me.chkShowLogonInfoOnTabs = New System.Windows.Forms.CheckBox - Me.chkAlwaysShowPanelSelectionDlg = New System.Windows.Forms.CheckBox Me.tabUpdates = New Crownwood.Magic.Controls.TabPage Me.pnlUpdates = New System.Windows.Forms.Panel Me.lblUpdatesExplanation = New System.Windows.Forms.Label @@ -210,6 +216,12 @@ Namespace UI Me.btnOK = New System.Windows.Forms.Button Me.btnCancel = New System.Windows.Forms.Button Me.TabController.SuspendLayout() + Me.tabAppearance.SuspendLayout() + Me.pnlAppearance.SuspendLayout() + Me.tabStartupExit.SuspendLayout() + Me.pnlStartup.SuspendLayout() + Me.tabTabs.SuspendLayout() + Me.pnlTabsAndPanels.SuspendLayout() Me.tabConnections.SuspendLayout() Me.pnlConnections.SuspendLayout() Me.Panel1.SuspendLayout() @@ -218,12 +230,6 @@ Namespace UI Me.pnlAutoSave.SuspendLayout() CType(Me.numAutoSave, System.ComponentModel.ISupportInitialize).BeginInit() Me.grpExperimental.SuspendLayout() - Me.tabStartupExit.SuspendLayout() - Me.pnlStartup.SuspendLayout() - Me.tabAppearance.SuspendLayout() - Me.pnlAppearance.SuspendLayout() - Me.tabTabs.SuspendLayout() - Me.pnlTabsAndPanels.SuspendLayout() Me.tabUpdates.SuspendLayout() Me.pnlUpdates.SuspendLayout() Me.pnlUpdateCheck.SuspendLayout() @@ -246,18 +252,344 @@ Namespace UI Me.TabController.IDEPixelArea = True Me.TabController.Location = New System.Drawing.Point(0, 0) Me.TabController.Name = "TabController" - Me.TabController.SelectedIndex = 3 - Me.TabController.SelectedTab = Me.tabConnections + Me.TabController.SelectedIndex = 1 + Me.TabController.SelectedTab = Me.tabAppearance Me.TabController.Size = New System.Drawing.Size(573, 522) Me.TabController.TabIndex = 10 Me.TabController.TabPages.AddRange(New Crownwood.Magic.Controls.TabPage() {Me.tabStartupExit, Me.tabAppearance, Me.tabTabs, Me.tabConnections, Me.tabUpdates, Me.tabAdvanced}) ' + 'tabAppearance + ' + Me.tabAppearance.Controls.Add(Me.pnlAppearance) + Me.tabAppearance.Icon = Global.mRemoteNG.My.Resources.Resources.Appearance_Icon + Me.tabAppearance.Location = New System.Drawing.Point(0, 0) + Me.tabAppearance.Name = "tabAppearance" + Me.tabAppearance.Size = New System.Drawing.Size(573, 492) + Me.tabAppearance.TabIndex = 2000 + Me.tabAppearance.Title = "Appearance" + ' + 'pnlAppearance + ' + Me.pnlAppearance.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.pnlAppearance.AutoScroll = True + Me.pnlAppearance.Controls.Add(Me.lblLanguageRestartRequired) + Me.pnlAppearance.Controls.Add(Me.cboLanguage) + Me.pnlAppearance.Controls.Add(Me.lblLanguage) + Me.pnlAppearance.Controls.Add(Me.chkShowDescriptionTooltipsInTree) + Me.pnlAppearance.Controls.Add(Me.chkMinimizeToSystemTray) + Me.pnlAppearance.Controls.Add(Me.chkShowSystemTrayIcon) + Me.pnlAppearance.Controls.Add(Me.chkShowFullConnectionsFilePathInTitle) + Me.pnlAppearance.Location = New System.Drawing.Point(3, 3) + Me.pnlAppearance.Name = "pnlAppearance" + Me.pnlAppearance.Size = New System.Drawing.Size(567, 486) + Me.pnlAppearance.TabIndex = 41 + ' + 'lblLanguageRestartRequired + ' + Me.lblLanguageRestartRequired.AutoSize = True + Me.lblLanguageRestartRequired.Location = New System.Drawing.Point(16, 72) + Me.lblLanguageRestartRequired.Name = "lblLanguageRestartRequired" + Me.lblLanguageRestartRequired.Size = New System.Drawing.Size(423, 15) + Me.lblLanguageRestartRequired.TabIndex = 43 + Me.lblLanguageRestartRequired.Text = "mRemoteNG must be restarted before changes to the language will take effect." + ' + 'cboLanguage + ' + Me.cboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cboLanguage.FormattingEnabled = True + Me.cboLanguage.Location = New System.Drawing.Point(16, 40) + Me.cboLanguage.Name = "cboLanguage" + Me.cboLanguage.Size = New System.Drawing.Size(304, 23) + Me.cboLanguage.Sorted = True + Me.cboLanguage.TabIndex = 42 + ' + 'lblLanguage + ' + Me.lblLanguage.AutoSize = True + Me.lblLanguage.Location = New System.Drawing.Point(16, 16) + Me.lblLanguage.Name = "lblLanguage" + Me.lblLanguage.Size = New System.Drawing.Size(59, 15) + Me.lblLanguage.TabIndex = 41 + Me.lblLanguage.Text = "Language" + ' + 'chkShowDescriptionTooltipsInTree + ' + Me.chkShowDescriptionTooltipsInTree.AutoSize = True + Me.chkShowDescriptionTooltipsInTree.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowDescriptionTooltipsInTree.Location = New System.Drawing.Point(16, 120) + Me.chkShowDescriptionTooltipsInTree.Name = "chkShowDescriptionTooltipsInTree" + Me.chkShowDescriptionTooltipsInTree.Size = New System.Drawing.Size(256, 19) + Me.chkShowDescriptionTooltipsInTree.TabIndex = 10 + Me.chkShowDescriptionTooltipsInTree.Text = "Show description tooltips in connection tree" + Me.chkShowDescriptionTooltipsInTree.UseVisualStyleBackColor = True + ' + 'chkMinimizeToSystemTray + ' + Me.chkMinimizeToSystemTray.AutoSize = True + Me.chkMinimizeToSystemTray.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMinimizeToSystemTray.Location = New System.Drawing.Point(16, 216) + Me.chkMinimizeToSystemTray.Name = "chkMinimizeToSystemTray" + Me.chkMinimizeToSystemTray.Size = New System.Drawing.Size(153, 19) + Me.chkMinimizeToSystemTray.TabIndex = 40 + Me.chkMinimizeToSystemTray.Text = "Minimize to System Tray" + Me.chkMinimizeToSystemTray.UseVisualStyleBackColor = True + ' + 'chkShowSystemTrayIcon + ' + Me.chkShowSystemTrayIcon.AutoSize = True + Me.chkShowSystemTrayIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowSystemTrayIcon.Location = New System.Drawing.Point(16, 192) + Me.chkShowSystemTrayIcon.Name = "chkShowSystemTrayIcon" + Me.chkShowSystemTrayIcon.Size = New System.Drawing.Size(184, 19) + Me.chkShowSystemTrayIcon.TabIndex = 30 + Me.chkShowSystemTrayIcon.Text = "Always show System Tray Icon" + Me.chkShowSystemTrayIcon.UseVisualStyleBackColor = True + ' + 'chkShowFullConnectionsFilePathInTitle + ' + Me.chkShowFullConnectionsFilePathInTitle.AutoSize = True + Me.chkShowFullConnectionsFilePathInTitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowFullConnectionsFilePathInTitle.Location = New System.Drawing.Point(16, 144) + Me.chkShowFullConnectionsFilePathInTitle.Name = "chkShowFullConnectionsFilePathInTitle" + Me.chkShowFullConnectionsFilePathInTitle.Size = New System.Drawing.Size(267, 19) + Me.chkShowFullConnectionsFilePathInTitle.TabIndex = 20 + Me.chkShowFullConnectionsFilePathInTitle.Text = "Show full connections file path in window title" + Me.chkShowFullConnectionsFilePathInTitle.UseVisualStyleBackColor = True + ' + 'tabStartupExit + ' + Me.tabStartupExit.Controls.Add(Me.pnlStartup) + Me.tabStartupExit.Icon = Global.mRemoteNG.My.Resources.Resources.StartupExit_Icon + Me.tabStartupExit.Location = New System.Drawing.Point(0, 0) + Me.tabStartupExit.Name = "tabStartupExit" + Me.tabStartupExit.Selected = False + Me.tabStartupExit.Size = New System.Drawing.Size(573, 492) + Me.tabStartupExit.TabIndex = 1000 + Me.tabStartupExit.Title = "Startup/Exit" + ' + 'pnlStartup + ' + Me.pnlStartup.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.pnlStartup.AutoScroll = True + Me.pnlStartup.Controls.Add(Me.chkSaveConsOnExit) + Me.pnlStartup.Controls.Add(Me.chkProperInstallationOfComponentsAtStartup) + Me.pnlStartup.Controls.Add(Me.chkConfirmExit) + Me.pnlStartup.Controls.Add(Me.chkSingleInstance) + Me.pnlStartup.Controls.Add(Me.chkReconnectOnStart) + Me.pnlStartup.Location = New System.Drawing.Point(3, 3) + Me.pnlStartup.Name = "pnlStartup" + Me.pnlStartup.Size = New System.Drawing.Size(567, 486) + Me.pnlStartup.TabIndex = 51 + ' + 'chkSaveConsOnExit + ' + Me.chkSaveConsOnExit.AutoSize = True + Me.chkSaveConsOnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkSaveConsOnExit.Location = New System.Drawing.Point(16, 16) + Me.chkSaveConsOnExit.Name = "chkSaveConsOnExit" + Me.chkSaveConsOnExit.Size = New System.Drawing.Size(153, 19) + Me.chkSaveConsOnExit.TabIndex = 10 + Me.chkSaveConsOnExit.Text = "Save connections on exit" + Me.chkSaveConsOnExit.UseVisualStyleBackColor = True + ' + 'chkProperInstallationOfComponentsAtStartup + ' + Me.chkProperInstallationOfComponentsAtStartup.AutoSize = True + Me.chkProperInstallationOfComponentsAtStartup.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkProperInstallationOfComponentsAtStartup.Location = New System.Drawing.Point(16, 112) + Me.chkProperInstallationOfComponentsAtStartup.Name = "chkProperInstallationOfComponentsAtStartup" + Me.chkProperInstallationOfComponentsAtStartup.Size = New System.Drawing.Size(292, 19) + Me.chkProperInstallationOfComponentsAtStartup.TabIndex = 50 + Me.chkProperInstallationOfComponentsAtStartup.Text = "Check proper installation of components at startup" + Me.chkProperInstallationOfComponentsAtStartup.UseVisualStyleBackColor = True + ' + 'chkConfirmExit + ' + Me.chkConfirmExit.AutoSize = True + Me.chkConfirmExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkConfirmExit.Location = New System.Drawing.Point(16, 40) + Me.chkConfirmExit.Name = "chkConfirmExit" + Me.chkConfirmExit.Size = New System.Drawing.Size(245, 19) + Me.chkConfirmExit.TabIndex = 20 + Me.chkConfirmExit.Text = "Confirm exit if there are open connections" + Me.chkConfirmExit.UseVisualStyleBackColor = True + ' + 'chkSingleInstance + ' + Me.chkSingleInstance.AutoSize = True + Me.chkSingleInstance.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkSingleInstance.Location = New System.Drawing.Point(16, 88) + Me.chkSingleInstance.Name = "chkSingleInstance" + Me.chkSingleInstance.Size = New System.Drawing.Size(411, 19) + Me.chkSingleInstance.TabIndex = 50 + Me.chkSingleInstance.Text = "Allow only a single instance of the application (mRemote restart required)" + Me.chkSingleInstance.UseVisualStyleBackColor = True + ' + 'chkReconnectOnStart + ' + Me.chkReconnectOnStart.AutoSize = True + Me.chkReconnectOnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkReconnectOnStart.Location = New System.Drawing.Point(16, 64) + Me.chkReconnectOnStart.Name = "chkReconnectOnStart" + Me.chkReconnectOnStart.Size = New System.Drawing.Size(296, 19) + Me.chkReconnectOnStart.TabIndex = 40 + Me.chkReconnectOnStart.Text = "Reconnect to previously opened sessions on startup" + Me.chkReconnectOnStart.UseVisualStyleBackColor = True + ' + 'tabTabs + ' + Me.tabTabs.Controls.Add(Me.pnlTabsAndPanels) + Me.tabTabs.Icon = Global.mRemoteNG.My.Resources.Resources.Tab_Icon + Me.tabTabs.Location = New System.Drawing.Point(0, 0) + Me.tabTabs.Name = "tabTabs" + Me.tabTabs.Selected = False + Me.tabTabs.Size = New System.Drawing.Size(573, 492) + Me.tabTabs.TabIndex = 3000 + Me.tabTabs.Title = "Tabs && Panels" + ' + 'pnlTabsAndPanels + ' + Me.pnlTabsAndPanels.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.pnlTabsAndPanels.AutoScroll = True + Me.pnlTabsAndPanels.Controls.Add(Me.chkUseOnlyErrorsAndInfosPanel) + Me.pnlTabsAndPanels.Controls.Add(Me.lblSwitchToErrorsAndInfos) + Me.pnlTabsAndPanels.Controls.Add(Me.chkMCInformation) + Me.pnlTabsAndPanels.Controls.Add(Me.chkMCErrors) + Me.pnlTabsAndPanels.Controls.Add(Me.chkMCWarnings) + Me.pnlTabsAndPanels.Controls.Add(Me.chkOpenNewTabRightOfSelected) + Me.pnlTabsAndPanels.Controls.Add(Me.chkShowProtocolOnTabs) + Me.pnlTabsAndPanels.Controls.Add(Me.chkDoubleClickClosesTab) + Me.pnlTabsAndPanels.Controls.Add(Me.chkShowLogonInfoOnTabs) + Me.pnlTabsAndPanels.Controls.Add(Me.chkAlwaysShowPanelSelectionDlg) + Me.pnlTabsAndPanels.Location = New System.Drawing.Point(3, 3) + Me.pnlTabsAndPanels.Name = "pnlTabsAndPanels" + Me.pnlTabsAndPanels.Size = New System.Drawing.Size(567, 486) + Me.pnlTabsAndPanels.TabIndex = 51 + ' + 'chkUseOnlyErrorsAndInfosPanel + ' + Me.chkUseOnlyErrorsAndInfosPanel.AutoSize = True + Me.chkUseOnlyErrorsAndInfosPanel.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkUseOnlyErrorsAndInfosPanel.Location = New System.Drawing.Point(9, 146) + Me.chkUseOnlyErrorsAndInfosPanel.Name = "chkUseOnlyErrorsAndInfosPanel" + Me.chkUseOnlyErrorsAndInfosPanel.Size = New System.Drawing.Size(307, 19) + Me.chkUseOnlyErrorsAndInfosPanel.TabIndex = 51 + Me.chkUseOnlyErrorsAndInfosPanel.Text = "Use only Notifications panel (no messagebox popups)" + Me.chkUseOnlyErrorsAndInfosPanel.UseVisualStyleBackColor = True + ' + 'lblSwitchToErrorsAndInfos + ' + Me.lblSwitchToErrorsAndInfos.AutoSize = True + Me.lblSwitchToErrorsAndInfos.Location = New System.Drawing.Point(9, 171) + Me.lblSwitchToErrorsAndInfos.Name = "lblSwitchToErrorsAndInfos" + Me.lblSwitchToErrorsAndInfos.Size = New System.Drawing.Size(179, 15) + Me.lblSwitchToErrorsAndInfos.TabIndex = 52 + Me.lblSwitchToErrorsAndInfos.Text = "Switch to Notifications panel on:" + ' + 'chkMCInformation + ' + Me.chkMCInformation.AutoSize = True + Me.chkMCInformation.Enabled = False + Me.chkMCInformation.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMCInformation.Location = New System.Drawing.Point(25, 191) + Me.chkMCInformation.Name = "chkMCInformation" + Me.chkMCInformation.Size = New System.Drawing.Size(91, 19) + Me.chkMCInformation.TabIndex = 53 + Me.chkMCInformation.Text = "Informations" + Me.chkMCInformation.UseVisualStyleBackColor = True + ' + 'chkMCErrors + ' + Me.chkMCErrors.AutoSize = True + Me.chkMCErrors.Enabled = False + Me.chkMCErrors.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMCErrors.Location = New System.Drawing.Point(223, 191) + Me.chkMCErrors.Name = "chkMCErrors" + Me.chkMCErrors.Size = New System.Drawing.Size(53, 19) + Me.chkMCErrors.TabIndex = 55 + Me.chkMCErrors.Text = "Errors" + Me.chkMCErrors.UseVisualStyleBackColor = True + ' + 'chkMCWarnings + ' + Me.chkMCWarnings.AutoSize = True + Me.chkMCWarnings.Enabled = False + Me.chkMCWarnings.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMCWarnings.Location = New System.Drawing.Point(132, 191) + Me.chkMCWarnings.Name = "chkMCWarnings" + Me.chkMCWarnings.Size = New System.Drawing.Size(73, 19) + Me.chkMCWarnings.TabIndex = 54 + Me.chkMCWarnings.Text = "Warnings" + Me.chkMCWarnings.UseVisualStyleBackColor = True + ' + 'chkOpenNewTabRightOfSelected + ' + Me.chkOpenNewTabRightOfSelected.AutoSize = True + Me.chkOpenNewTabRightOfSelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkOpenNewTabRightOfSelected.Location = New System.Drawing.Point(9, 3) + Me.chkOpenNewTabRightOfSelected.Name = "chkOpenNewTabRightOfSelected" + Me.chkOpenNewTabRightOfSelected.Size = New System.Drawing.Size(309, 19) + Me.chkOpenNewTabRightOfSelected.TabIndex = 10 + Me.chkOpenNewTabRightOfSelected.Text = "Open new tab to the right of the currently selected tab" + Me.chkOpenNewTabRightOfSelected.UseVisualStyleBackColor = True + ' + 'chkShowProtocolOnTabs + ' + Me.chkShowProtocolOnTabs.AutoSize = True + Me.chkShowProtocolOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowProtocolOnTabs.Location = New System.Drawing.Point(9, 49) + Me.chkShowProtocolOnTabs.Name = "chkShowProtocolOnTabs" + Me.chkShowProtocolOnTabs.Size = New System.Drawing.Size(180, 19) + Me.chkShowProtocolOnTabs.TabIndex = 30 + Me.chkShowProtocolOnTabs.Text = "Show protocols on tab names" + Me.chkShowProtocolOnTabs.UseVisualStyleBackColor = True + ' + 'chkDoubleClickClosesTab + ' + Me.chkDoubleClickClosesTab.AutoSize = True + Me.chkDoubleClickClosesTab.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkDoubleClickClosesTab.Location = New System.Drawing.Point(9, 72) + Me.chkDoubleClickClosesTab.Name = "chkDoubleClickClosesTab" + Me.chkDoubleClickClosesTab.Size = New System.Drawing.Size(170, 19) + Me.chkDoubleClickClosesTab.TabIndex = 40 + Me.chkDoubleClickClosesTab.Text = "Double click on tab closes it" + Me.chkDoubleClickClosesTab.UseVisualStyleBackColor = True + ' + 'chkShowLogonInfoOnTabs + ' + Me.chkShowLogonInfoOnTabs.AutoSize = True + Me.chkShowLogonInfoOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowLogonInfoOnTabs.Location = New System.Drawing.Point(9, 26) + Me.chkShowLogonInfoOnTabs.Name = "chkShowLogonInfoOnTabs" + Me.chkShowLogonInfoOnTabs.Size = New System.Drawing.Size(227, 19) + Me.chkShowLogonInfoOnTabs.TabIndex = 20 + Me.chkShowLogonInfoOnTabs.Text = "Show logon information on tab names" + Me.chkShowLogonInfoOnTabs.UseVisualStyleBackColor = True + ' + 'chkAlwaysShowPanelSelectionDlg + ' + Me.chkAlwaysShowPanelSelectionDlg.AutoSize = True + Me.chkAlwaysShowPanelSelectionDlg.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkAlwaysShowPanelSelectionDlg.Location = New System.Drawing.Point(9, 95) + Me.chkAlwaysShowPanelSelectionDlg.Name = "chkAlwaysShowPanelSelectionDlg" + Me.chkAlwaysShowPanelSelectionDlg.Size = New System.Drawing.Size(349, 19) + Me.chkAlwaysShowPanelSelectionDlg.TabIndex = 50 + Me.chkAlwaysShowPanelSelectionDlg.Text = "Always show panel selection dialog when opening connectins" + Me.chkAlwaysShowPanelSelectionDlg.UseVisualStyleBackColor = True + ' 'tabConnections ' Me.tabConnections.Controls.Add(Me.pnlConnections) Me.tabConnections.Icon = Global.mRemoteNG.My.Resources.Resources.Root_Icon Me.tabConnections.Location = New System.Drawing.Point(0, 0) Me.tabConnections.Name = "tabConnections" + Me.tabConnections.Selected = False Me.tabConnections.Size = New System.Drawing.Size(573, 492) Me.tabConnections.TabIndex = 4000 Me.tabConnections.Title = "Connections" @@ -600,301 +932,6 @@ Namespace UI Me.chkHostnameLikeDisplayName.Text = "Set hostname like display name when creating new connections" Me.chkHostnameLikeDisplayName.UseVisualStyleBackColor = True ' - 'tabStartupExit - ' - Me.tabStartupExit.Controls.Add(Me.pnlStartup) - Me.tabStartupExit.Icon = Global.mRemoteNG.My.Resources.Resources.StartupExit_Icon - Me.tabStartupExit.Location = New System.Drawing.Point(0, 0) - Me.tabStartupExit.Name = "tabStartupExit" - Me.tabStartupExit.Selected = False - Me.tabStartupExit.Size = New System.Drawing.Size(573, 492) - Me.tabStartupExit.TabIndex = 1000 - Me.tabStartupExit.Title = "Startup/Exit" - ' - 'pnlStartup - ' - Me.pnlStartup.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.pnlStartup.AutoScroll = True - Me.pnlStartup.Controls.Add(Me.chkSaveConsOnExit) - Me.pnlStartup.Controls.Add(Me.chkProperInstallationOfComponentsAtStartup) - Me.pnlStartup.Controls.Add(Me.chkConfirmExit) - Me.pnlStartup.Controls.Add(Me.chkSingleInstance) - Me.pnlStartup.Controls.Add(Me.chkReconnectOnStart) - Me.pnlStartup.Location = New System.Drawing.Point(3, 3) - Me.pnlStartup.Name = "pnlStartup" - Me.pnlStartup.Size = New System.Drawing.Size(567, 486) - Me.pnlStartup.TabIndex = 51 - ' - 'chkSaveConsOnExit - ' - Me.chkSaveConsOnExit.AutoSize = True - Me.chkSaveConsOnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkSaveConsOnExit.Location = New System.Drawing.Point(9, 3) - Me.chkSaveConsOnExit.Name = "chkSaveConsOnExit" - Me.chkSaveConsOnExit.Size = New System.Drawing.Size(153, 19) - Me.chkSaveConsOnExit.TabIndex = 10 - Me.chkSaveConsOnExit.Text = "Save connections on exit" - Me.chkSaveConsOnExit.UseVisualStyleBackColor = True - ' - 'chkProperInstallationOfComponentsAtStartup - ' - Me.chkProperInstallationOfComponentsAtStartup.AutoSize = True - Me.chkProperInstallationOfComponentsAtStartup.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkProperInstallationOfComponentsAtStartup.Location = New System.Drawing.Point(9, 97) - Me.chkProperInstallationOfComponentsAtStartup.Name = "chkProperInstallationOfComponentsAtStartup" - Me.chkProperInstallationOfComponentsAtStartup.Size = New System.Drawing.Size(292, 19) - Me.chkProperInstallationOfComponentsAtStartup.TabIndex = 50 - Me.chkProperInstallationOfComponentsAtStartup.Text = "Check proper installation of components at startup" - Me.chkProperInstallationOfComponentsAtStartup.UseVisualStyleBackColor = True - ' - 'chkConfirmExit - ' - Me.chkConfirmExit.AutoSize = True - Me.chkConfirmExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkConfirmExit.Location = New System.Drawing.Point(9, 26) - Me.chkConfirmExit.Name = "chkConfirmExit" - Me.chkConfirmExit.Size = New System.Drawing.Size(245, 19) - Me.chkConfirmExit.TabIndex = 20 - Me.chkConfirmExit.Text = "Confirm exit if there are open connections" - Me.chkConfirmExit.UseVisualStyleBackColor = True - ' - 'chkSingleInstance - ' - Me.chkSingleInstance.AutoSize = True - Me.chkSingleInstance.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkSingleInstance.Location = New System.Drawing.Point(9, 74) - Me.chkSingleInstance.Name = "chkSingleInstance" - Me.chkSingleInstance.Size = New System.Drawing.Size(411, 19) - Me.chkSingleInstance.TabIndex = 50 - Me.chkSingleInstance.Text = "Allow only a single instance of the application (mRemote restart required)" - Me.chkSingleInstance.UseVisualStyleBackColor = True - ' - 'chkReconnectOnStart - ' - Me.chkReconnectOnStart.AutoSize = True - Me.chkReconnectOnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkReconnectOnStart.Location = New System.Drawing.Point(9, 51) - Me.chkReconnectOnStart.Name = "chkReconnectOnStart" - Me.chkReconnectOnStart.Size = New System.Drawing.Size(296, 19) - Me.chkReconnectOnStart.TabIndex = 40 - Me.chkReconnectOnStart.Text = "Reconnect to previously opened sessions on startup" - Me.chkReconnectOnStart.UseVisualStyleBackColor = True - ' - 'tabAppearance - ' - Me.tabAppearance.Controls.Add(Me.pnlAppearance) - Me.tabAppearance.Icon = Global.mRemoteNG.My.Resources.Resources.Appearance_Icon - Me.tabAppearance.Location = New System.Drawing.Point(0, 0) - Me.tabAppearance.Name = "tabAppearance" - Me.tabAppearance.Selected = False - Me.tabAppearance.Size = New System.Drawing.Size(573, 492) - Me.tabAppearance.TabIndex = 2000 - Me.tabAppearance.Title = "Appearance" - ' - 'pnlAppearance - ' - Me.pnlAppearance.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.pnlAppearance.AutoScroll = True - Me.pnlAppearance.Controls.Add(Me.chkShowDescriptionTooltipsInTree) - Me.pnlAppearance.Controls.Add(Me.chkMinimizeToSystemTray) - Me.pnlAppearance.Controls.Add(Me.chkShowSystemTrayIcon) - Me.pnlAppearance.Controls.Add(Me.chkShowFullConnectionsFilePathInTitle) - Me.pnlAppearance.Location = New System.Drawing.Point(3, 3) - Me.pnlAppearance.Name = "pnlAppearance" - Me.pnlAppearance.Size = New System.Drawing.Size(567, 486) - Me.pnlAppearance.TabIndex = 41 - ' - 'chkShowDescriptionTooltipsInTree - ' - Me.chkShowDescriptionTooltipsInTree.AutoSize = True - Me.chkShowDescriptionTooltipsInTree.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowDescriptionTooltipsInTree.Location = New System.Drawing.Point(9, 3) - Me.chkShowDescriptionTooltipsInTree.Name = "chkShowDescriptionTooltipsInTree" - Me.chkShowDescriptionTooltipsInTree.Size = New System.Drawing.Size(256, 19) - Me.chkShowDescriptionTooltipsInTree.TabIndex = 10 - Me.chkShowDescriptionTooltipsInTree.Text = "Show description tooltips in connection tree" - Me.chkShowDescriptionTooltipsInTree.UseVisualStyleBackColor = True - ' - 'chkMinimizeToSystemTray - ' - Me.chkMinimizeToSystemTray.AutoSize = True - Me.chkMinimizeToSystemTray.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMinimizeToSystemTray.Location = New System.Drawing.Point(9, 82) - Me.chkMinimizeToSystemTray.Name = "chkMinimizeToSystemTray" - Me.chkMinimizeToSystemTray.Size = New System.Drawing.Size(153, 19) - Me.chkMinimizeToSystemTray.TabIndex = 40 - Me.chkMinimizeToSystemTray.Text = "Minimize to System Tray" - Me.chkMinimizeToSystemTray.UseVisualStyleBackColor = True - ' - 'chkShowSystemTrayIcon - ' - Me.chkShowSystemTrayIcon.AutoSize = True - Me.chkShowSystemTrayIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowSystemTrayIcon.Location = New System.Drawing.Point(9, 59) - Me.chkShowSystemTrayIcon.Name = "chkShowSystemTrayIcon" - Me.chkShowSystemTrayIcon.Size = New System.Drawing.Size(184, 19) - Me.chkShowSystemTrayIcon.TabIndex = 30 - Me.chkShowSystemTrayIcon.Text = "Always show System Tray Icon" - Me.chkShowSystemTrayIcon.UseVisualStyleBackColor = True - ' - 'chkShowFullConnectionsFilePathInTitle - ' - Me.chkShowFullConnectionsFilePathInTitle.AutoSize = True - Me.chkShowFullConnectionsFilePathInTitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowFullConnectionsFilePathInTitle.Location = New System.Drawing.Point(9, 26) - Me.chkShowFullConnectionsFilePathInTitle.Name = "chkShowFullConnectionsFilePathInTitle" - Me.chkShowFullConnectionsFilePathInTitle.Size = New System.Drawing.Size(267, 19) - Me.chkShowFullConnectionsFilePathInTitle.TabIndex = 20 - Me.chkShowFullConnectionsFilePathInTitle.Text = "Show full connections file path in window title" - Me.chkShowFullConnectionsFilePathInTitle.UseVisualStyleBackColor = True - ' - 'tabTabs - ' - Me.tabTabs.Controls.Add(Me.pnlTabsAndPanels) - Me.tabTabs.Icon = Global.mRemoteNG.My.Resources.Resources.Tab_Icon - Me.tabTabs.Location = New System.Drawing.Point(0, 0) - Me.tabTabs.Name = "tabTabs" - Me.tabTabs.Selected = False - Me.tabTabs.Size = New System.Drawing.Size(573, 492) - Me.tabTabs.TabIndex = 3000 - Me.tabTabs.Title = "Tabs && Panels" - ' - 'pnlTabsAndPanels - ' - Me.pnlTabsAndPanels.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.pnlTabsAndPanels.AutoScroll = True - Me.pnlTabsAndPanels.Controls.Add(Me.chkUseOnlyErrorsAndInfosPanel) - Me.pnlTabsAndPanels.Controls.Add(Me.lblSwitchToErrorsAndInfos) - Me.pnlTabsAndPanels.Controls.Add(Me.chkMCInformation) - Me.pnlTabsAndPanels.Controls.Add(Me.chkMCErrors) - Me.pnlTabsAndPanels.Controls.Add(Me.chkMCWarnings) - Me.pnlTabsAndPanels.Controls.Add(Me.chkOpenNewTabRightOfSelected) - Me.pnlTabsAndPanels.Controls.Add(Me.chkShowProtocolOnTabs) - Me.pnlTabsAndPanels.Controls.Add(Me.chkDoubleClickClosesTab) - Me.pnlTabsAndPanels.Controls.Add(Me.chkShowLogonInfoOnTabs) - Me.pnlTabsAndPanels.Controls.Add(Me.chkAlwaysShowPanelSelectionDlg) - Me.pnlTabsAndPanels.Location = New System.Drawing.Point(3, 3) - Me.pnlTabsAndPanels.Name = "pnlTabsAndPanels" - Me.pnlTabsAndPanels.Size = New System.Drawing.Size(567, 486) - Me.pnlTabsAndPanels.TabIndex = 51 - ' - 'chkUseOnlyErrorsAndInfosPanel - ' - Me.chkUseOnlyErrorsAndInfosPanel.AutoSize = True - Me.chkUseOnlyErrorsAndInfosPanel.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkUseOnlyErrorsAndInfosPanel.Location = New System.Drawing.Point(9, 146) - Me.chkUseOnlyErrorsAndInfosPanel.Name = "chkUseOnlyErrorsAndInfosPanel" - Me.chkUseOnlyErrorsAndInfosPanel.Size = New System.Drawing.Size(307, 19) - Me.chkUseOnlyErrorsAndInfosPanel.TabIndex = 51 - Me.chkUseOnlyErrorsAndInfosPanel.Text = "Use only Notifications panel (no messagebox popups)" - Me.chkUseOnlyErrorsAndInfosPanel.UseVisualStyleBackColor = True - ' - 'lblSwitchToErrorsAndInfos - ' - Me.lblSwitchToErrorsAndInfos.AutoSize = True - Me.lblSwitchToErrorsAndInfos.Location = New System.Drawing.Point(9, 171) - Me.lblSwitchToErrorsAndInfos.Name = "lblSwitchToErrorsAndInfos" - Me.lblSwitchToErrorsAndInfos.Size = New System.Drawing.Size(179, 15) - Me.lblSwitchToErrorsAndInfos.TabIndex = 52 - Me.lblSwitchToErrorsAndInfos.Text = "Switch to Notifications panel on:" - ' - 'chkMCInformation - ' - Me.chkMCInformation.AutoSize = True - Me.chkMCInformation.Enabled = False - Me.chkMCInformation.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMCInformation.Location = New System.Drawing.Point(25, 191) - Me.chkMCInformation.Name = "chkMCInformation" - Me.chkMCInformation.Size = New System.Drawing.Size(91, 19) - Me.chkMCInformation.TabIndex = 53 - Me.chkMCInformation.Text = "Informations" - Me.chkMCInformation.UseVisualStyleBackColor = True - ' - 'chkMCErrors - ' - Me.chkMCErrors.AutoSize = True - Me.chkMCErrors.Enabled = False - Me.chkMCErrors.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMCErrors.Location = New System.Drawing.Point(223, 191) - Me.chkMCErrors.Name = "chkMCErrors" - Me.chkMCErrors.Size = New System.Drawing.Size(53, 19) - Me.chkMCErrors.TabIndex = 55 - Me.chkMCErrors.Text = "Errors" - Me.chkMCErrors.UseVisualStyleBackColor = True - ' - 'chkMCWarnings - ' - Me.chkMCWarnings.AutoSize = True - Me.chkMCWarnings.Enabled = False - Me.chkMCWarnings.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMCWarnings.Location = New System.Drawing.Point(132, 191) - Me.chkMCWarnings.Name = "chkMCWarnings" - Me.chkMCWarnings.Size = New System.Drawing.Size(73, 19) - Me.chkMCWarnings.TabIndex = 54 - Me.chkMCWarnings.Text = "Warnings" - Me.chkMCWarnings.UseVisualStyleBackColor = True - ' - 'chkOpenNewTabRightOfSelected - ' - Me.chkOpenNewTabRightOfSelected.AutoSize = True - Me.chkOpenNewTabRightOfSelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkOpenNewTabRightOfSelected.Location = New System.Drawing.Point(9, 3) - Me.chkOpenNewTabRightOfSelected.Name = "chkOpenNewTabRightOfSelected" - Me.chkOpenNewTabRightOfSelected.Size = New System.Drawing.Size(309, 19) - Me.chkOpenNewTabRightOfSelected.TabIndex = 10 - Me.chkOpenNewTabRightOfSelected.Text = "Open new tab to the right of the currently selected tab" - Me.chkOpenNewTabRightOfSelected.UseVisualStyleBackColor = True - ' - 'chkShowProtocolOnTabs - ' - Me.chkShowProtocolOnTabs.AutoSize = True - Me.chkShowProtocolOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowProtocolOnTabs.Location = New System.Drawing.Point(9, 49) - Me.chkShowProtocolOnTabs.Name = "chkShowProtocolOnTabs" - Me.chkShowProtocolOnTabs.Size = New System.Drawing.Size(180, 19) - Me.chkShowProtocolOnTabs.TabIndex = 30 - Me.chkShowProtocolOnTabs.Text = "Show protocols on tab names" - Me.chkShowProtocolOnTabs.UseVisualStyleBackColor = True - ' - 'chkDoubleClickClosesTab - ' - Me.chkDoubleClickClosesTab.AutoSize = True - Me.chkDoubleClickClosesTab.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkDoubleClickClosesTab.Location = New System.Drawing.Point(9, 72) - Me.chkDoubleClickClosesTab.Name = "chkDoubleClickClosesTab" - Me.chkDoubleClickClosesTab.Size = New System.Drawing.Size(170, 19) - Me.chkDoubleClickClosesTab.TabIndex = 40 - Me.chkDoubleClickClosesTab.Text = "Double click on tab closes it" - Me.chkDoubleClickClosesTab.UseVisualStyleBackColor = True - ' - 'chkShowLogonInfoOnTabs - ' - Me.chkShowLogonInfoOnTabs.AutoSize = True - Me.chkShowLogonInfoOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowLogonInfoOnTabs.Location = New System.Drawing.Point(9, 26) - Me.chkShowLogonInfoOnTabs.Name = "chkShowLogonInfoOnTabs" - Me.chkShowLogonInfoOnTabs.Size = New System.Drawing.Size(227, 19) - Me.chkShowLogonInfoOnTabs.TabIndex = 20 - Me.chkShowLogonInfoOnTabs.Text = "Show logon information on tab names" - Me.chkShowLogonInfoOnTabs.UseVisualStyleBackColor = True - ' - 'chkAlwaysShowPanelSelectionDlg - ' - Me.chkAlwaysShowPanelSelectionDlg.AutoSize = True - Me.chkAlwaysShowPanelSelectionDlg.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkAlwaysShowPanelSelectionDlg.Location = New System.Drawing.Point(9, 95) - Me.chkAlwaysShowPanelSelectionDlg.Name = "chkAlwaysShowPanelSelectionDlg" - Me.chkAlwaysShowPanelSelectionDlg.Size = New System.Drawing.Size(349, 19) - Me.chkAlwaysShowPanelSelectionDlg.TabIndex = 50 - Me.chkAlwaysShowPanelSelectionDlg.Text = "Always show panel selection dialog when opening connectins" - Me.chkAlwaysShowPanelSelectionDlg.UseVisualStyleBackColor = True - ' 'tabUpdates ' Me.tabUpdates.Controls.Add(Me.pnlUpdates) @@ -1357,6 +1394,15 @@ Namespace UI Me.TabText = "Options" Me.Text = "Options" Me.TabController.ResumeLayout(False) + Me.tabAppearance.ResumeLayout(False) + Me.pnlAppearance.ResumeLayout(False) + Me.pnlAppearance.PerformLayout() + Me.tabStartupExit.ResumeLayout(False) + Me.pnlStartup.ResumeLayout(False) + Me.pnlStartup.PerformLayout() + Me.tabTabs.ResumeLayout(False) + Me.pnlTabsAndPanels.ResumeLayout(False) + Me.pnlTabsAndPanels.PerformLayout() Me.tabConnections.ResumeLayout(False) Me.pnlConnections.ResumeLayout(False) Me.pnlConnections.PerformLayout() @@ -1370,15 +1416,6 @@ Namespace UI CType(Me.numAutoSave, System.ComponentModel.ISupportInitialize).EndInit() Me.grpExperimental.ResumeLayout(False) Me.grpExperimental.PerformLayout() - Me.tabStartupExit.ResumeLayout(False) - Me.pnlStartup.ResumeLayout(False) - Me.pnlStartup.PerformLayout() - Me.tabAppearance.ResumeLayout(False) - Me.pnlAppearance.ResumeLayout(False) - Me.pnlAppearance.PerformLayout() - Me.tabTabs.ResumeLayout(False) - Me.pnlTabsAndPanels.ResumeLayout(False) - Me.pnlTabsAndPanels.PerformLayout() Me.tabUpdates.ResumeLayout(False) Me.pnlUpdates.ResumeLayout(False) Me.pnlUpdateCheck.ResumeLayout(False) @@ -1408,6 +1445,19 @@ Namespace UI Me.chkReconnectOnStart.Checked = My.Settings.OpenConsFromLastSession Me.chkProperInstallationOfComponentsAtStartup.Checked = My.Settings.StartupComponentsCheck + Me.cboLanguage.Items.Clear() + Me.cboLanguage.Items.Add(My.Resources.strLanguageDefault) + + For Each CultureNativeName As String In App.SupportedCultures.CultureNativeNames + Me.cboLanguage.Items.Add(CultureNativeName) + Next + If Not My.Settings.OverrideUICulture = "" And App.SupportedCultures.IsNameSupported(My.Settings.OverrideUICulture) Then + Me.cboLanguage.SelectedItem = App.SupportedCultures.CultureNativeName(My.Settings.OverrideUICulture) + End If + If Me.cboLanguage.SelectedIndex = -1 Then + Me.cboLanguage.SelectedIndex = 0 + End If + Me.chkShowDescriptionTooltipsInTree.Checked = My.Settings.ShowDescriptionTooltipsInTree Me.chkShowSystemTrayIcon.Checked = My.Settings.ShowSystemTrayIcon Me.chkMinimizeToSystemTray.Checked = My.Settings.MinimizeToTray @@ -1506,6 +1556,12 @@ Namespace UI My.Settings.OpenConsFromLastSession = Me.chkReconnectOnStart.Checked My.Settings.StartupComponentsCheck = Me.chkProperInstallationOfComponentsAtStartup.Checked + If Me.cboLanguage.SelectedIndex > 0 And App.SupportedCultures.IsNativeNameSupported(Me.cboLanguage.SelectedItem) Then + My.Settings.OverrideUICulture = App.SupportedCultures.CultureName(Me.cboLanguage.SelectedItem) + Else + My.Settings.OverrideUICulture = "" + End If + My.Settings.ShowDescriptionTooltipsInTree = Me.chkShowDescriptionTooltipsInTree.Checked My.Settings.ShowSystemTrayIcon = Me.chkShowSystemTrayIcon.Checked My.Settings.MinimizeToTray = Me.chkMinimizeToSystemTray.Checked @@ -1778,6 +1834,8 @@ Namespace UI lblXulRunnerPath.Text = My.Resources.strXULrunnerPath & ":" btnBrowseXulRunnerPath.Text = My.Resources.strButtonBrowse chkEncryptCompleteFile.Text = My.Resources.strEncryptCompleteConnectionFile + lblLanguage.Text = My.Resources.strLanguage + lblLanguageRestartRequired.Text = String.Format(My.Resources.strLanguageRestartRequired, My.Application.Info.ProductName) End Sub Public Shadows Sub Show(ByVal DockPanel As DockPanel) @@ -1869,10 +1927,6 @@ Namespace UI Me.Close() End Sub #End Region - - Private Sub TabController_SelectionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabController.SelectionChanged - - End Sub End Class End Namespace End Namespace \ No newline at end of file diff --git a/mRemoteV1/app.config b/mRemoteV1/app.config index 82c54f14..1a15c5b9 100644 --- a/mRemoteV1/app.config +++ b/mRemoteV1/app.config @@ -5,6 +5,9 @@
+ +
+ @@ -524,6 +527,16 @@ 5 + + + + + + + de,en,en-US + + + diff --git a/mRemoteV1/mRemoteV1.vbproj b/mRemoteV1/mRemoteV1.vbproj index 9e8d574d..7055e35b 100644 --- a/mRemoteV1/mRemoteV1.vbproj +++ b/mRemoteV1/mRemoteV1.vbproj @@ -3,7 +3,7 @@ Debug AnyCPU - 9.0.30729 + 9.0.21022 2.0 {4934A491-40BC-4E5B-9166-EA1169A220F6} WinExe @@ -171,6 +171,7 @@ +