diff --git a/mRemoteV1/App/App.Runtime.vb b/mRemoteV1/App/App.Runtime.vb index b607e86c7..1d159fa3e 100644 --- a/mRemoteV1/App/App.Runtime.vb +++ b/mRemoteV1/App/App.Runtime.vb @@ -530,8 +530,12 @@ Namespace App #End Region #Region "Panels" - Public Shared Function AddPanel(Optional ByVal Title As String = Language.Base.NewPanel, Optional ByVal NoTabber As Boolean = False) As Form + Public Shared Function AddPanel(Optional ByVal Title As String = "", Optional ByVal NoTabber As Boolean = False) As Form Try + If Title = "" Then + Title = My.Resources.strNewPanel + End If + Dim pnlcForm As New DockContent Dim cForm As New UI.Window.Connection(pnlcForm) pnlcForm = cForm @@ -541,13 +545,13 @@ Namespace App 'create rename item Dim cMenRen As New ToolStripMenuItem - cMenRen.Text = Language.Base.Rename + cMenRen.Text = My.Resources.strRename cMenRen.Image = My.Resources.Rename cMenRen.Tag = pnlcForm AddHandler cMenRen.Click, AddressOf cMenConnectionPanelRename_Click Dim cMenScreens As New ToolStripMenuItem - cMenScreens.Text = Language.Base.SendTo + cMenScreens.Text = My.Resources.strSendTo cMenScreens.Image = My.Resources.Monitor cMenScreens.Tag = pnlcForm cMenScreens.DropDownItems.Add("Dummy") @@ -581,7 +585,7 @@ Namespace App Dim conW As UI.Window.Connection conW = sender.Tag - Dim nTitle As String = InputBox(Language.Base.NewTitle & ":", , sender.Tag.Text.Replace("&&", "&")) + Dim nTitle As String = InputBox(My.Resources.strNewTitle & ":", , sender.Tag.Text.Replace("&&", "&")) If nTitle <> "" Then conW.SetFormText(nTitle.Replace("&", "&&")) @@ -597,7 +601,7 @@ Namespace App cMenScreens.DropDownItems.Clear() For i As Integer = 0 To Screen.AllScreens.Length - 1 - Dim cMenScreen As New ToolStripMenuItem(Language.Base.Screen & " " & i + 1) + Dim cMenScreen As New ToolStripMenuItem(My.Resources.strScreen & " " & i + 1) cMenScreen.Tag = New ArrayList cMenScreen.Image = My.Resources.Monitor_GoTo TryCast(cMenScreen.Tag, ArrayList).Add(Screen.AllScreens(i)) diff --git a/mRemoteV1/CHANGELOG.TXT b/mRemoteV1/CHANGELOG.TXT index 08b5038a1..b01d35e5b 100644 --- a/mRemoteV1/CHANGELOG.TXT +++ b/mRemoteV1/CHANGELOG.TXT @@ -1,4 +1,7 @@ -1.63: +1.64: + AR: Fixed translations, moved everything into resx + +1.63: New icon and logo Fixed problems moving or resizing the main window while PuTTY (SSH/telnet/rlogin/raw) connections are open Fixed PuTTY processes not closing on Vista and 7 with UAC enabled diff --git a/mRemoteV1/Config/Config.Connections.Load.vb b/mRemoteV1/Config/Config.Connections.Load.vb index bbaa0597a..565608041 100644 --- a/mRemoteV1/Config/Config.Connections.Load.vb +++ b/mRemoteV1/Config/Config.Connections.Load.vb @@ -445,7 +445,7 @@ Namespace Config conI.Port = .Item("Port") conI.PuttySession = .Item("PuttySession") - conI.Colors = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDPColors), .Item("Colors")) + conI.Colors = .Item("Colors") conI.Resolution = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDPResolutions), .Item("Resolution")) conI.Inherit = New Connection.Info.Inheritance(conI) diff --git a/mRemoteV1/Connection/Connection.Info.vb b/mRemoteV1/Connection/Connection.Info.vb index 7604c7679..ff729db03 100644 --- a/mRemoteV1/Connection/Connection.Info.vb +++ b/mRemoteV1/Connection/Connection.Info.vb @@ -415,8 +415,8 @@ Namespace Connection Private _RDGatewayUsageMethod As mRemote.Connection.Protocol.RDP.RDGatewayUsageMethod = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDGatewayUsageMethod), My.Settings.ConDefaultRDGatewayUsageMethod) _ Public Property RDGatewayUsageMethod() As mRemote.Connection.Protocol.RDP.RDGatewayUsageMethod Get @@ -442,8 +442,8 @@ Namespace Connection Private _RDGatewayHostname As String _ + LocalizedDisplayName("strPropertyNameRDGatewayHostname"), _ + LocalizedDescription("strPropertyDescriptionRDGatewayHostname")> _ Public Property RDGatewayHostname() As String Get If Me._Inherit.RDGatewayHostname And Me._Parent IsNot Nothing Then @@ -468,8 +468,8 @@ Namespace Connection Private _RDGatewayUseConnectionCredentials As mRemote.Connection.Protocol.RDP.RDGatewayUseConnectionCredentials = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDGatewayUseConnectionCredentials), My.Settings.ConDefaultRDGatewayUseConnectionCredentials) _ Public Property RDGatewayUseConnectionCredentials() As mRemote.Connection.Protocol.RDP.RDGatewayUseConnectionCredentials Get @@ -495,8 +495,8 @@ Namespace Connection Private _RDGatewayUsername As String _ + LocalizedDisplayName("strPropertyNameRDGatewayUsername"), _ + LocalizedDescription("strPropertyDescriptionRDGatewayUsername")> _ Public Property RDGatewayUsername() As String Get If Me._Inherit.RDGatewayUsername And Me._Parent IsNot Nothing Then @@ -521,8 +521,8 @@ Namespace Connection Private _RDGatewayPassword As String _ Public Property RDGatewayPassword() As String Get @@ -548,8 +548,8 @@ Namespace Connection Private _RDGatewayDomain As String _ + LocalizedDisplayName("strPropertyNameRDGatewayDomain"), _ + LocalizedDescription("strPropertyDescriptionRDGatewayDomain")> _ Public Property RDGatewayDomain() As String Get If Me._Inherit.RDGatewayDomain And Me._Parent IsNot Nothing Then @@ -1773,7 +1773,7 @@ Namespace Connection Private _RDGatewayUsageMethod As Boolean = False _ Public Property RDGatewayUsageMethod() As Boolean Get @@ -1787,7 +1787,7 @@ Namespace Connection Private _RDGatewayHostname As Boolean = False _ Public Property RDGatewayHostname() As Boolean Get @@ -1801,7 +1801,7 @@ Namespace Connection Private _RDGatewayUseConnectionCredentials As Boolean = False _ Public Property RDGatewayUseConnectionCredentials() As Boolean Get @@ -1815,7 +1815,8 @@ Namespace Connection Private _RDGatewayUsername As Boolean = False _ Public Property RDGatewayUsername() As Boolean Get @@ -1829,7 +1830,8 @@ Namespace Connection Private _RDGatewayPassword As Boolean = False _ Public Property RDGatewayPassword() As Boolean Get @@ -1843,7 +1845,7 @@ Namespace Connection Private _RDGatewayDomain As Boolean = False _ Public Property RDGatewayDomain() As Boolean Get diff --git a/mRemoteV1/Connection/Connection.Protocol.RDP.vb b/mRemoteV1/Connection/Connection.Protocol.RDP.vb index b167d2cfe..90267d498 100644 --- a/mRemoteV1/Connection/Connection.Protocol.RDP.vb +++ b/mRemoteV1/Connection/Connection.Protocol.RDP.vb @@ -96,7 +96,7 @@ Namespace Connection Me.SetPerformanceFlags() - RDP.ConnectingText = Language.Base.Connecting + RDP.ConnectingText = My.Resources.strConnecting Return True Catch ex As Exception @@ -407,9 +407,9 @@ Namespace Connection Port = 3389 End Enum - Public Enum RDPColors - _ - Colors256 = 8 + Public Enum RDPColors ' TODO: Translate this + _ + Colors256 = 8 ' My.Resources.strRDP256Colors _ Colors16Bit = 16 _ @@ -418,16 +418,16 @@ Namespace Connection Colors32Bit = 32 End Enum - Public Enum RDPSounds - _ - BringToThisComputer = 0 - _ - LeaveAtRemoteComputer = 1 - _ - DoNotPlay = 2 + Public Enum RDPSounds ' TODO: Translate this + _ + BringToThisComputer = 0 ' My.Resources.strRDPSoundBringToThisComputer + _ + LeaveAtRemoteComputer = 1 ' My.Resources.strRDPSoundLeaveAtRemoteComputer + _ + DoNotPlay = 2 ' My.Resources.strRDPSoundDoNotPlay End Enum - Private Enum RDPPerformanceFlags + Private Enum RDPPerformanceFlags ' TODO: Translate this _ DisableWallpaper = 1 _ @@ -442,13 +442,13 @@ Namespace Connection DisableCursorBlinking = 40 End Enum - Public Enum RDPResolutions - _ - FitToWindow - _ - Fullscreen - _ - SmartSize + Public Enum RDPResolutions ' TODO: Translate this + _ + FitToWindow ' My.Resources.strRDPFitToPanel + _ + Fullscreen ' My.Resources.strFullscreen + _ + SmartSize ' My.Resources.strRDPSmartSize _ Res640x480 _ @@ -487,16 +487,16 @@ Namespace Connection Res3840x2400 End Enum - Public Enum AuthenticationLevel - _ - NoAuth = 0 - _ - AuthRequired = 1 - _ - WarnOnFailedAuth = 2 + Public Enum AuthenticationLevel ' TODO: Translate this + _ + NoAuth = 0 ' My.Resources.strAlwaysConnectEvenIfAuthFails + _ + AuthRequired = 1 ' My.Resources.strDontConnectWhenAuthFails + _ + WarnOnFailedAuth = 2 ' My.Resources.strWarnIfAuthFails End Enum - Public Enum RDGatewayUsageMethod + Public Enum RDGatewayUsageMethod ' TODO: Translate this _ Never = 0 ' TSC_PROXY_MODE_NONE_DIRECT _ @@ -505,7 +505,7 @@ Namespace Connection Detect = 2 ' TSC_PROXY_MODE_DETECT End Enum - Public Enum RDGatewayUseConnectionCredentials + Public Enum RDGatewayUseConnectionCredentials ' TODO: Translate this _ No = 0 _ diff --git a/mRemoteV1/Connection/Connection.Protocol.VNC.vb b/mRemoteV1/Connection/Connection.Protocol.VNC.vb index 7bf3348bf..ef430801b 100644 --- a/mRemoteV1/Connection/Connection.Protocol.VNC.vb +++ b/mRemoteV1/Connection/Connection.Protocol.VNC.vb @@ -105,8 +105,8 @@ Namespace Connection ' VNC.RestrictPixel = False 'End If - 'VNC.ConnectingText = Language.Base.Connecting & " (SmartCode VNC viewer)" - 'VNC.DisconnectedText = Language.Base.Disconnected + 'VNC.ConnectingText = My.Resources.strInheritConnecting & " (SmartCode VNC viewer)" + 'VNC.DisconnectedText = My.Resources.strInheritDisconnected 'VNC.MessageBoxes = False 'VNC.EndInit() @@ -242,9 +242,9 @@ Namespace Connection CtrlEsc End Enum - Public Enum Compression - _ - CompNone = 99 + Public Enum Compression ' TODO: Translate this + _ + CompNone = 99 ' My.Resources.strNoCompression _ Comp0 = 0 _ @@ -293,9 +293,9 @@ Namespace Connection AuthWin End Enum - Public Enum ProxyType - _ - ProxyNone + Public Enum ProxyType ' TODO: Translate this + _ + ProxyNone ' My.Resources.strNone _ ProxyHTTP _ @@ -304,20 +304,20 @@ Namespace Connection ProxyUltra End Enum - Public Enum Colors - _ - ColNormal + Public Enum Colors ' TODO: Translate this + _ + ColNormal 'My.Resources.strNormal _ Col8Bit End Enum - Public Enum SmartSizeMode - _ - SmartSNo - _ - SmartSFree - _ - SmartSAspect + Public Enum SmartSizeMode ' TODO: Translate this + _ + SmartSNo ' My.Resources.strNoSmartSize + _ + SmartSFree ' My.Resources.strFree + _ + SmartSAspect ' My.Resources.strAspect End Enum #End Region End Class diff --git a/mRemoteV1/Forms/frmChoosePanel.vb b/mRemoteV1/Forms/frmChoosePanel.vb index f8d982802..7b64ad34f 100644 --- a/mRemoteV1/Forms/frmChoosePanel.vb +++ b/mRemoteV1/Forms/frmChoosePanel.vb @@ -42,7 +42,7 @@ Public Class frmChoosePanel End Sub Private Sub btnNew_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNew.Click - Dim pnlName As String = InputBox(Language.Base.PanelName & ":", Language.Base.NewPanel, Language.Base.NewPanel) + Dim pnlName As String = InputBox(My.Resources.strPanelName & ":", My.Resources.strNewPanel, My.Resources.strNewPanel) If pnlName <> "" Then AddPanel(pnlName) diff --git a/mRemoteV1/Forms/frmMain.vb b/mRemoteV1/Forms/frmMain.vb index dda26a136..28d74d3a1 100644 --- a/mRemoteV1/Forms/frmMain.vb +++ b/mRemoteV1/Forms/frmMain.vb @@ -69,10 +69,19 @@ Public Class frmMain Private Sub ApplyLanguage() mMenFile.Text = My.Resources.strMenuFile mMenFileNew.Text = My.Resources.strMenuNewConnectionFile + mMenFileNewConnection.Text = My.Resources.strNewConnection + mMenFileNewFolder.Text = My.Resources.strNewFolder mMenFileLoad.Text = My.Resources.strMenuOpenConnectionFile mMenFileSave.Text = My.Resources.strMenuSaveConnectionFile mMenFileSaveAs.Text = My.Resources.strMenuSaveConnectionFileAs + mMenFileImportExport.Text = My.Resources.strImportExport + ImportFromActiveDirectoryToolStripMenuItem.Text = My.Resources.strImportAD + ImportFromPortScanToolStripMenuItem.Text = My.Resources.strImportPortScan + ImportFromRDPFileToolStripMenuItem.Text = My.Resources.strImportRDPFiles + ImportFromXMLFileToolStripMenuItem.Text = My.Resources.strImportmRemoteXML + ExportToXMLFileToolStripMenuItem.Text = My.Resources.strExportmRemoteXML mMenFileExit.Text = My.Resources.strMenuExit + mMenView.Text = My.Resources.strMenuView mMenViewAddConnectionPanel.Text = My.Resources.strMenuAddConnectionPanel mMenViewConnectionPanels.Text = My.Resources.strMenuConnectionPanels @@ -85,15 +94,19 @@ Public Class frmMain mMenViewJumpToConnectionsConfig.Text = My.Resources.strMenuConnectionsAndConfig mMenViewJumpToSessionsScreenshots.Text = My.Resources.strMenuSessionsAndScreenshots mMenViewJumpToErrorsInfos.Text = My.Resources.strMenuNotifications + mMenViewResetLayout.Text = My.Resources.strMenuResetLayout mMenViewQuickConnectToolbar.Text = My.Resources.strMenuQuickConnectToolbar mMenViewExtAppsToolbar.Text = My.Resources.strMenuExternalToolsToolbar mMenViewFullscreen.Text = My.Resources.strMenuFullScreen + mMenTools.Text = My.Resources.strMenuTools mMenToolsSSHTransfer.Text = My.Resources.strMenuSSHFileTransfer mMenToolsExternalApps.Text = My.Resources.strMenuExternalTools mMenToolsPortScan.Text = My.Resources.strMenuPortScan + mMenToolsComponentsCheck.Text = My.Resources.strComponentsCheck mMenToolsUpdate.Text = My.Resources.strMenuCheckForUpdates mMenToolsOptions.Text = My.Resources.strMenuOptions + mMenInfo.Text = My.Resources.strMenuHelp mMenInfoHelp.Text = My.Resources.strMenuHelpContents mMenInfoForum.Text = My.Resources.strMenuSupportForum @@ -101,9 +114,12 @@ Public Class frmMain mMenInfoDonate.Text = My.Resources.strMenuDonate mMenInfoWebsite.Text = My.Resources.strMenuWebsite mMenInfoAbout.Text = My.Resources.strMenuAbout + mMenInfoAnnouncements.Text = My.Resources.strMenuAnnouncements + lblQuickConnect.Text = My.Resources.strLabelConnect btnQuickyPlay.Text = My.Resources.strMenuConnect mMenQuickyCon.Text = My.Resources.strMenuConnections + cMenToolbarShowText.Text = My.Resources.strMenuShowText End Sub @@ -274,7 +290,7 @@ Public Class frmMain Private Sub mMenFileLoad_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mMenFileLoad.Click If App.Runtime.ConnectionsFileLoaded Then - Select Case MsgBox(Language.Base.SaveConnectionsFileBeforeOpeningAnother, MsgBoxStyle.YesNoCancel Or MsgBoxStyle.Question) + Select Case MsgBox(My.Resources.strSaveConnectionsFileBeforeOpeningAnother, MsgBoxStyle.YesNoCancel Or MsgBoxStyle.Question) Case MsgBoxResult.Yes App.Runtime.SaveConnections() Case MsgBoxResult.Cancel @@ -720,10 +736,10 @@ Public Class frmMain For i As Integer = 0 To Screen.AllScreens.Length - 1 SysMenSubItems(i) = 200 + i - SysMenu.AppendMenuItem(popMen, Tools.SystemMenu.Flags.MF_STRING, SysMenSubItems(i), Language.Base.Screen & " " & i + 1) + SysMenu.AppendMenuItem(popMen, Tools.SystemMenu.Flags.MF_STRING, SysMenSubItems(i), My.Resources.strScreen & " " & i + 1) Next - SysMenu.InsertMenuItem(SysMenu.SystemMenuHandle, 0, Tools.SystemMenu.Flags.MF_POPUP Or Tools.SystemMenu.Flags.MF_BYPOSITION, popMen, Language.Base.SendTo) + SysMenu.InsertMenuItem(SysMenu.SystemMenuHandle, 0, Tools.SystemMenu.Flags.MF_POPUP Or Tools.SystemMenu.Flags.MF_BYPOSITION, popMen, My.Resources.strSendTo) SysMenu.InsertMenuItem(SysMenu.SystemMenuHandle, 1, Tools.SystemMenu.Flags.MF_BYPOSITION Or Tools.SystemMenu.Flags.MF_SEPARATOR, IntPtr.Zero, Nothing) End Sub #End Region diff --git a/mRemoteV1/Language/Language.Base.vb b/mRemoteV1/Language/Language.Base.vb deleted file mode 100644 index 5db356fc6..000000000 --- a/mRemoteV1/Language/Language.Base.vb +++ /dev/null @@ -1,11 +0,0 @@ -Namespace Language - Public Class Base - Inherits Language.EN - Public Shared ReadOnly CurrentLanguage As Languages = Languages.EN - End Class - - Public Enum Languages - EN = 1 - DE = 2 - End Enum -End Namespace \ No newline at end of file diff --git a/mRemoteV1/Language/Language.DE.vb b/mRemoteV1/Language/Language.DE.vb deleted file mode 100644 index fb403402e..000000000 --- a/mRemoteV1/Language/Language.DE.vb +++ /dev/null @@ -1,178 +0,0 @@ -Namespace Language - Public Class DE - Public Const Aspect As String = "Aspekt" - Public Const Free As String = "Frei" - Public Const NoSmartSize As String = "Kein SmartSize" - Public Const Normal As String = "Normal" - Public Const None As String = "Kein" - Public Const NoCompression As String = "Keine Kompression" - Public Const Connecting As String = "Verbinde..." - Public Const Disconnected As String = "Getrennt" - Public Const RDP256Colors As String = "256 Farben" - Public Const RDPSoundBringToThisComputer As String = "Auf diesem Computer wiedergeben" - Public Const RDPSoundLeaveAtRemoteComputer As String = "Auf dem Remotecomputer wiedergeben" - Public Const RDPSoundDoNotPlay As String = "Nicht wiedergeben" - Public Const RDPFitToPanel As String = "An das Panel anpassen" - Public Const RDPSmartSize As String = "Smart Size" - - Public Const Fullscreen As String = "Vollbild" - Public Const PasswordProtect As String = "Passwortschützen" - - Public Const AutomaticallyGetSessionInfo As String = "Automatisch Session Informationen einholen" - Public Const WriteLogFile As String = "Log File schreiben (mRemoteNG.log)" - Public Const StartupExit As String = "Start/Ende" - Public Const AllowOnlySingleInstance As String = "Nur eine Instanz zulassen (mRemote Neustart benötigt)" - Public Const ReconnectAtStartup As String = "Offene Verbindungen speichern und beim nächsten Start wiederverbinden" - Public Const CheckForUpdatesOnStartup As String = "Beim Start auf Updates prüfen" - Public Const ConfirmExit As String = "Schließen bestätigen wenn Verbindungen bestehen" - Public Const SaveConsOnExit As String = "Verbindungen beim Schließen speichern" - Public Const MinimizeToSysTray As String = "In die System Tray minimieren" - Public Const ShowFullConsFilePath As String = "Vollen Verbindungsdateipfad im Titel anzeigen" - Public Const AlwaysShowSysTrayIcon As String = "System Tray Icon immer anzeigen" - Public Const ShowDescriptionTooltips As String = "Beschreibungs Tooltips in der Verbindungsliste anzeigen" - Public Const TabsAndPanels As String = "Tabs && Panele" - Public Const ShowProtocolOnTabs As String = "Protokoll im Tab Titel anzeigen" - Public Const ShowLogonInfoOnTabs As String = "Anmeldeinformationen im Tab Titel anzeigen" - Public Const OpenNewTabRight As String = "Neue Tabs rechts vom momentan selektierten Tab öffnen" - Public Const AlwaysShowPanelSelection As String = "Panel Auswahl Dialog immer anzeigen" - Public Const DoubleClickTabClosesIt As String = "Doppelklick schließt Tabs" - Public Const SetHostnameLikeDisplayName As String = "Beim Anlegen einer neuen Verbindung Hostname wie Anzeige Name setzen" - Public Const Experimental As String = "Experimentell" - Public Const UseSQLServer As String = "SQL Server für das Laden && Speichern der Verbindungen verwenden" - Public Const SQLInfo As String = "Für mehr Infos bitte Hilfeeintrag lesen (Info - Help - Getting started - SQL Configuration)" - Public Const SQLServer As String = "SQL Server" - Public Const AutoSaveMins As String = "Minuten (0 = Ausgeschalten)" - Public Const AutoSaveEvery As String = "Automatisch speichern jede:" - Public Const TheFollowing As String = "die folgenden" - Public Const MyCurrentWindowsCreds As String = "meine aktuellen (windows login info)" - Public Const NoInformation As String = "keine" - Public Const EmptyUsernamePasswordDomainFields As String = "Bei leeren Benutzername, Passwort oder Domänen Feldern benutze:" - Public Const SingleClickOnOpenConnectionSwitchesToIt As String = "Ein einzelner Klick auf eine geöffnete Verbindung springt zu dieser" - Public Const SingleClickOnConnectionOpensIt As String = "Ein einzelner Klick auf eine Verbindung öffnet diese" - Public Const SwitchToErrorsAndInfos As String = "Öffne das Fehler && Infos Panel bei" - Public Const Errors As String = "Fehler" - Public Const Warnings As String = "Warnungen" - Public Const Informations As String = "Informationen" - Public Const UseOnlyErrorsAndInfosPanel As String = "Nur Fehler && Infos Panel benutzen (Keine Popups)" - Public Const Applications As String = "Applikationen" - Public Const ProxyTestSucceeded As String = "Proxy test erfolgreich!" - Public Const ProxyTestFailed As String = "Proxy test fehlgeschlagen!" - - Public Const StartIP As String = "Start IP" - Public Const EndIP As String = "End IP" - Public Const ProtocolToImport As String = "Zu importierendes Protokoll" - Public Const OpenPorts As String = "Offene Ports" - Public Const ClosedPorts As String = "Geschlossene Ports" - Public Const StartPort As String = "Start Port" - Public Const EndPort As String = "End Port" - Public Const QuickConnect As String = "Quick Connect" - Public Const UncheckProperties As String = "Deaktivieren sie alle Eigenschaften die nicht gespeichert werden sollen." - Public Const Export As String = "Export" - Public Const SaveAll As String = "Alle speichern" - Public Const RemoveAll As String = "Alle entfernen" - Public Const Save As String = "Speichern" - Public Const SaveImageFilter As String = "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" ' TODO: Translate - Public Const Screenshots As String = "Screenshots" - Public Const Activity As String = "Aktivität" - Public Const Type As String = "Type" - Public Const Refresh As String = "Aktualisieren" - Public Const LogOff As String = "Ausloggen" - Public Const LocalFile As String = "Lokale Datei" - Public Const RemoteFile As String = "Remote Datei" - Public Const User As String = "Benutzer" - Public Const Host As String = "Host" - Public Const Transfer As String = "Transfer" - Public Const AddConnection As String = "Verbindung hinzufügen" - Public Const AddFolder As String = "Ordner hinzufügen" - Public Const Connect As String = "Verbinden" - Public Const ConnectWithOptions As String = "Verbinden (mit Optionen)" - Public Const ConnectToConsoleSession As String = "Mit der Console Session verbinden" - Public Const ConnectInFullscreen As String = "Im Vollbild verbinden" - Public Const ChoosePanelBeforeConnecting As String = "Panel vor Verbindung auswählen" - Public Const Tools As String = "Extras" - Public Const ImportExport As String = "Importieren/Exportieren" - Public Const ExportmRemoteXML As String = "mRemote XML exportieren" - Public Const ImportmRemoteXML As String = "mRemote XML importieren" - Public Const ImportAD As String = "Aus Active Directory importieren" - Public Const ImportRDPFiles As String = "Aus .RDP Datei(en) importieren" - Public Const ImportPortScan As String = "Von Port Scan importieren" - Public Const Sort As String = "Sortieren" - Public Const SortAsc As String = "Aufsteigend (A-Z)" - Public Const SortDesc As String = "Abfallend (Z-A)" - Public Const Duplicate As String = "Duplizieren" - Public Const Rename As String = "Umbenennen" - Public Const MoveUp As String = "Nach oben" - Public Const MoveDown As String = "Nach unten" - Public Const ExpandAllFolders As String = "Alle Ordner erweitern" - Public Const CollapseAllFolders As String = "Alle Ordner schließen" - Public Const NewConnection As String = "Neue Verbindung" - Public Const NewFolder As String = "Neuer Ordner" - Public Const CheckForUpdate As String = "Auf Update prüfen" - Public Const DownloadAndInstall As String = "Downloaden && Installieren" - Public Const AvailableVersion As String = "Verfügbare Version" - Public Const CurrentVersion As String = "Aktuelle Version" - Public Const Version As String = "Version" - Public Const UpdateAvailable As String = "Update verfügbar!" - Public Const NoUpdateAvailable As String = "Kein Update verfügbar!" - Public Const UpdateDownloadComplete As String = "Download fertiggestellt!" & vbNewLine & "mRemote wird nun geschlossen und die Installation gestartet." - Public Const SendTo As String = "Senden an..." - Public Const Screen As String = "Bildschirm" - - Public Const UnclosedConnectionPanels As String = "Es sind noch geöffnete Verbindungs Panele vorhanden, wollen sie wirklich beenden?" - Public Const SaveConnectionsFileBeforeOpeningAnother As String = "Wollen sie die aktuelle Verbindungs-Datei speichern bevor eine andere geladen wird?" - Public Const NewPanel As String = "Neues Panel" - Public Const PanelName As String = "Panel Name" - Public Const NewTitle As String = "Neuer Titel" - - Public Const AlwaysConnectEvenIfAuthFails As String = "Immer verbinden, auch wenn Authentifizierung fehlschlägt" - Public Const DontConnectWhenAuthFails As String = "Keine Verbindung herstellen wenn Authentifizierung fehlschlägt" - Public Const WarnIfAuthFails As String = "Warnung anzeigen wenn Authentifizierung fehlschlägt" - Public Const UltraVNCSCListeningPort As String = "UltraVNC SingleClick Port" - Public Const ListeningForIncomingVNCConnections As String = "Warte auf eingehende VNC Verbindungen auf Port" - - Public Const CheckProperInstallationOfComponentsAtStartup As String = "Überprüfe die Installation aller Komponenten beim Start" - Public Const XULrunnerPath As String = "XULrunner Pfad" - Public Const Inherit As String = "Vererbe" - - Public Const ComponentsCheck As String = "Komponenten Check" - - Public Const EncryptCompleteConnectionFile As String = "Connections Datei vollständig verschlüsseln" - - Public Const EmptyPasswordContinue As String = "Wollen sie ohne Passwort fortfahren?" - - 'CompCheck - Public Const CcAlwaysShowScreen As String = "Bei jedem Start anzeigen" - Public Const CcCheckAgain As String = "Aktualisieren" - Public Const CcNotInstalledProperly As String = "nicht korrekt installiert" - Public Const CcCheckSucceeded As String = "Check erfolgreich!" - Public Const CcCheckFailed As String = "Check fehlgeschlagen!" - Public Const CcRDPOK As String = "Alle RDP Komponenten wurden gefunden und scheinen korrekt registriert zu sein." - Public Const CcRDPFailed As String = "Um RDP korrekt betreiben können muss mindestens Remote Desktop Connection (Terminal Services Client) 6.0 installiert sein. Hier können sie die Software herunterladen: http://support.microsoft.com/kb/925876" & vbNewLine & _ - "Wenn sie RDP 6.0 bereits installiert haben und der Check noch immer fehlschlägt, versuchen sie die Datei mstscax.dll manuell zu registrieren. Öffnen sie hierzu den Ausführen Dialog (Start - Ausführen) und geben sie Folgendes ein: regsvr32 ""c:\windows\system32\mstscax.dll"" (Wobei c:\ ihr System-Laufwerk ist)." & vbNewLine & _ - "Wenn sie noch immer Probleme mit RDP haben, konsultieren sie bitte das mRemote Forum: http://forum.mremoteng.org/" - Public Const CcVNCOK As String = "Alle VNC Komponenten wurden gefunden und scheinen korrekt registriert zu sein." - Public Const CcVNCFailed As String = "VNC benötigt die Datei scvncctrl.dll (wird mitgeliefert). Diese muss registriert sein. Wenn sie eines der nicht-Setup Pakete verwenden muss dies manuell durchgeführt werden." & vbNewLine & _ - "Öffnen sie hierzu den Ausführen Dialog (Start - Ausführen) und geben sie Folgendes ein: regsvr32 ""c:\Programme\mRemote\scvncctrl.dll"" (Wobei c:\Programme\mRemote\ ihr mRemote Installations-Pfad ist)." & vbNewLine & _ - "Wenn sie noch immer Probleme mit VNC haben, konsultieren sie bitte das mRemote Forum: http://forum.mremoteng.org/" - Public Const CcPuttyOK As String = "PuTTY wurde gefunden und scheint betriebsbereit zu sein." - Public Const CcPuttyFailed As String = "Die Protokolle, SSH, Telnet, Rlogin und RAW benötigen PuTTY. PuTTY wird in allen mRemote Paketen mitgeliefert und befindet sich im Installations-Pfad." & vbNewLine & _ - "Bitte versichern sie sich dass sich die Datei Putty.exe in ihrem mRemote Installations-Pfad befindet (Standard: c:\Programme\mRemote\) oder dass sie einen korrekten Pfad in den Optionen (Extras - Optionen - Erweitert - Eigener PuTTY Pfad) angegeben haben." - Public Const CcICAOK As String = "Alle ICA Komponenten wurden gefunden und scheinen korrekt registriert zu sein." - Public Const CcICAFailed As String = "ICA benötigt eine funktionierende Citrix Presentation Server Client Installation und dass die Datei wfica.ocx korrekt registriert ist. Hier können sie den Client herunterladen: http://www.citrix.com/download/" & vbNewLine & _ - "Wenn sie Citrix Presentation Server Client installiert haben und noch immer Probleme haben diesen Check erfolgreich abzuschließen, versuchen sie die Datei wfica.ocx manuell zu registrieren." & vbNewLine & _ - "Öffnen sie hierzu den Ausführen Dialog (Start - Ausführen) und geben sie Folgendes ein: regsvr32 ""c:\Programme\Citrix\ICA Client\wfica.ocx"" (Wobei c:\Programme\Citrix\ICA Client\ ihr Citrix Presentation Server Client Installations-Pfad ist)." & vbNewLine & _ - "Wenn sie noch immer Probleme mit ICA haben, konsultieren sie bitte das mRemote Forum: http://forum.mremoteng.org/" - Public Const CcGeckoOK As String = "XULrunner wurde gefunden und scheint korrekt installiert zu sein." - Public Const CcGeckoFailed As String = "Um die Gecko Rendering Engine benutzen zu können benötigen sie XULrunner 1.8.1.x und einen korrekt eingetragenen Pfad in den Optionen." & vbNewLine & _ - "Hier können sie XULrunner 1.8.1.3 herunterladen: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/" & vbNewLine & _ - "Wenn der Download abgeschlossen ist entpacken sie das Paket (Der Speicherort ist dabei ihnen überlassen). Als nächstes öffnen sie (in mRemote) Extras - Optionen - Erweitert und geben sie den korrekten Pfad im XULrunner Feld an." & vbNewLine & _ - "Wenn sie noch immer Probleme mit der Gecko Engine in mRemote haben, konsultieren sie bitte das mRemote Forum: http://forum.mremoteng.org/" - Public Const CcEOLOK As String = "EOLWTSCOM wurde gefunden und scheint korrekt registriert zu sein." - Public Const CcEOLFailed As String = "Das (RDP) Sessions feature benötigt die Datei eolwtscom.dll. Diese muss korrekt registriert sein." & vbNewLine & _ - "Alle mRemote Pakete beinhalten diese Datei, jedoch muss sie, wenn sie eines der nicht-Setup Pakete verwenden manuell registriert werden." & vbNewLine & _ - "Öffnen sie hierzu den Ausführen Dialog (Start - Ausführen) und geben sie Folgendes ein: regsvr32 ""c:\Programme\mRemote\eolwtscom.dll"" (Wobei c:\Programme\mRemote\ ihr mRemote Installations-Pfad ist)." & vbNewLine & _ - "Wenn sie noch immer Probleme mit dem (RDP) Sessions Feature in mRemote haben, konsultieren sie bitte das mRemote Forum: http://forum.mremoteng.org/" - - Public Const PropertiesWillOnlyBeSavedMRemoteXML As String = "(Diese Einstellungen werden nur gespeichert wenn sie mRemote XML als Dateiformat auswählen!)" - End Class -End Namespace \ No newline at end of file diff --git a/mRemoteV1/Language/Language.EN.vb b/mRemoteV1/Language/Language.EN.vb deleted file mode 100644 index 842cb5e18..000000000 --- a/mRemoteV1/Language/Language.EN.vb +++ /dev/null @@ -1,192 +0,0 @@ -Namespace Language - Public Class EN - Public Const Props_RDGatewayUsageMethod As String = "Use Gateway" - Public Const Descr_RDGatewayUsageMethod As String = "Specifies when to use a Remote Desktop Gateway (RD Gateway) server." - Public Const Props_RDGatewayHostname As String = "Gateway Hostname" - Public Const Descr_RDGatewayHostname As String = "Specifies the host name of the Remote Desktop Gateway server." - Public Const Props_RDGatewayUseConnectionCredentials As String = "Gateway Credentials" - Public Const Descr_RDGatewayUseConnectionCredentials As String = "Specifies whether or not to log on to the gateway using the same username and password as the connection." - Public Const Props_RDGatewayUsername As String = "Gateway Username" - Public Const Descr_RDGatewayUsername As String = "Specifies the user name that a user provides to connect to the RD Gateway server." - Public Const Props_RDGatewayPassword As String = "Gateway Password" - Public Const Descr_RDGatewayPassword As String = "Specifies the password that a user provides to connect to the RD Gateway server." - Public Const Props_RDGatewayDomain As String = "Gateway Domain" - Public Const Descr_RDGatewayDomain As String = "Specifies the domain name that a user provides to connect to the RD Gateway server." - - Public Const Aspect As String = "Aspect" - Public Const Free As String = "Free" - Public Const NoSmartSize As String = "No SmartSize" - Public Const Normal As String = "Normal" - Public Const None As String = "None" - Public Const NoCompression As String = "No Compression" - Public Const Connecting As String = "Connecting..." - Public Const Disconnected As String = "Disconnected" - Public Const RDP256Colors As String = "256 Colors" - Public Const RDPSoundBringToThisComputer As String = "Bring to this computer" - Public Const RDPSoundLeaveAtRemoteComputer As String = "Leave at remote computer" - Public Const RDPSoundDoNotPlay As String = "Do not play" - Public Const RDPFitToPanel As String = "Fit To Panel" - Public Const RDPSmartSize As String = "Smart Size" - - Public Const Fullscreen As String = "Fullscreen" - Public Const PasswordProtect As String = "Password Protect" - - Public Const AutomaticallyGetSessionInfo As String = "Automatically get session information" - Public Const WriteLogFile As String = "Write log file (mRemoteNG.log)" - Public Const StartupExit As String = "Startup/Exit" - Public Const AllowOnlySingleInstance As String = "Allow only a single instance of the application (mRemoteNG restart required)" - Public Const ReconnectAtStartup As String = "Reconnect to previously opened sessions on startup" - Public Const CheckForUpdatesOnStartup As String = "Check for updates and announcements" - Public Const ConfirmExit As String = "Confirm exit if there are open connections" - Public Const SaveConsOnExit As String = "Save connections on exit" - Public Const MinimizeToSysTray As String = "Minimize to System Tray" - Public Const ShowFullConsFilePath As String = "Show full connections file path in window title" - Public Const AlwaysShowSysTrayIcon As String = "Always show System Tray Icon" - Public Const ShowDescriptionTooltips As String = "Show description tooltips in connection tree" - Public Const TabsAndPanels As String = "Tabs && Panels" - Public Const ShowProtocolOnTabs As String = "Show protocols on tab names" - Public Const ShowLogonInfoOnTabs As String = "Show logon information on tab names" - Public Const OpenNewTabRight As String = "Open new tab to the right of the currently selected tab" - Public Const AlwaysShowPanelSelection As String = "Always show panel selection dialog when opening connectins" - Public Const DoubleClickTabClosesIt As String = "Double click on tab closes it" - Public Const SetHostnameLikeDisplayName As String = "Set hostname like display name when creating new connections" - Public Const Experimental As String = "Experimental" - Public Const UseSQLServer As String = "Use SQL Server to load && save connections" - Public Const SQLInfo As String = "Please see Help - Getting started - SQL Configuration for more Info!" - Public Const SQLServer As String = "SQL Server" - Public Const AutoSaveMins As String = "Minutes (0 means disabled)" - Public Const AutoSaveEvery As String = "Auto Save every:" - Public Const TheFollowing As String = "the following" - Public Const MyCurrentWindowsCreds As String = "my current credentials (windows logon info)" - Public Const NoInformation As String = "no information" - Public Const EmptyUsernamePasswordDomainFields As String = "For empty Username, Password or Domain fields use:" - Public Const SingleClickOnOpenConnectionSwitchesToIt As String = "Single click on opened connection switches to it" - Public Const SingleClickOnConnectionOpensIt As String = "Single click on connection opens it" - Public Const SwitchToErrorsAndInfos As String = "Switch to Notifications panel on" - Public Const Errors As String = "Errors" - Public Const Warnings As String = "Warnings" - Public Const Informations As String = "Informations" - Public Const UseOnlyErrorsAndInfosPanel As String = "Use only Notifications panel (no messagebox popups)" - Public Const Applications As String = "Applications" - Public Const ProxyTestSucceeded As String = "Proxy test succeeded!" - Public Const ProxyTestFailed As String = "Proxy test failed!" - - Public Const StartIP As String = "Start IP" - Public Const EndIP As String = "End IP" - Public Const ProtocolToImport As String = "Protocol to import" - Public Const OpenPorts As String = "Open Ports" - Public Const ClosedPorts As String = "Closed Ports" - Public Const StartPort As String = "Start Port" - Public Const EndPort As String = "End Port" - Public Const QuickConnect As String = "Quick Connect" - Public Const UncheckProperties As String = "Uncheck the properties you want not to be saved!" - Public Const Export As String = "Export" - Public Const SaveAll As String = "Save All" - Public Const RemoveAll As String = "Remove All" - Public Const Save As String = "Save" - Public Const SaveImageFilter As String = "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" - Public Const Screenshots As String = "Screenshots" - Public Const Activity As String = "Activity" - Public Const Type As String = "Type" - Public Const Refresh As String = "Refresh" - Public Const LogOff As String = "Log off" - Public Const LocalFile As String = "Local File" - Public Const RemoteFile As String = "Remote File" - Public Const User As String = "User" - Public Const Host As String = "Host" - Public Const Transfer As String = "Transfer" - Public Const AddConnection As String = "New Connection" - Public Const AddFolder As String = "New Folder" - Public Const Connect As String = "Connect" - Public Const ConnectWithOptions As String = "Connect (with options)" - Public Const ConnectToConsoleSession As String = "Connect to console session" - Public Const ConnectInFullscreen As String = "Connect in fullscreen" - Public Const ChoosePanelBeforeConnecting As String = "Choose panel before connecting" - Public Const Tools As String = "Tools" - Public Const ImportExport As String = "Import/Export" - Public Const ExportmRemoteXML As String = "Export mRemote/mRemoteNG XML" - Public Const ImportmRemoteXML As String = "Import mRemote/mRemoteNG XML" - Public Const ImportAD As String = "Import from Active Directory" - Public Const ImportRDPFiles As String = "Import from .RDP file(s)" - Public Const ImportPortScan As String = "Import from Port Scan" - Public Const Sort As String = "Sort" - Public Const SortAsc As String = "Ascending (A-Z)" - Public Const SortDesc As String = "Descending (Z-A)" - Public Const Duplicate As String = "Duplicate" - Public Const Rename As String = "Rename" - Public Const MoveUp As String = "Move up" - Public Const MoveDown As String = "Move down" - Public Const ExpandAllFolders As String = "Expand all folders" - Public Const CollapseAllFolders As String = "Collapse all folders" - Public Const NewConnection As String = "New Connection" - Public Const NewFolder As String = "New Folder" - Public Const CheckForUpdate As String = "Check Again" - Public Const DownloadAndInstall As String = "Download and Install" - Public Const AvailableVersion As String = "Current version" - Public Const CurrentVersion As String = "Installed version" - Public Const Version As String = "Version" - Public Const UpdateAvailable As String = "mRemoteNG requires an update" - Public Const NoUpdateAvailable As String = "mRemoteNG is up to date" - Public Const UpdateDownloadComplete As String = "Download complete!" & vbNewLine & "mRemoteNG will now quit and begin with the installation." - Public Const SendTo As String = "Send to..." - Public Const Screen As String = "Screen" - - Public Const SaveConnectionsFileBeforeOpeningAnother As String = "Do you want to save the current connections file before loading another?" - Public Const NewPanel As String = "New Panel" - Public Const PanelName As String = "Panel name" - Public Const NewTitle As String = "New Title" - - Public Const AlwaysConnectEvenIfAuthFails As String = "Always connect, even if authentication fails" - Public Const DontConnectWhenAuthFails As String = "Don't connect if authentication fails" - Public Const WarnIfAuthFails As String = "Warn me if authentication fails" - Public Const UltraVNCSCListeningPort As String = "UltraVNC SingleClick Listening Port" - Public Const ListeningForIncomingVNCConnections As String = "Listening for incoming VNC connections on port" - - Public Const CheckProperInstallationOfComponentsAtStartup As String = "Check proper installation of components at startup" - Public Const XULrunnerPath As String = "XULrunner path" - Public Const Inherit As String = "Inherit" - Public Const ComponentsCheck As String = "Components Check" - - Public Const EncryptCompleteConnectionFile As String = "Completely encrypt connection file" - - Public Const EmptyPasswordContinue As String = "Do you want to continue with no password?" - - 'CompCheck - Public Const CcAlwaysShowScreen As String = "Always show this screen at startup" - Public Const CcCheckAgain As String = "Refresh" - Public Const CcNotInstalledProperly As String = "not installed properly" - Public Const CcCheckSucceeded As String = "Check succeeded!" - Public Const CcCheckFailed As String = "Check failed!" - Public Const CcRDPOK As String = "All RDP components were found and seem to be registered properly." & vbNewLine & _ - "Remote Desktop Connection Control Version {0}" - Public Const CcRDPFailed As String = "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" & vbNewLine & _ - "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)." & vbNewLine & _ - "If you still have trouble getting RDP to work please consult the mRemoteNG Forum at http://forum.mremoteng.org/" - Public Const CcVNCOK As String = "All VNC components were found and seem to be registered properly." & vbNewLine & _ - "VncSharpNG Control Version {0}" - Public Const CcVNCFailed As String = "VNC requires VncSharpNG.dll to be located in your mRemoteNG application folder." & vbNewLine & _ - "Please make sure that you have the VncSharpNG.dll file in your mRemoteNG application folder (usually C:\Program Files\mRemoteNG\)." & vbNewLine & _ - "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/" - Public Const CcPuttyOK As String = "The PuTTY executable was found and should be ready to use." - Public Const CcPuttyFailed As String = "The SSH, Telnet, Rlogin and RAW protocols need PuTTY to work. PuTTY comes with every mRemoteNG package and is located in the installation path." & vbNewLine & _ - "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)" - Public Const CcICAOK As String = "All ICA components were found and seem to be registered properly." & vbNewLine & _ - "Citrix ICA Client Control Version {0}" - Public Const CcICAFailed As String = "ICA requires that the Citrix Presentation Server Client is installed and that the wfica.ocx library is registered. You can download the client here: http://www.citrix.com/download/" & vbNewLine & _ - "If you have the Citrix Presentation Server Client installed and the check still fails, try to register wfica.ocx manually." & vbNewLine & _ - "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 Citrix Presentation Server Client installation)." & vbNewLine & _ - "If you are still not able to pass this check or use ICA in mRemoteNG please consult the mRemoteNG Forum at http://forum.mremoteng.org/" - Public Const CcGeckoOK As String = "XULrunner was found and seems to be installed properly." - Public Const CcGeckoFailed As String = "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." & vbNewLine & _ - "You can download XULrunner 1.8.1.3 here: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/" & vbNewLine & _ - "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." & vbNewLine & _ - "If you are still not able to pass this check or use the Gecko Engine in mRemoteNG please consult the mRemoteNG Forum at http://forum.mremoteng.org/" - Public Const CcEOLOK As String = "EOLWTSCOM was found and seems to be registered properly." - Public Const CcEOLFailed As String = "The (RDP) Sessions feature requires that you have a registered copy of eolwtscom.dll on your system." & vbNewLine & _ - "mRemoteNG ships with this component but will not register it automatically unless you run the setup package." & vbNewLine & _ - "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)." & vbNewLine & _ - "If you are still not able to pass this check or use the (RDP) Sessions feature in mRemoteNG please consult the mRemoteNG Forum at http://forum.mremoteng.org/" - - Public Const PropertiesWillOnlyBeSavedMRemoteXML As String = "(These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!)" - End Class -End Namespace \ No newline at end of file diff --git a/mRemoteV1/Language/Resources.de.resx b/mRemoteV1/Language/Resources.de.resx index 5789b85d6..c45c29628 100644 --- a/mRemoteV1/Language/Resources.de.resx +++ b/mRemoteV1/Language/Resources.de.resx @@ -1,6 +1,6 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Über - + Aktiv - + &Abbrechen - + &Schließen - + &Importieren - + &Neu - + &Scannnen - + &Stop - + Are you sure you want to delete the connection, "{0}"? Need translation - + Are you sure you want to delete the empty folder, "{0}"? Need translation - + Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted. Need translation - + Möchten Sie alle offenen Verbindungen schließen? - + Sind Sie sicher das Sie das Panel auf das Standartlayout zurücksetzen wollen? - - Wählen sie die Farb Qualität. + + Wählen Sie die Farb Qualität. - + Farben - + Diese Nachricht nicht erneut zeigen. - + Beinhaltet die Symbole von [FAMFAMFAM] - + Inaktiv - - Change Log: + + Veränderungsprotokoll: Need translation - + &Connect: - + Passwort: - + Überprüfen: - + Benutzt die Magic library von [Crownwood Software] - + Über - + Verbindungs Panel hinzufügen - + Suche nach Updates - + Konfiguration - + Connect - + Verbindungs Panels - + Verbindungen - - Verbindungen and Konfiguration - - + Spenden - + Beenden - + Externe Programme - + Externe Programme Symbolleiste - + &Datei - + Vollbild - + Vollbild (RDP) - + &Hilfe - + mRemoteNG Hilfe - + Springe zu - + Neu Verbindungen Datei - + Meldungen - + Verbindungen Datei öffnen... - + Optionen - + Port Scan - + Schnell Verbinden Symbolleiste - + Verbindungen Datei speichern - + Verbindungen Datei speichern unter... - - Screenshot Manager + + Bildschirmschnappschuss Verwaltung - + Sessions - - Sessions and Screenshots + + Sitzungen and Bildschirmschnappschüsse - + Text anzeigen - + SSH Datei Transfer - + E&xtras - + &Ansicht - + Webseite - + Wähle ein Panel aus der Liste oder klicke auf Neu um ein neues zu erstellen. Klicke OK um fortzufahren. - + Aspekt - + Free - + Kein SmartSize - + Status - + Passwort - + Wähle Panel - + Starte PuTTY - + Test Proxy - + Automatisch versuchen zu verbinden wenn Verbindung getrennt wird (nur RDP && ICA) - + Benutze Authentifizierung - + Eigener PuTTY Pfad: - + Proxy für automatische Updates verwenden - + Addresse: - + Portable Edition Need translation - + Hier klicken um PuTTY Sessions zu konfigurieren: - + Maximale Zeit die auf PuTTY und integrierte Ext. Apps gewartet wird: - + Unter der GNU General Public License (GPL) veröffentlicht - + Sekunden - + Ctrl-Alt-Del - + Ctrl-Esc - + Erweitert - + Ändern - + Verbinden wenn bereit - + Verbindungen - + Alle Dateien (*.*) - + Application Dateien (*.exe) Need translation - + mRemote CSV Dateien (*.csv) - + mRemote XML Dateien (*.xml) - + RDP Dateien (*.rdp) - + visionapp Remote Desktop 2008 CSV Dateien (*.csv) - + Automatisches wiederverbinden - + Verbindung - + Dateien - + Server Status: - - Neu Verbindung + + Neue Verbindung - - Neu Ordner + + Neuer Ordner - - Neu Wurzel + + Neue Wurzel - + Nein - + Fehler ({0}) - + Information ({0}) - + Warnung ({0}) - + Every {0} days Need translation - + Daily Need translation - + Monthly Need translation - + Weekly Need translation - - Ya + + Ja - + &Durchsuchen... - + Standard Vererbung - + Standard Eigenschaften - + Trennen - + Vererbung - + Eigenschaften - + Domäne - - Inheritance + + Vererbung - + Passwort - + Benutzername - + Auf Beendigung warten - + Parameter - + Anzeige Name - + Dateiname - + Nachricht - + Auf Beendigung warten - + Are you sure you want to delete the external tool, "{0}"? Need translation - + Are you sure you want to delete the {0} selected external tools? Need translation - + Applikation Editor - + Parameter: - + Anzeige Name - + Dateiname: - + Optionen: - + Kopieren - + Entfernen - + Trennen - + Tab klonen - + Starten - + Hinzufügen - + Einfügen - + Wiederverbinden - + Anzeige aktualisieren (VNC) - + Tab umbenennen - + Screenshot - + Tastenkombination senden (VNC) - + SmartSize (RDP/VNC) - + Chat starten (VNC) - + Datei übertragen (SSH) - + View-Only (VNC) - + Der Hostname oder die IP zu der eine Verbinung aufgebaut werden soll. - + Hostname/IP - + Icon - + Aussehen - + Verbindung - + Credentials Need translation - + Anzeige - + Gateway Need translation - + Verschiedenes - + Protokoll - + Umleitung - + Hostname/IP - + Benutzername - + Domäne: - + Port: - + Protokoll: - + Benutzername: - + Put your notes or a description for the host here. - - Geben sie hier ihre Domäne ein. + + Geben Sie hier ihre Domäne ein. - + Das ausgewählte Icon wird bei Verbindung zum Host im Tab angezeigt. - + Dies ist der Name der im Verbindungs Baum angezeigt wird. - + Setzt das Panel in dem die Verbindung geöffnet wird. - - Geben sie hier ihr Passwort ein. + + Geben Sie hier ihr Passwort ein. - - Geben sie den Port ein auf dem das Protokoll auf Verbindungen wartet. + + Geben Sie den Port ein auf dem das Protokoll auf Verbindungen wartet. - - Wählen sie das Protokoll das verwendet werden soll um eine Verbindung aufzubauen. + + Wählen Sie das Protokoll das verwendet werden soll um eine Verbindung aufzubauen. - - Geben sie hier ihren Benutzernamen ein. + + Geben Sie hier ihren Benutzernamen ein. - + Beschreibung - + Domäne - + Icon - + Vererbe Beschreibung - + Vererbe Domäne - + Vererbe Icon - + Vererbe Panel - + Vererbe Passwort - + Vererbe Port - + Vererbe Protokoll - + Vererbe Benutzername - + Name - + Panel - + Passwort - + Port - + Protokoll - + Benutzername - + Aussehen - + Generell - - Wählen sie welche Authentifizierungs-Variante verwendet wird. + + Wählen Sie welche Authentifizierungs-Variante verwendet wird. - - Wählen sie wie sie sich am VNC server authentifizieren wollen. + + Wählen Sie wie sie sich am VNC server authentifizieren wollen. - - Wählen sie ob Bitmap caching zum Einsatz kommen soll. + + Wählen Sie ob Bitmap caching zum Einsatz kommen soll. - - Wählen sie die Kompressionsrate die verwendet werden soll. + + Wählen Sie die Kompressionsrate die verwendet werden soll. - - Wählen sie ob Themen am Remote Host angezeigt werden sollen. + + Wählen Sie ob Themen am Remote Host angezeigt werden sollen. - - Wählen sie ob Hintergrundbilder am Remote Host angezeigt werden sollen. + + Wählen Sie ob Hintergrundbilder am Remote Host angezeigt werden sollen. - - Wählen sie die Codierung die verwendet werden soll. + + Wählen Sie die Codierung die verwendet werden soll. - - Wählen sie die Verschlüsselungsstärke des Remote Hosts. + + Wählen Sie die Verschlüsselungsstärke des Remote Hosts. - - Wählen sie die Ext. App die gestartet werden soll. + + Wählen Sie die externe Applikation die gestartet werden soll. Need translation - - Wählen sie eine Ext. App die gestartet werden soll nachdem die Verbindung zum Remote Host getrennt wurde. + + Wählen Sie eine externe Applikation die gestartet werden soll nachdem die Verbindung zum Remote Host getrennt wurde. Need translation - - Wählen sie eine Ext. App die gestartet werden soll bevor die Verbindung zum Remote Host aufgebaut wurde. + + Wählen Sie eine externe Applikation die gestartet werden soll bevor die Verbindung zum Remote Host aufgebaut wurde. Need translation - - Geben sie die MAC Adresse des Remote Hosts ein (kann für Ext. Apps verwendet werden). + + Geben Sie die MAC Adresse des Remote Hosts ein (kann für externe Applikationen verwendet werden). - - Wählen sie eine PuTTY session die bei Verbindung verwendet werden soll. + + Wählen Sie eine PuTTY Sitzung die bei Verbindung verwendet werden soll. - - Wählen sie ob ihre lokalen Festplatten am Remote Host angezeigt werden sollen. + + Wählen Sie ob ihre lokalen Festplatten im entfernten System angezeigt werden sollen. - - Wählen sie ob Tastenkombinationen wie z.B. Alt-Tab auf den Remote Host umgeleitet werden sollen. + + Wählen Sie ob Tastenkombinationen wie z.B. Alt-Tab auf das entfernte System umgeleitet werden sollen. - - Wählen sie ob ihre lokalen Ports wie z.B. COM, Parallel auf dem Remote Host angezeigt werden sollen. + + Wählen Sie ob ihre lokalen Ports wie z.B. COM, Parallel auf dem entfernte System angezeigt werden sollen. - - Wählen sie ob ihre lokalen Drucker am Remote Host angezeigt werden sollen. + + Wählen Sie ob ihre lokalen Drucker auf dem entfernten System zur Verfügung stehen sollen. - - Wählen sie ob ihre lokalen Smart Cards auf dem Remote Host zur Verfügung stehen sollen. + + Wählen Sie ob ihre lokalen Smart Cards auf dem entfernten System zur Verfügung stehen sollen. - - Wählen sie wie Töne auf dem Remote Host wiedergegeben werden sollen. + + Wählen Sie wie Töne auf dem entfernten System wiedergegeben werden sollen. - - Wählen sie eine der Rendering Engines die verwendet wird um html darzustellen. + + Wählen Sie eine der Rendering Engines die verwendet wird um html darzustellen. - - Wählen sie die Auflösung in welcher der Host geöffnet werden soll. + + Wählen Sie die Auflösung in welcher der Host geöffnet werden soll. - - Wählen sie den SmartSize Modus der verwendet werden soll. + + Wählen Sie den automatische Anpassungs (SmartSize) Modus der verwendet werden soll. - + Zur Console Session des Remote Hosts verbinden. - + Dieses Feld ist frei beschreibbar. - - Wählen sie ob sie eine View-Only Verbindung aufbauen wollen. + + Wählen Sie ob sie eine Nur-Anzeige (View-Only) Verbindung aufbauen wollen. - - Geben sie die IP des Proxy Servers ein. + + Geben Sie die IP des Proxy Servers ein. Need translation - - Geben sie ihr Password ein. + + Geben Sie ihr Passwort ein. - - Geben sie den Port des Proxy Servers ein. + + Geben Sie den Port des Proxy Servers ein. - - Wenn sie einen Proxy verwenden um auf den Remote Host zugreifen zu können, wählen sie hier den Typ. + + Wenn Sie einen Proxy verwenden um auf das entfernte System zugreifen zu können, wählen sie hier den Typ. - - Geben sie ihren Benutzernamen ein. + + Geben Sie ihren Benutzernamen ein. - + Serverauthentifizierung - + Authentication Mode Need translation - + Bitmaps zwischenspeichern - + Kompremierung - + Themen anzeigen - + Hintergrundbild anzeigen - + Codierung - + Verschlüsselungsstärke - + External Tool Need translation - + External Tool After Need translation - + External Tool Before Need translation - + Alles vererben - + Vererbe Serverauthentifizierung - + Vererbe Authentication Mode - + Vererbe Cache Bitmaps - + Vererbe Farben - + Vererbe Kompremierung - + Vererbe Display Themes - + Vererbe Display Wallpaper - + Vererbe Codierung - + Vererbe Verschlüsselungsstärke - + Vererbe External Tool Need translation - + Vererbe External Tool After Need translation - + Vererbe External Tool Before Need translation - + Vererbe MAC Adresse - + Vererbe PuTTY Session - + Vererbe Disk Drives - + Vererbe Key Combinations - + Vererbe Ports - + Vererbe Printers - + Vererbe Smart Cards - + Vererbe Sounds - + Vererbe Rendering Engine - + Vererbe Resolution - + Vererbe SmartSize Modus - + Vererbe Verwende Console Session - + Vererbe Benutzer Feld - + Vererbe View-Only - + Vererbe Proxy Address Need translation - + Vererbe Proxy Passwort - + Vererbe Proxy Port - + Vererbe Proxy Typ - + Vererbe Proxy Benutzername - + MAC Adresse - + PuTTY Session - + Festplatten - + Tastenkombinationen - + Ports - + Drucker - + Smart Cards - + Töne - + Rendering Engine - + Auflösung - + SmartSize Modus - + Verwende Console Session - + Benutzer Feld - + View-Only - + Proxy Address Need translation - + Proxy Passwort - + Proxy Port - + Proxy Typ - + Proxy Benutzername + + Komponenten Überprüfung + + + Diesen Bildschirm bei jedem Start anzeigen + + + Aktualisieren + + + Verbinde... + + + + + + + + + Löschen... + + + Verbindung löschen... + + + Ordner löschen... + + + Duplizieren + + + Verbindung duplizieren + + + Ordner duplizieren + + + Umbenennen + + + Verbindung umbenennen + + + Ordner umbenennen + + + + + + Verbindungen and Konfiguration + + + Fehler melden + + + Unterstützungs Forum + + + 256 Farben + + + Auf diesem Computer wiedergeben + + + Auf dem Remotecomputer wiedergeben + + + Nicht wiedergeben + + + An das Panel anpassen + + + Vollbild + + + Automatisch skalieren + + + Immer verbinden, auch wenn Authentifizierung fehlschlägt + + + Keine Verbindung herstellen wenn Authentifizierung fehlschlägt + + + Warnung anzeigen wenn Authentifizierung fehlschlägt + + + nicht korrekt installiert + + + Prüfung erfolgreich! + + + Alle RDP Komponenten wurden gefunden und scheinen korrekt registriert zu sein. +Remote Desktop Verbindung Control Version {0} + + + Prüfung fehlgeschlagen! + + + Um RDP korrekt betreiben können muss mindestens Remote Desktop Connection (Terminal Services Client) 6.0 installiert sein. Hier können Sie die Software herunterladen: http://support.microsoft.com/kb/925876 +Wenn Sie RDP 6.0 bereits installiert haben und die Prüfung noch immer fehlschlägt, versuchen Sie die Datei mstscax.dll manuell zu registrieren. Öffnen Sie hierzu den Ausführen Dialog (Start - Ausführen) und geben Sie Folgendes ein: regsvr32 "c:\windows\system32\mstscax.dll" (Wobei c:\ Ihr System-Laufwerk ist). +Wenn Sie noch immer Probleme mit RDP haben, konsultieren Sie bitte das mRemoteNG Forum: http://forum.mremoteng.org/ + + + Passwort Schutz + + + Alle VNC Komponenten wurden gefunden und scheinen korrekt registriert zu sein. +VncSharpNG Control Version {0} + + + VNC benötigt die Datei VncSharpNG.dll im mRemoteNG Programm Ordner. +Bitte stellen Sie sicher, dass Sie die Datei VncSharpNG.dll in Ihrem mRemoteNG Programm Ordner haben (üblicherweise C:\Programme\mRemoteNG\). +Wenn Sie noch immer Probleme mit VNC haben, konsultieren Sie bitte das mRemoteNG Forum: http://forum.mremoteng.org/ + + + PuTTY wurde gefunden und scheint betriebsbereit zu sein. + + + Die Protokolle, SSH, Telnet, Rlogin und RAW benötigen PuTTY. PuTTY wird in allen mRemote Paketen mitgeliefert und befindet sich im Installations-Pfad. +Bitte versichern Sie sich, dass sich die Datei Putty.exe in ihrem mRemote Installations-Pfad befindet (Standard: c:\Programme\mRemote\) oder dass Sie einen korrekten Pfad in den Optionen (Extras - Optionen - Erweitert - Eigener PuTTY Pfad) angegeben haben. + + + Alle ICA Komponenten wurden gefunden und scheinen korrekt registriert zu sein. +Citrix ICA Client Control Version {0} + + + ICA benötigt eine funktionierende XenDesktop Online Plugin Installation und dass die Datei wfica.ocx korrekt registriert ist. Hier können Sie das Plugin herunterladen: http://www.citrix.com/download/ +Wenn sie das XenDesktop Online Plugin installiert haben und noch immer Probleme haben diese Prüfung erfolgreich abzuschließen, versuchen Sie die Datei wfica.ocx manuell zu registrieren. +Öffnen Sie hierzu den Ausführen Dialog (Start - Ausführen) und geben Sie Folgendes ein: regsvr32 "c:\Programme\Citrix\ICA Client\wfica.ocx" (Wobei c:\Programme\Citrix\ICA Client\ ihr XenDesktop Online Plugin Installations-Pfad ist). +Wenn Sie noch immer Probleme mit ICA haben, konsultieren sie bitte das mRemoteNG Forum: http://forum.mremoteng.org/ + + + XULrunner wurde gefunden und scheint korrekt installiert zu sein. + + + Um die Gecko Rendering Engine benutzen zu können benötigen Sie XULrunner 1.8.1.x und einen korrekt eingetragenen Pfad in den Optionen. +Hier können Sie XULrunner 1.8.1.3 herunterladen: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/ +Wenn der Download abgeschlossen ist entpacken Sie das Paket (Der Speicherort ist dabei ihnen überlassen). Als nächstes öffnen Sie (in mRemote) Extras - Optionen - Erweitert und geben Sie den korrekten Pfad im XULrunner Feld an. +Wenn Sie noch immer Probleme mit der Gecko Engine in mRemote haben, konsultieren Sie bitte das mRemoteNG Forum: http://forum.mremoteng.org/ + + + EOLWTSCOM wurde gefunden und scheint korrekt registriert zu sein. + + + Die (RDP) Sitzungs Funktion benötigt die Datei eolwtscom.dll. Diese muss korrekt registriert sein. +Alle mRemoteNG Pakete beinhalten diese Datei, jedoch muss sie wenn Sie eines der nicht-Setup Pakete verwenden manuell registriert werden. +Öffnen Sie hierzu den Ausführen Dialog (Start - Ausführen) und geben Sie Folgendes ein: regsvr32 "c:\Programme\mRemoteNG\eolwtscom.dll" (Wobei c:\Programme\mRemoteNG\ Ihr mRemoteNG Installations-Pfad ist). +Wenn Sie noch immer Probleme mit der (RDP) Session Funktion in mRemoteNG haben, konsultieren Sie bitte das mRemoteNG Forum: http://forum.mremoteng.org/ + + + Automatisch Session Informationen einholen + + + Log File schreiben (mRemoteNG.log) + + + Start/Ende + + + Nur eine Instanz zulassen (mRemote Neustart benötigt) + + + Offene Verbindungen speichern und beim nächsten Start wiederverbinden + + + Beim Start auf Updates und Benachrichtigungen prüfen + + + Schließen bestätigen wenn Verbindungen bestehen + + + Verbindungen beim Schließen speichern + + + In den System Tray minimieren + + + Vollen Verbindungsdateipfad im Titel anzeigen + + + System Tray Icon immer anzeigen + + + Beschreibungs Tooltips in der Verbindungsliste anzeigen + + + Tabs && Panele + + + Protokoll im Tab Titel anzeigen + + + Anmeldeinformationen im Tab Titel anzeigen + + + Neue Tabs rechts vom momentan selektierten Tab öffnen + + + Panel Auswahl Dialog immer anzeigen + + + Doppelklick schließt Tabs + + + Beim Anlegen einer neuen Verbindung Hostname wie Anzeige Name setzen + + + Experimentell + + + SQL Server für das Laden && Speichern der Verbindungen verwenden + + + Für mehr Informationen bitte Hilfeeintrag lesen (Info - Help - Getting started - SQL Configuration) + + + SQL Server + + + Minuten (0 bedeutet deaktiviert) + + + Automatisch speichern jede: + + + Start IP + + + End IP + + + Offene Ports + + + Geschlossene Ports + + + End Port + + + Start Port + + + Remote Desktop Gateway Passwort + + + Verwende Gateway + + + Spezifiziert ob ein Remote Desktop Gateway (RD Gateway) Server verwendet werden soll. + + + Vererbe Remote Desktop Gateway Passwort + + + Gateway Benutzername + + + Definiert den Benutzernamen zum Verbinden mit dem Gateway Server. + + + + + + Zu importierendes Protokoll + + + Sofort verbinden + + + Lokale Datei + + + Entfernte Datei + + + Alle speichern + + + Alle entfernen + + + Speichern + + + Graphics Interchange Format Datei (.gif)|*.gif|Joint Photographic Experts Group Datei (.jpeg)|*.jpeg|Joint Photographic Experts Group Datei (.jpg)|*.jpg|Portable Network Graphics Datei (.png)|*.png + + + Bilschirmschnappschüsse + + + Aktivität + + + Gateway Hostname + + + Gibt den Namen des Remote Desktop Gateway Servers an. + + + Gateway Anmeldedaten + + + Gibt an on die Anmeldung am Gateway mit den Zugangsdaten für die Verbindung erfolgen sollen oder nicht. + + + Gateway Domäne + + + Gibt den Domänennamen an, der für die Verbindung zum Gateway Server verwendet werden soll. + + + Vererbe Verwende Gateway + + + Vererbe Gateway Anmeldedaten + + + Vererbe Gateway Hostname + + + Keine Kompression + + + Keine Angabe + + + Normal + + + Keine automatische Größenanpassung (SmartSize) + + + Frei + + + Aspekt + + + Neues Panel + + + Umbenennen + + + Senden an... + + + Neuer Titel + + + Bildschirm + + + Panel Name + + + Benutzer + + + Host + + + Transfer + + + Wollen sie die aktuelle Verbindungs-Datei speichern bevor eine andere geladen wird? + + + Wollen Sie ohne Passwort fortfahren? + + + Export + + + Deaktivieren Sie alle Eigenschaften die nicht gespeichert werden sollen. + + + Typ + + + Aktualisieren + + + Abmelden + + + die folgenden + + + meine aktuellen (Windows login Informationen) + + + keine + + + Ein einzelner Klick auf eine geöffnete Verbindung springt zu dieser + + + Ein einzelner Klick auf eine Verbindung öffnet diese + + + Öffne das Fehler && Infos Panel bei + + + Fehler + + + Warnungen + + + Informationen + + + Nur Fehler && Informations Panel benutzen (Keine Popups) + + + UltraVNC SingleClick Port + + + Überprüfe die Installation aller Komponenten beim Start + + + XULrunner Pfad + + + Verbindungsdaten Datei vollständig verschlüsseln + + + Bei leeren Benutzername, Passwort oder Domänen Feldern benutze: + + + Proxy Test erfolgreich! + + + Proxy Test fehlgeschlagen! + + + (Diese Einstellungen werden nur gespeichert wenn Sie mRemote XML als Dateiformat auswählen!) + + + Neue Verbindung + + + Neuer Ordner + + + Verbinden + + + Verbinden (mit Optionen) + + + Mit der Konsolen Sitzung verbinden + + + Im Vollbildmodus verbinden + + + Panel vor Verbindung auswählen + + + Extras + + + Importieren/Exportieren + + + mRemote/mRemoteNG XML exportieren + + + mRemote/mRemoteNG XML importieren + + + Aus Active Directory importieren + + + Aus .RDP Datei(en) importieren + + + Von Port Scan importieren + + + Sortieren + + + Aufsteigend (A-Z) + + + Absteigend (Z-A) + + + Duplizieren + + + Nach oben + + + Nach unten + + + Alle Ordner erweitern + + + Alle Ordner schließen + + + mRemoteNG ist aktuell + + + + + + Auf Aktualisierung prüfen + + + Herunterladen && Installieren + + + Verfügbare Version + + + Aktuelle Version + + + Version + + + Download fertiggestellt! +mRemoteNG wird nun geschlossen und die Installation gestartet. + + + mRemoteNG Update verfügbar! + + + Layout zurücksetzen + + + Ankündigungen + \ No newline at end of file diff --git a/mRemoteV1/Language/Resources.en-US.resx b/mRemoteV1/Language/Resources.en-US.resx index 4db7e1b7a..609a28314 100644 --- a/mRemoteV1/Language/Resources.en-US.resx +++ b/mRemoteV1/Language/Resources.en-US.resx @@ -1,6 +1,6 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Select the color quality to be used. - + Colors - + Inherit Colors + + Components Check + + + Always show this screen at startup + + + Refresh + + + Connecting... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mRemoteV1/My Project/AssemblyInfo.vb b/mRemoteV1/My Project/AssemblyInfo.vb index 7e4c7fef2..47c002cad 100644 --- a/mRemoteV1/My Project/AssemblyInfo.vb +++ b/mRemoteV1/My Project/AssemblyInfo.vb @@ -12,7 +12,7 @@ Imports System.Runtime.InteropServices - + @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices ' by using the '*' as shown below: ' - - + + diff --git a/mRemoteV1/My Project/Resources.Designer.vb b/mRemoteV1/My Project/Resources.Designer.vb index 5ffbdd758..5bdcdaaca 100644 --- a/mRemoteV1/My Project/Resources.Designer.vb +++ b/mRemoteV1/My Project/Resources.Designer.vb @@ -1,10 +1,10 @@ '------------------------------------------------------------------------------ ' -' This code was generated by a tool. -' Runtime Version:2.0.50727.4927 +' Dieser Code wurde von einem Tool generiert. +' Laufzeitversion:2.0.50727.4927 ' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. +' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +' der Code erneut generiert wird. ' '------------------------------------------------------------------------------ @@ -15,12 +15,12 @@ Imports System Namespace My.Resources - 'This class was auto-generated by the StronglyTypedResourceBuilder - 'class via a tool like ResGen or Visual Studio. - 'To add or remove a member, edit your .ResX file then rerun ResGen - 'with the /str option, or rebuild your VS project. + 'Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + '-Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + 'Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + 'mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. ''' - ''' A strongly-typed resource class, for looking up localized strings, etc. + ''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. ''' - ''' Returns the cached ResourceManager instance used by this class. + ''' Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. ''' _ Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager @@ -47,8 +47,8 @@ Namespace My.Resources End Property ''' - ''' Overrides the current thread's CurrentUICulture property for all - ''' resource lookups using this strongly typed resource class. + ''' Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + ''' Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. ''' _ Friend Property Culture() As Global.System.Globalization.CultureInfo @@ -754,7 +754,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to About. + ''' Sucht eine lokalisierte Zeichenfolge, die About ähnelt. ''' Friend ReadOnly Property strAbout() As String Get @@ -763,7 +763,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Active. + ''' Sucht eine lokalisierte Zeichenfolge, die Active ähnelt. ''' Friend ReadOnly Property strActive() As String Get @@ -772,7 +772,115 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Browse.... + ''' Sucht eine lokalisierte Zeichenfolge, die Activity ähnelt. + ''' + Friend ReadOnly Property strActivity() As String + Get + Return ResourceManager.GetString("strActivity", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die New Connection ähnelt. + ''' + Friend ReadOnly Property strAddConnection() As String + Get + Return ResourceManager.GetString("strAddConnection", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die New folder ähnelt. + ''' + Friend ReadOnly Property strAddFolder() As String + Get + Return ResourceManager.GetString("strAddFolder", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Allow only a single instance of the application (mRemoteNG restart required) ähnelt. + ''' + Friend ReadOnly Property strAllowOnlySingleInstance() As String + Get + Return ResourceManager.GetString("strAllowOnlySingleInstance", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Always connect, even if authentication fails ähnelt. + ''' + Friend ReadOnly Property strAlwaysConnectEvenIfAuthFails() As String + Get + Return ResourceManager.GetString("strAlwaysConnectEvenIfAuthFails", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Always show panel selection dialog when opening connections ähnelt. + ''' + Friend ReadOnly Property strAlwaysShowPanelSelection() As String + Get + Return ResourceManager.GetString("strAlwaysShowPanelSelection", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Always show System Tray Icon ähnelt. + ''' + Friend ReadOnly Property strAlwaysShowSysTrayIcon() As String + Get + Return ResourceManager.GetString("strAlwaysShowSysTrayIcon", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Aspect ähnelt. + ''' + Friend ReadOnly Property strAspect() As String + Get + Return ResourceManager.GetString("strAspect", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Automatically get session information ähnelt. + ''' + Friend ReadOnly Property strAutomaticallyGetSessionInfo() As String + Get + Return ResourceManager.GetString("strAutomaticallyGetSessionInfo", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Auto Save every: ähnelt. + ''' + Friend ReadOnly Property strAutoSaveEvery() As String + Get + Return ResourceManager.GetString("strAutoSaveEvery", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Minutes (0 means disabled) ähnelt. + ''' + Friend ReadOnly Property strAutoSaveMins() As String + Get + Return ResourceManager.GetString("strAutoSaveMins", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Current Version ähnelt. + ''' + Friend ReadOnly Property strAvailableVersion() As String + Get + Return ResourceManager.GetString("strAvailableVersion", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die &Browse... ähnelt. ''' Friend ReadOnly Property strButtonBrowse() As String Get @@ -781,7 +889,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Cancel. + ''' Sucht eine lokalisierte Zeichenfolge, die &Cancel ähnelt. ''' Friend ReadOnly Property strButtonCancel() As String Get @@ -790,7 +898,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Change. + ''' Sucht eine lokalisierte Zeichenfolge, die Change ähnelt. ''' Friend ReadOnly Property strButtonChange() As String Get @@ -799,7 +907,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Close. + ''' Sucht eine lokalisierte Zeichenfolge, die &Close ähnelt. ''' Friend ReadOnly Property strButtonClose() As String Get @@ -808,7 +916,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Default Inheritance. + ''' Sucht eine lokalisierte Zeichenfolge, die Default Inheritance ähnelt. ''' Friend ReadOnly Property strButtonDefaultInheritance() As String Get @@ -817,7 +925,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Default Properties. + ''' Sucht eine lokalisierte Zeichenfolge, die Default Properties ähnelt. ''' Friend ReadOnly Property strButtonDefaultProperties() As String Get @@ -826,7 +934,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Disconnect. + ''' Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt. ''' Friend ReadOnly Property strButtonDisconnect() As String Get @@ -835,7 +943,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Icon. + ''' Sucht eine lokalisierte Zeichenfolge, die Icon ähnelt. ''' Friend ReadOnly Property strButtonIcon() As String Get @@ -844,7 +952,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Import. + ''' Sucht eine lokalisierte Zeichenfolge, die &Import ähnelt. ''' Friend ReadOnly Property strButtonImport() As String Get @@ -853,7 +961,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inheritance. + ''' Sucht eine lokalisierte Zeichenfolge, die Inheritance ähnelt. ''' Friend ReadOnly Property strButtonInheritance() As String Get @@ -862,7 +970,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Launch PuTTY. + ''' Sucht eine lokalisierte Zeichenfolge, die Launch PuTTY ähnelt. ''' Friend ReadOnly Property strButtonLaunchPutty() As String Get @@ -871,7 +979,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &New. + ''' Sucht eine lokalisierte Zeichenfolge, die &New ähnelt. ''' Friend ReadOnly Property strButtonNew() As String Get @@ -880,7 +988,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &OK. + ''' Sucht eine lokalisierte Zeichenfolge, die &OK ähnelt. ''' Friend ReadOnly Property strButtonOK() As String Get @@ -889,7 +997,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Properties. + ''' Sucht eine lokalisierte Zeichenfolge, die Properties ähnelt. ''' Friend ReadOnly Property strButtonProperties() As String Get @@ -898,7 +1006,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Scan. + ''' Sucht eine lokalisierte Zeichenfolge, die &Scan ähnelt. ''' Friend ReadOnly Property strButtonScan() As String Get @@ -907,7 +1015,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Stop. + ''' Sucht eine lokalisierte Zeichenfolge, die &Stop ähnelt. ''' Friend ReadOnly Property strButtonStop() As String Get @@ -916,7 +1024,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Test Proxy. + ''' Sucht eine lokalisierte Zeichenfolge, die Test Proxy ähnelt. ''' Friend ReadOnly Property strButtonTestProxy() As String Get @@ -925,7 +1033,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Appearance. + ''' Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. ''' Friend ReadOnly Property strCategoryAppearance() As String Get @@ -934,7 +1042,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connection. + ''' Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt. ''' Friend ReadOnly Property strCategoryConnection() As String Get @@ -943,7 +1051,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Credentials. + ''' Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt. ''' Friend ReadOnly Property strCategoryCredentials() As String Get @@ -952,7 +1060,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Display. + ''' Sucht eine lokalisierte Zeichenfolge, die Display ähnelt. ''' Friend ReadOnly Property strCategoryDisplay() As String Get @@ -961,7 +1069,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Gateway. + ''' Sucht eine lokalisierte Zeichenfolge, die Gateway ähnelt. ''' Friend ReadOnly Property strCategoryGateway() As String Get @@ -970,7 +1078,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to General. + ''' Sucht eine lokalisierte Zeichenfolge, die General ähnelt. ''' Friend ReadOnly Property strCategoryGeneral() As String Get @@ -979,7 +1087,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Miscellaneous. + ''' Sucht eine lokalisierte Zeichenfolge, die Miscellaneous ähnelt. ''' Friend ReadOnly Property strCategoryMiscellaneous() As String Get @@ -988,7 +1096,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Protocol. + ''' Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. ''' Friend ReadOnly Property strCategoryProtocol() As String Get @@ -997,7 +1105,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Redirect. + ''' Sucht eine lokalisierte Zeichenfolge, die Redirect ähnelt. ''' Friend ReadOnly Property strCategoryRedirect() As String Get @@ -1006,7 +1114,176 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only). + ''' Sucht eine lokalisierte Zeichenfolge, die Always show this screen at startup ähnelt. + ''' + Friend ReadOnly Property strCcAlwaysShowScreen() As String + Get + Return ResourceManager.GetString("strCcAlwaysShowScreen", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. + ''' + Friend ReadOnly Property strCcCheckAgain() As String + Get + Return ResourceManager.GetString("strCcCheckAgain", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Check failed! ähnelt. + ''' + Friend ReadOnly Property strCcCheckFailed() As String + Get + Return ResourceManager.GetString("strCcCheckFailed", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Check succeeded! ähnelt. + ''' + Friend ReadOnly Property strCcCheckSucceeded() As String + Get + Return ResourceManager.GetString("strCcCheckSucceeded", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die 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. + ''' + Friend ReadOnly Property strCcEOLFailed() As String + Get + Return ResourceManager.GetString("strCcEOLFailed", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die EOLWTSCOM was found and seems to be registered properly. ähnelt. + ''' + Friend ReadOnly Property strCcEOLOK() As String + Get + Return ResourceManager.GetString("strCcEOLOK", resourceCulture) + End Get + 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. + '''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. + ''' + Friend ReadOnly Property strCcGeckoFailed() As String + Get + Return ResourceManager.GetString("strCcGeckoFailed", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die XULrunner was found and seems to be installed properly. ähnelt. + ''' + Friend ReadOnly Property strCcGeckoOK() As String + Get + Return ResourceManager.GetString("strCcGeckoOK", resourceCulture) + End Get + 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/ + '''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. + ''' + Friend ReadOnly Property strCcICAFailed() As String + Get + Return ResourceManager.GetString("strCcICAFailed", resourceCulture) + End Get + 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. + ''' + Friend ReadOnly Property strCcICAOK() As String + Get + Return ResourceManager.GetString("strCcICAOK", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die not installed properly ähnelt. + ''' + Friend ReadOnly Property strCcNotInstalledProperly() As String + Get + Return ResourceManager.GetString("strCcNotInstalledProperly", resourceCulture) + End Get + 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. + ''' + Friend ReadOnly Property strCcPuttyFailed() As String + Get + Return ResourceManager.GetString("strCcPuttyFailed", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die The PuTTY executable was found and should be ready to use. ähnelt. + ''' + Friend ReadOnly Property strCcPuttyOK() As String + Get + Return ResourceManager.GetString("strCcPuttyOK", resourceCulture) + End Get + 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 + '''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. + ''' + Friend ReadOnly Property strCcRDPFailed() As String + Get + Return ResourceManager.GetString("strCcRDPFailed", resourceCulture) + End Get + 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. + ''' + Friend ReadOnly Property strCcRDPOK() As String + Get + Return ResourceManager.GetString("strCcRDPOK", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die 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. + ''' + Friend ReadOnly Property strCcVNCFailed() As String + Get + Return ResourceManager.GetString("strCcVNCFailed", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die All VNC components were found and seem to be registered properly. + '''VncSharpNG Control Version {0} ähnelt. + ''' + Friend ReadOnly Property strCcVNCOK() As String + Get + Return ResourceManager.GetString("strCcVNCOK", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Automatically try to reconnect when disconnected from server (RDP && ICA only) ähnelt. ''' Friend ReadOnly Property strCheckboxAutomaticReconnect() As String Get @@ -1015,7 +1292,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Domain. + ''' Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. ''' Friend ReadOnly Property strCheckboxDomain() As String Get @@ -1024,7 +1301,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Do not show this message again.. + ''' Sucht eine lokalisierte Zeichenfolge, die Do not show this message again. ähnelt. ''' Friend ReadOnly Property strCheckboxDoNotShowThisMessageAgain() As String Get @@ -1033,7 +1310,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inheritance. + ''' Sucht eine lokalisierte Zeichenfolge, die Inheritance ähnelt. ''' Friend ReadOnly Property strCheckboxInheritance() As String Get @@ -1042,7 +1319,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Password. + ''' Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. ''' Friend ReadOnly Property strCheckboxPassword() As String Get @@ -1051,7 +1328,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to This proxy server requires authentication. + ''' Sucht eine lokalisierte Zeichenfolge, die This proxy server requires authentication ähnelt. ''' Friend ReadOnly Property strCheckboxProxyAuthentication() As String Get @@ -1060,7 +1337,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Use custom PuTTY path:. + ''' Sucht eine lokalisierte Zeichenfolge, die Use custom PuTTY path: ähnelt. ''' Friend ReadOnly Property strCheckboxPuttyPath() As String Get @@ -1069,7 +1346,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Reconnect when ready. + ''' Sucht eine lokalisierte Zeichenfolge, die Reconnect when ready ähnelt. ''' Friend ReadOnly Property strCheckboxReconnectWhenReady() As String Get @@ -1078,7 +1355,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Use a proxy server to connect. + ''' Sucht eine lokalisierte Zeichenfolge, die Use a proxy server to connect ähnelt. ''' Friend ReadOnly Property strCheckboxUpdateUseProxy() As String Get @@ -1087,7 +1364,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Username. + ''' Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. ''' Friend ReadOnly Property strCheckboxUsername() As String Get @@ -1096,7 +1373,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Wait for exit. + ''' Sucht eine lokalisierte Zeichenfolge, die Wait for exit ähnelt. ''' Friend ReadOnly Property strCheckboxWaitForExit() As String Get @@ -1105,7 +1382,61 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Arguments. + ''' Sucht eine lokalisierte Zeichenfolge, die Check Again ähnelt. + ''' + Friend ReadOnly Property strCheckForUpdate() As String + Get + Return ResourceManager.GetString("strCheckForUpdate", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Check for updates and announcements at startup ähnelt. + ''' + Friend ReadOnly Property strCheckForUpdatesOnStartup() As String + Get + Return ResourceManager.GetString("strCheckForUpdatesOnStartup", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Check proper installation of components at startup ähnelt. + ''' + Friend ReadOnly Property strCheckProperInstallationOfComponentsAtStartup() As String + Get + Return ResourceManager.GetString("strCheckProperInstallationOfComponentsAtStartup", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Choose panel before connecting ähnelt. + ''' + Friend ReadOnly Property strChoosePanelBeforeConnecting() As String + Get + Return ResourceManager.GetString("strChoosePanelBeforeConnecting", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Closed Ports ähnelt. + ''' + Friend ReadOnly Property strClosedPorts() As String + Get + Return ResourceManager.GetString("strClosedPorts", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Collapse all folders ähnelt. + ''' + Friend ReadOnly Property strCollapseAllFolders() As String + Get + Return ResourceManager.GetString("strCollapseAllFolders", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt. ''' Friend ReadOnly Property strColumnArguments() As String Get @@ -1114,7 +1445,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Display Name. + ''' Sucht eine lokalisierte Zeichenfolge, die Display Name ähnelt. ''' Friend ReadOnly Property strColumnDisplayName() As String Get @@ -1123,7 +1454,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Filename. + ''' Sucht eine lokalisierte Zeichenfolge, die Filename ähnelt. ''' Friend ReadOnly Property strColumnFilename() As String Get @@ -1132,7 +1463,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Hostname/IP. + ''' Sucht eine lokalisierte Zeichenfolge, die Hostname/IP ähnelt. ''' Friend ReadOnly Property strColumnHostnameIP() As String Get @@ -1141,7 +1472,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Message. + ''' Sucht eine lokalisierte Zeichenfolge, die Message ähnelt. ''' Friend ReadOnly Property strColumnMessage() As String Get @@ -1150,7 +1481,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Username. + ''' Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. ''' Friend ReadOnly Property strColumnUsername() As String Get @@ -1159,7 +1490,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Wait For Exit. + ''' Sucht eine lokalisierte Zeichenfolge, die Wait For Exit ähnelt. ''' Friend ReadOnly Property strColumnWaitForExit() As String Get @@ -1168,7 +1499,16 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?. + ''' Sucht eine lokalisierte Zeichenfolge, die Components Check ähnelt. + ''' + Friend ReadOnly Property strComponentsCheck() As String + Get + Return ResourceManager.GetString("strComponentsCheck", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the external tool, "{0}"? ähnelt. ''' Friend ReadOnly Property strConfirmDeleteExternalTool() As String Get @@ -1177,7 +1517,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?. + ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the {0} selected external tools? ähnelt. ''' Friend ReadOnly Property strConfirmDeleteExternalToolMultiple() As String Get @@ -1186,7 +1526,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?. + ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the connection, "{0}"? ähnelt. ''' Friend ReadOnly Property strConfirmDeleteNodeConnection() As String Get @@ -1195,7 +1535,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?. + ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the empty folder, "{0}"? ähnelt. ''' Friend ReadOnly Property strConfirmDeleteNodeFolder() As String Get @@ -1204,7 +1544,7 @@ Namespace My.Resources End Property ''' - ''' 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.. + ''' 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. ''' Friend ReadOnly Property strConfirmDeleteNodeFolderNotEmpty() As String Get @@ -1213,7 +1553,16 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Do you want to close all open connections?. + ''' Sucht eine lokalisierte Zeichenfolge, die Confirm exit if there are open connections ähnelt. + ''' + Friend ReadOnly Property strConfirmExit() As String + Get + Return ResourceManager.GetString("strConfirmExit", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Do you want to close all open connections? ähnelt. ''' Friend ReadOnly Property strConfirmExitMainInstruction() As String Get @@ -1222,7 +1571,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?. + ''' Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to reset the panels to their default layout? ähnelt. ''' Friend ReadOnly Property strConfirmResetLayout() As String Get @@ -1231,7 +1580,34 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connections. + ''' Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. + ''' + Friend ReadOnly Property strConnect() As String + Get + Return ResourceManager.GetString("strConnect", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Connect in fullscreen mode ähnelt. + ''' + Friend ReadOnly Property strConnectInFullscreen() As String + Get + Return ResourceManager.GetString("strConnectInFullscreen", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Connecting... ähnelt. + ''' + Friend ReadOnly Property strConnecting() As String + Get + Return ResourceManager.GetString("strConnecting", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. ''' Friend ReadOnly Property strConnections() As String Get @@ -1240,7 +1616,160 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Includes icons by [FAMFAMFAM]. + ''' Sucht eine lokalisierte Zeichenfolge, die Connect to console session ähnelt. + ''' + Friend ReadOnly Property strConnectToConsoleSession() As String + Get + Return ResourceManager.GetString("strConnectToConsoleSession", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Connect (with options) ähnelt. + ''' + Friend ReadOnly Property strConnectWithOptions() As String + Get + Return ResourceManager.GetString("strConnectWithOptions", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Installed version ähnelt. + ''' + Friend ReadOnly Property strCurrentVersion() As String + Get + Return ResourceManager.GetString("strCurrentVersion", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Don't connect if authentication fails ähnelt. + ''' + Friend ReadOnly Property strDontConnectWhenAuthFails() As String + Get + Return ResourceManager.GetString("strDontConnectWhenAuthFails", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Double click on tab closes it ähnelt. + ''' + Friend ReadOnly Property strDoubleClickTabClosesIt() As String + Get + Return ResourceManager.GetString("strDoubleClickTabClosesIt", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Download and Install ähnelt. + ''' + Friend ReadOnly Property strDownloadAndInstall() As String + Get + Return ResourceManager.GetString("strDownloadAndInstall", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate ähnelt. + ''' + Friend ReadOnly Property strDuplicate() As String + Get + Return ResourceManager.GetString("strDuplicate", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Do you want to continue with no password? ähnelt. + ''' + Friend ReadOnly Property strEmptyPasswordContinue() As String + Get + Return ResourceManager.GetString("strEmptyPasswordContinue", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die For empty Username, Password or Domain fields use: ähnelt. + ''' + Friend ReadOnly Property strEmptyUsernamePasswordDomainFields() As String + Get + Return ResourceManager.GetString("strEmptyUsernamePasswordDomainFields", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Completely encrypt connection file ähnelt. + ''' + Friend ReadOnly Property strEncryptCompleteConnectionFile() As String + Get + Return ResourceManager.GetString("strEncryptCompleteConnectionFile", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die End IP ähnelt. + ''' + Friend ReadOnly Property strEndIP() As String + Get + Return ResourceManager.GetString("strEndIP", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die End Port ähnelt. + ''' + Friend ReadOnly Property strEndPort() As String + Get + Return ResourceManager.GetString("strEndPort", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Errors ähnelt. + ''' + Friend ReadOnly Property strErrors() As String + Get + Return ResourceManager.GetString("strErrors", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Expand all folders ähnelt. + ''' + Friend ReadOnly Property strExpandAllFolders() As String + Get + Return ResourceManager.GetString("strExpandAllFolders", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Experimental ähnelt. + ''' + Friend ReadOnly Property strExperimental() As String + Get + Return ResourceManager.GetString("strExperimental", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Export ähnelt. + ''' + Friend ReadOnly Property strExport() As String + Get + Return ResourceManager.GetString("strExport", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Export mRemote/mRemoteNG XML ähnelt. + ''' + Friend ReadOnly Property strExportmRemoteXML() As String + Get + Return ResourceManager.GetString("strExportmRemoteXML", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Includes icons by [FAMFAMFAM] ähnelt. ''' Friend ReadOnly Property strFAMFAMFAMAttribution() As String Get @@ -1249,7 +1778,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to http://www.famfamfam.com/. + ''' Sucht eine lokalisierte Zeichenfolge, die http://www.famfamfam.com/ ähnelt. ''' Friend ReadOnly Property strFAMFAMFAMAttributionURL() As String Get @@ -1258,7 +1787,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to All Files (*.*). + ''' Sucht eine lokalisierte Zeichenfolge, die All Files (*.*) ähnelt. ''' Friend ReadOnly Property strFilterAll() As String Get @@ -1267,7 +1796,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Application Files (*.exe). + ''' Sucht eine lokalisierte Zeichenfolge, die Application Files (*.exe) ähnelt. ''' Friend ReadOnly Property strFilterApplication() As String Get @@ -1276,7 +1805,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to mRemote CSV Files (*.csv). + ''' Sucht eine lokalisierte Zeichenfolge, die mRemote CSV Files (*.csv) ähnelt. ''' Friend ReadOnly Property strFiltermRemoteCSV() As String Get @@ -1285,7 +1814,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to mRemote XML Files (*.xml). + ''' Sucht eine lokalisierte Zeichenfolge, die mRemote XML Files (*.xml) ähnelt. ''' Friend ReadOnly Property strFiltermRemoteXML() As String Get @@ -1294,7 +1823,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to RDP Files (*.rdp). + ''' Sucht eine lokalisierte Zeichenfolge, die RDP Files (*.rdp) ähnelt. ''' Friend ReadOnly Property strFilterRDP() As String Get @@ -1303,7 +1832,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to visionapp Remote Desktop 2008 CSV Files (*.csv). + ''' Sucht eine lokalisierte Zeichenfolge, die visionapp Remote Desktop 2008 CSV Files (*.csv) ähnelt. ''' Friend ReadOnly Property strFiltervRD2008CSV() As String Get @@ -1312,7 +1841,25 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Automatic Reconnect. + ''' Sucht eine lokalisierte Zeichenfolge, die Free ähnelt. + ''' + Friend ReadOnly Property strFree() As String + Get + Return ResourceManager.GetString("strFree", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Fullscreen ähnelt. + ''' + Friend ReadOnly Property strFullscreen() As String + Get + Return ResourceManager.GetString("strFullscreen", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Automatic Reconnect ähnelt. ''' Friend ReadOnly Property strGroupboxAutomaticReconnect() As String Get @@ -1321,7 +1868,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connection. + ''' Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt. ''' Friend ReadOnly Property strGroupboxConnection() As String Get @@ -1330,7 +1877,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to External Tool Properties. + ''' Sucht eine lokalisierte Zeichenfolge, die External Tool Properties ähnelt. ''' Friend ReadOnly Property strGroupboxExternalToolProperties() As String Get @@ -1339,7 +1886,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Files. + ''' Sucht eine lokalisierte Zeichenfolge, die Files ähnelt. ''' Friend ReadOnly Property strGroupboxFiles() As String Get @@ -1348,7 +1895,61 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inactive. + ''' Sucht eine lokalisierte Zeichenfolge, die Host ähnelt. + ''' + Friend ReadOnly Property strHost() As String + Get + Return ResourceManager.GetString("strHost", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Import from Active Directory ähnelt. + ''' + Friend ReadOnly Property strImportAD() As String + Get + Return ResourceManager.GetString("strImportAD", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Import/Export ähnelt. + ''' + Friend ReadOnly Property strImportExport() As String + Get + Return ResourceManager.GetString("strImportExport", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Import mRemote/mRemoteNG XML ähnelt. + ''' + Friend ReadOnly Property strImportmRemoteXML() As String + Get + Return ResourceManager.GetString("strImportmRemoteXML", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Import from Port Scan ähnelt. + ''' + Friend ReadOnly Property strImportPortScan() As String + Get + Return ResourceManager.GetString("strImportPortScan", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Import from .RDP file(s) ähnelt. + ''' + Friend ReadOnly Property strImportRDPFiles() As String + Get + Return ResourceManager.GetString("strImportRDPFiles", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Inactive ähnelt. ''' Friend ReadOnly Property strInactive() As String Get @@ -1357,7 +1958,25 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Address:. + ''' Sucht eine lokalisierte Zeichenfolge, die Informations ähnelt. + ''' + Friend ReadOnly Property strInformations() As String + Get + Return ResourceManager.GetString("strInformations", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die mRemoteNG is up to date ähnelt. + ''' + Friend ReadOnly Property strInheritNewConnection() As String + Get + Return ResourceManager.GetString("strInheritNewConnection", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Address: ähnelt. ''' Friend ReadOnly Property strLabelAddress() As String Get @@ -1366,7 +1985,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Arguments:. + ''' Sucht eine lokalisierte Zeichenfolge, die Arguments: ähnelt. ''' Friend ReadOnly Property strLabelArguments() As String Get @@ -1375,7 +1994,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Change Log:. + ''' Sucht eine lokalisierte Zeichenfolge, die Change Log: ähnelt. ''' Friend ReadOnly Property strLabelChangeLog() As String Get @@ -1384,7 +2003,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Connect:. + ''' Sucht eine lokalisierte Zeichenfolge, die &Connect: ähnelt. ''' Friend ReadOnly Property strLabelConnect() As String Get @@ -1393,7 +2012,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Display Name. + ''' Sucht eine lokalisierte Zeichenfolge, die Display Name ähnelt. ''' Friend ReadOnly Property strLabelDisplayName() As String Get @@ -1402,7 +2021,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Domain:. + ''' Sucht eine lokalisierte Zeichenfolge, die Domain: ähnelt. ''' Friend ReadOnly Property strLabelDomain() As String Get @@ -1411,7 +2030,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Filename:. + ''' Sucht eine lokalisierte Zeichenfolge, die Filename: ähnelt. ''' Friend ReadOnly Property strLabelFilename() As String Get @@ -1420,7 +2039,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Options:. + ''' Sucht eine lokalisierte Zeichenfolge, die Options: ähnelt. ''' Friend ReadOnly Property strLabelOptions() As String Get @@ -1429,7 +2048,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Password:. + ''' Sucht eine lokalisierte Zeichenfolge, die Password: ähnelt. ''' Friend ReadOnly Property strLabelPassword() As String Get @@ -1438,7 +2057,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Port:. + ''' Sucht eine lokalisierte Zeichenfolge, die Port: ähnelt. ''' Friend ReadOnly Property strLabelPort() As String Get @@ -1447,7 +2066,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Portable Edition. + ''' Sucht eine lokalisierte Zeichenfolge, die Portable Edition ähnelt. ''' Friend ReadOnly Property strLabelPortableEdition() As String Get @@ -1456,7 +2075,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Protocol:. + ''' Sucht eine lokalisierte Zeichenfolge, die Protocol: ähnelt. ''' Friend ReadOnly Property strLabelProtocol() As String Get @@ -1465,7 +2084,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to To configure PuTTY sessions click this button:. + ''' Sucht eine lokalisierte Zeichenfolge, die To configure PuTTY sessions click this button: ähnelt. ''' Friend ReadOnly Property strLabelPuttySessionsConfig() As String Get @@ -1474,7 +2093,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Max. PuTTY && Integrated Ext. Apps wait time:. + ''' Sucht eine lokalisierte Zeichenfolge, die Max. PuTTY && Integrated Ext. Apps wait time: ähnelt. ''' Friend ReadOnly Property strLabelPuttyTimeout() As String Get @@ -1483,7 +2102,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Released under the GNU General Public License (GPL). + ''' Sucht eine lokalisierte Zeichenfolge, die Released under the GNU General Public License (GPL) ähnelt. ''' Friend ReadOnly Property strLabelReleasedUnderGPL() As String Get @@ -1492,7 +2111,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to seconds. + ''' Sucht eine lokalisierte Zeichenfolge, die seconds ähnelt. ''' Friend ReadOnly Property strLabelSeconds() As String Get @@ -1501,7 +2120,7 @@ Namespace My.Resources End Property ''' - ''' 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.. + ''' 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. ''' Friend ReadOnly Property strLabelSelectPanel() As String Get @@ -1510,7 +2129,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Server Status:. + ''' Sucht eine lokalisierte Zeichenfolge, die Server Status: ähnelt. ''' Friend ReadOnly Property strLabelServerStatus() As String Get @@ -1519,7 +2138,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Username:. + ''' Sucht eine lokalisierte Zeichenfolge, die Username: ähnelt. ''' Friend ReadOnly Property strLabelUsername() As String Get @@ -1528,7 +2147,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Verify:. + ''' Sucht eine lokalisierte Zeichenfolge, die Verify: ähnelt. ''' Friend ReadOnly Property strLabelVerify() As String Get @@ -1537,7 +2156,25 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Uses the Magic library by [Crownwood Software]. + ''' Sucht eine lokalisierte Zeichenfolge, die Local file ähnelt. + ''' + Friend ReadOnly Property strLocalFile() As String + Get + Return ResourceManager.GetString("strLocalFile", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Logoff ähnelt. + ''' + Friend ReadOnly Property strLogOff() As String + Get + Return ResourceManager.GetString("strLogOff", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Uses the Magic library by [Crownwood Software] ähnelt. ''' Friend ReadOnly Property strMagicLibraryAttribution() As String Get @@ -1546,7 +2183,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to http://www.dotnetmagic.com/. + ''' Sucht eine lokalisierte Zeichenfolge, die http://www.dotnetmagic.com/ ähnelt. ''' Friend ReadOnly Property strMagicLibraryAttributionURL() As String Get @@ -1555,7 +2192,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to About. + ''' Sucht eine lokalisierte Zeichenfolge, die About ähnelt. ''' Friend ReadOnly Property strMenuAbout() As String Get @@ -1564,7 +2201,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Add Connection Panel. + ''' Sucht eine lokalisierte Zeichenfolge, die Add Connection Panel ähnelt. ''' Friend ReadOnly Property strMenuAddConnectionPanel() As String Get @@ -1573,7 +2210,16 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Check for Updates. + ''' Sucht eine lokalisierte Zeichenfolge, die Announcements ähnelt. + ''' + Friend ReadOnly Property strMenuAnnouncements() As String + Get + Return ResourceManager.GetString("strMenuAnnouncements", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Check for Updates ähnelt. ''' Friend ReadOnly Property strMenuCheckForUpdates() As String Get @@ -1582,7 +2228,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Config. + ''' Sucht eine lokalisierte Zeichenfolge, die Config ähnelt. ''' Friend ReadOnly Property strMenuConfig() As String Get @@ -1591,7 +2237,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connect. + ''' Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. ''' Friend ReadOnly Property strMenuConnect() As String Get @@ -1600,7 +2246,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connection Panels. + ''' Sucht eine lokalisierte Zeichenfolge, die Connection Panels ähnelt. ''' Friend ReadOnly Property strMenuConnectionPanels() As String Get @@ -1609,7 +2255,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connections. + ''' Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. ''' Friend ReadOnly Property strMenuConnections() As String Get @@ -1618,7 +2264,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connections and Config. + ''' Sucht eine lokalisierte Zeichenfolge, die Connections and Config ähnelt. ''' Friend ReadOnly Property strMenuConnectionsAndConfig() As String Get @@ -1627,7 +2273,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Copy. + ''' Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. ''' Friend ReadOnly Property strMenuCopy() As String Get @@ -1636,7 +2282,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Ctrl-Alt-Del. + ''' Sucht eine lokalisierte Zeichenfolge, die Ctrl-Alt-Del ähnelt. ''' Friend ReadOnly Property strMenuCtrlAltDel() As String Get @@ -1645,7 +2291,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Ctrl-Esc. + ''' Sucht eine lokalisierte Zeichenfolge, die Ctrl-Esc ähnelt. ''' Friend ReadOnly Property strMenuCtrlEsc() As String Get @@ -1654,7 +2300,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Delete.... + ''' Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt. ''' Friend ReadOnly Property strMenuDelete() As String Get @@ -1663,7 +2309,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Delete Connection.... + ''' Sucht eine lokalisierte Zeichenfolge, die Delete Connection... ähnelt. ''' Friend ReadOnly Property strMenuDeleteConnection() As String Get @@ -1672,7 +2318,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Delete External Tool.... + ''' Sucht eine lokalisierte Zeichenfolge, die Delete External Tool... ähnelt. ''' Friend ReadOnly Property strMenuDeleteExternalTool() As String Get @@ -1681,7 +2327,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Delete Folder.... + ''' Sucht eine lokalisierte Zeichenfolge, die Delete Folder... ähnelt. ''' Friend ReadOnly Property strMenuDeleteFolder() As String Get @@ -1690,7 +2336,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Disconnect. + ''' Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt. ''' Friend ReadOnly Property strMenuDisconnect() As String Get @@ -1699,7 +2345,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Donate. + ''' Sucht eine lokalisierte Zeichenfolge, die Donate ähnelt. ''' Friend ReadOnly Property strMenuDonate() As String Get @@ -1708,7 +2354,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Duplicate. + ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate ähnelt. ''' Friend ReadOnly Property strMenuDuplicate() As String Get @@ -1717,7 +2363,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Duplicate Connection. + ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate Connection ähnelt. ''' Friend ReadOnly Property strMenuDuplicateConnection() As String Get @@ -1726,7 +2372,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Duplicate Folder. + ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate Folder ähnelt. ''' Friend ReadOnly Property strMenuDuplicateFolder() As String Get @@ -1735,7 +2381,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Duplicate Tab. + ''' Sucht eine lokalisierte Zeichenfolge, die Duplicate Tab ähnelt. ''' Friend ReadOnly Property strMenuDuplicateTab() As String Get @@ -1744,7 +2390,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Exit. + ''' Sucht eine lokalisierte Zeichenfolge, die Exit ähnelt. ''' Friend ReadOnly Property strMenuExit() As String Get @@ -1753,7 +2399,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to External Tools. + ''' Sucht eine lokalisierte Zeichenfolge, die External Tools ähnelt. ''' Friend ReadOnly Property strMenuExternalTools() As String Get @@ -1762,7 +2408,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to External Tools Toolbar. + ''' Sucht eine lokalisierte Zeichenfolge, die External Tools Toolbar ähnelt. ''' Friend ReadOnly Property strMenuExternalToolsToolbar() As String Get @@ -1771,7 +2417,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &File. + ''' Sucht eine lokalisierte Zeichenfolge, die &File ähnelt. ''' Friend ReadOnly Property strMenuFile() As String Get @@ -1780,7 +2426,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Full Screen. + ''' Sucht eine lokalisierte Zeichenfolge, die Full Screen ähnelt. ''' Friend ReadOnly Property strMenuFullScreen() As String Get @@ -1789,7 +2435,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Full Screen (RDP). + ''' Sucht eine lokalisierte Zeichenfolge, die Full Screen (RDP) ähnelt. ''' Friend ReadOnly Property strMenuFullScreenRDP() As String Get @@ -1798,7 +2444,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Help. + ''' Sucht eine lokalisierte Zeichenfolge, die &Help ähnelt. ''' Friend ReadOnly Property strMenuHelp() As String Get @@ -1807,7 +2453,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to mRemoteNG Help. + ''' Sucht eine lokalisierte Zeichenfolge, die mRemoteNG Help ähnelt. ''' Friend ReadOnly Property strMenuHelpContents() As String Get @@ -1816,7 +2462,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Jump To. + ''' Sucht eine lokalisierte Zeichenfolge, die Jump To ähnelt. ''' Friend ReadOnly Property strMenuJumpTo() As String Get @@ -1825,7 +2471,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Launch External Tool. + ''' Sucht eine lokalisierte Zeichenfolge, die Launch External Tool ähnelt. ''' Friend ReadOnly Property strMenuLaunchExternalTool() As String Get @@ -1834,7 +2480,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to New Connection File. + ''' Sucht eine lokalisierte Zeichenfolge, die New Connection File ähnelt. ''' Friend ReadOnly Property strMenuNewConnectionFile() As String Get @@ -1843,7 +2489,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to New External Tool. + ''' Sucht eine lokalisierte Zeichenfolge, die New External Tool ähnelt. ''' Friend ReadOnly Property strMenuNewExternalTool() As String Get @@ -1852,7 +2498,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Notifications. + ''' Sucht eine lokalisierte Zeichenfolge, die Notifications ähnelt. ''' Friend ReadOnly Property strMenuNotifications() As String Get @@ -1861,7 +2507,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Open Connection File.... + ''' Sucht eine lokalisierte Zeichenfolge, die Open Connection File... ähnelt. ''' Friend ReadOnly Property strMenuOpenConnectionFile() As String Get @@ -1870,7 +2516,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Options. + ''' Sucht eine lokalisierte Zeichenfolge, die Options ähnelt. ''' Friend ReadOnly Property strMenuOptions() As String Get @@ -1879,7 +2525,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Paste. + ''' Sucht eine lokalisierte Zeichenfolge, die Paste ähnelt. ''' Friend ReadOnly Property strMenuPaste() As String Get @@ -1888,7 +2534,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Port Scan. + ''' Sucht eine lokalisierte Zeichenfolge, die Port Scan ähnelt. ''' Friend ReadOnly Property strMenuPortScan() As String Get @@ -1897,7 +2543,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Quick Connect Toolbar. + ''' Sucht eine lokalisierte Zeichenfolge, die Quick Connect Toolbar ähnelt. ''' Friend ReadOnly Property strMenuQuickConnectToolbar() As String Get @@ -1906,7 +2552,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Reconnect. + ''' Sucht eine lokalisierte Zeichenfolge, die Reconnect ähnelt. ''' Friend ReadOnly Property strMenuReconnect() As String Get @@ -1915,7 +2561,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Refresh Screen (VNC). + ''' Sucht eine lokalisierte Zeichenfolge, die Refresh Screen (VNC) ähnelt. ''' Friend ReadOnly Property strMenuRefreshScreen() As String Get @@ -1924,7 +2570,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Rename. + ''' Sucht eine lokalisierte Zeichenfolge, die Rename ähnelt. ''' Friend ReadOnly Property strMenuRename() As String Get @@ -1933,7 +2579,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Rename Connection. + ''' Sucht eine lokalisierte Zeichenfolge, die Rename Connection ähnelt. ''' Friend ReadOnly Property strMenuRenameConnection() As String Get @@ -1942,7 +2588,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Rename Folder. + ''' Sucht eine lokalisierte Zeichenfolge, die Rename Folder ähnelt. ''' Friend ReadOnly Property strMenuRenameFolder() As String Get @@ -1951,7 +2597,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Rename Tab. + ''' Sucht eine lokalisierte Zeichenfolge, die Rename Tab ähnelt. ''' Friend ReadOnly Property strMenuRenameTab() As String Get @@ -1960,7 +2606,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Report a Bug. + ''' Sucht eine lokalisierte Zeichenfolge, die Report a Bug ähnelt. ''' Friend ReadOnly Property strMenuReportBug() As String Get @@ -1969,7 +2615,16 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Save Connection File. + ''' Sucht eine lokalisierte Zeichenfolge, die Reset layout ähnelt. + ''' + Friend ReadOnly Property strMenuResetLayout() As String + Get + Return ResourceManager.GetString("strMenuResetLayout", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Save Connection File ähnelt. ''' Friend ReadOnly Property strMenuSaveConnectionFile() As String Get @@ -1978,7 +2633,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Save Connection File As.... + ''' Sucht eine lokalisierte Zeichenfolge, die Save Connection File As... ähnelt. ''' Friend ReadOnly Property strMenuSaveConnectionFileAs() As String Get @@ -1987,7 +2642,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Screenshot. + ''' Sucht eine lokalisierte Zeichenfolge, die Screenshot ähnelt. ''' Friend ReadOnly Property strMenuScreenshot() As String Get @@ -1996,7 +2651,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Screenshot Manager. + ''' Sucht eine lokalisierte Zeichenfolge, die Screenshot Manager ähnelt. ''' Friend ReadOnly Property strMenuScreenshotManager() As String Get @@ -2005,7 +2660,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Send Special Keys (VNC). + ''' Sucht eine lokalisierte Zeichenfolge, die Send Special Keys (VNC) ähnelt. ''' Friend ReadOnly Property strMenuSendSpecialKeys() As String Get @@ -2014,7 +2669,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Sessions. + ''' Sucht eine lokalisierte Zeichenfolge, die Sessions ähnelt. ''' Friend ReadOnly Property strMenuSessions() As String Get @@ -2023,7 +2678,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Sessions and Screenshots. + ''' Sucht eine lokalisierte Zeichenfolge, die Sessions and Screenshots ähnelt. ''' Friend ReadOnly Property strMenuSessionsAndScreenshots() As String Get @@ -2032,7 +2687,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Show Text. + ''' Sucht eine lokalisierte Zeichenfolge, die Show Text ähnelt. ''' Friend ReadOnly Property strMenuShowText() As String Get @@ -2041,7 +2696,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to SmartSize (RDP/VNC). + ''' Sucht eine lokalisierte Zeichenfolge, die SmartSize (RDP/VNC) ähnelt. ''' Friend ReadOnly Property strMenuSmartSize() As String Get @@ -2050,7 +2705,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to SSH File Transfer. + ''' Sucht eine lokalisierte Zeichenfolge, die SSH File Transfer ähnelt. ''' Friend ReadOnly Property strMenuSSHFileTransfer() As String Get @@ -2059,7 +2714,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Start Chat (VNC). + ''' Sucht eine lokalisierte Zeichenfolge, die Start Chat (VNC) ähnelt. ''' Friend ReadOnly Property strMenuStartChat() As String Get @@ -2068,7 +2723,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Support Forum. + ''' Sucht eine lokalisierte Zeichenfolge, die Support Forum ähnelt. ''' Friend ReadOnly Property strMenuSupportForum() As String Get @@ -2077,7 +2732,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &Tools. + ''' Sucht eine lokalisierte Zeichenfolge, die &Tools ähnelt. ''' Friend ReadOnly Property strMenuTools() As String Get @@ -2086,7 +2741,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Transfer File (SSH). + ''' Sucht eine lokalisierte Zeichenfolge, die Transfer File (SSH) ähnelt. ''' Friend ReadOnly Property strMenuTransferFile() As String Get @@ -2095,7 +2750,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to &View. + ''' Sucht eine lokalisierte Zeichenfolge, die &View ähnelt. ''' Friend ReadOnly Property strMenuView() As String Get @@ -2104,7 +2759,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to View Only (VNC). + ''' Sucht eine lokalisierte Zeichenfolge, die View Only (VNC) ähnelt. ''' Friend ReadOnly Property strMenuViewOnly() As String Get @@ -2113,7 +2768,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Website. + ''' Sucht eine lokalisierte Zeichenfolge, die Website ähnelt. ''' Friend ReadOnly Property strMenuWebsite() As String Get @@ -2122,7 +2777,43 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to New Connection. + ''' Sucht eine lokalisierte Zeichenfolge, die Minimize to System Tray ähnelt. + ''' + Friend ReadOnly Property strMinimizeToSysTray() As String + Get + Return ResourceManager.GetString("strMinimizeToSysTray", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Move down ähnelt. + ''' + Friend ReadOnly Property strMoveDown() As String + Get + Return ResourceManager.GetString("strMoveDown", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Move up ähnelt. + ''' + Friend ReadOnly Property strMoveUp() As String + Get + Return ResourceManager.GetString("strMoveUp", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die my current credentials (windows logon info) ähnelt. + ''' + Friend ReadOnly Property strMyCurrentWindowsCreds() As String + Get + Return ResourceManager.GetString("strMyCurrentWindowsCreds", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die New Connection ähnelt. ''' Friend ReadOnly Property strNewConnection() As String Get @@ -2131,7 +2822,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to New Folder. + ''' Sucht eine lokalisierte Zeichenfolge, die New Folder ähnelt. ''' Friend ReadOnly Property strNewFolder() As String Get @@ -2140,7 +2831,16 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to New Root. + ''' Sucht eine lokalisierte Zeichenfolge, die New Panel ähnelt. + ''' + Friend ReadOnly Property strNewPanel() As String + Get + Return ResourceManager.GetString("strNewPanel", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die New Root ähnelt. ''' Friend ReadOnly Property strNewRoot() As String Get @@ -2149,7 +2849,16 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to No. + ''' Sucht eine lokalisierte Zeichenfolge, die New Title ähnelt. + ''' + Friend ReadOnly Property strNewTitle() As String + Get + Return ResourceManager.GetString("strNewTitle", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die No ähnelt. ''' Friend ReadOnly Property strNo() As String Get @@ -2158,7 +2867,106 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter the hostname or ip you want to connect to.. + ''' Sucht eine lokalisierte Zeichenfolge, die No Compression ähnelt. + ''' + Friend ReadOnly Property strNoCompression() As String + Get + Return ResourceManager.GetString("strNoCompression", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die none ähnelt. + ''' + Friend ReadOnly Property strNoInformation() As String + Get + Return ResourceManager.GetString("strNoInformation", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die None ähnelt. + ''' + Friend ReadOnly Property strNone() As String + Get + Return ResourceManager.GetString("strNone", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Normal ähnelt. + ''' + Friend ReadOnly Property strNormal() As String + Get + Return ResourceManager.GetString("strNormal", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die No SmartSize ähnelt. + ''' + Friend ReadOnly Property strNoSmartSize() As String + Get + Return ResourceManager.GetString("strNoSmartSize", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die No update available ähnelt. + ''' + Friend ReadOnly Property strNoUpdateAvailable() As String + Get + Return ResourceManager.GetString("strNoUpdateAvailable", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Open new tab to the right of the currently selected tab ähnelt. + ''' + Friend ReadOnly Property strOpenNewTabRight() As String + Get + Return ResourceManager.GetString("strOpenNewTabRight", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Open Ports ähnelt. + ''' + Friend ReadOnly Property strOpenPorts() As String + Get + Return ResourceManager.GetString("strOpenPorts", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Panel Name ähnelt. + ''' + Friend ReadOnly Property strPanelName() As String + Get + Return ResourceManager.GetString("strPanelName", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Password protect ähnelt. + ''' + Friend ReadOnly Property strPasswordProtect() As String + Get + Return ResourceManager.GetString("strPasswordProtect", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die (These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!) ähnelt. + ''' + Friend ReadOnly Property strPropertiesWillOnlyBeSavedMRemoteXML() As String + Get + Return ResourceManager.GetString("strPropertiesWillOnlyBeSavedMRemoteXML", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Enter the hostname or ip you want to connect to. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionAddress() As String Get @@ -2167,7 +2975,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select which authentication level this connection should use.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select which authentication level this connection should use. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionAuthenticationLevel() As String Get @@ -2176,7 +2984,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select how you want to authenticate against the VNC server.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select how you want to authenticate against the VNC server. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionAuthenticationMode() As String Get @@ -2185,7 +2993,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select whether to use bitmap caching or not.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select whether to use bitmap caching or not. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionCacheBitmaps() As String Get @@ -2194,7 +3002,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select the colour quality to be used.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select the colour quality to be used. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionColors() As String Get @@ -2203,7 +3011,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select the compression value to be used.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select the compression value to be used. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionCompression() As String Get @@ -2212,7 +3020,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Put your notes or a description for the host here.. + ''' Sucht eine lokalisierte Zeichenfolge, die Put your notes or a description for the host here. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionDescription() As String Get @@ -2221,7 +3029,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select yes if the theme of the remote host should be displayed.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select yes if the theme of the remote host should be displayed. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionDisplayThemes() As String Get @@ -2230,7 +3038,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select yes if the wallpaper of the remote host should be displayed. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionDisplayWallpaper() As String Get @@ -2239,7 +3047,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter your domain.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter your domain. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionDomain() As String Get @@ -2248,7 +3056,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select the encoding mode to be used.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select the encoding mode to be used. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionEncoding() As String Get @@ -2257,7 +3065,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select the encryption strength of the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select the encryption strength of the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionEncryptionStrength() As String Get @@ -2266,7 +3074,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select the external tool to be started.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select the external tool to be started. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionExternalTool() As String Get @@ -2275,7 +3083,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select a external tool to be started after the disconnection to the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionExternalToolAfter() As String Get @@ -2284,7 +3092,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select a external tool to be started before the connection to the remote host is established. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionExternalToolBefore() As String Get @@ -2293,7 +3101,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Choose a icon that will be displayed when connected to the host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Choose a icon that will be displayed when connected to the host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionIcon() As String Get @@ -2302,7 +3110,7 @@ Namespace My.Resources End Property ''' - ''' 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.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter the MAC address of the remote host if you wish to use it in an external tool. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionMACAddress() As String Get @@ -2311,7 +3119,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to This is the name that will be displayed in the connections tree.. + ''' Sucht eine lokalisierte Zeichenfolge, die This is the name that will be displayed in the connections tree. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionName() As String Get @@ -2320,7 +3128,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Sets the panel in which the connection will open.. + ''' Sucht eine lokalisierte Zeichenfolge, die Sets the panel in which the connection will open. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionPanel() As String Get @@ -2329,7 +3137,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter your password.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter your password. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionPassword() As String Get @@ -2338,7 +3146,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter the port the selected protocol is listening on.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter the port the selected protocol is listening on. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionPort() As String Get @@ -2347,7 +3155,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Choose the protocol mRemoteNG should use to connect to the host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionProtocol() As String Get @@ -2356,7 +3164,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select a PuTTY session to be used when connecting.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select a PuTTY session to be used when connecting. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionPuttySession() As String Get @@ -2365,7 +3173,61 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select whether local disk drives should be shown on the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Specifies the domain name that a user provides to connect to the RD Gateway server. ähnelt. + ''' + Friend ReadOnly Property strPropertyDescriptionRDGatewayDomain() As String + Get + Return ResourceManager.GetString("strPropertyDescriptionRDGatewayDomain", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Specifies the host name of the Remote Desktop Gateway server. ähnelt. + ''' + Friend ReadOnly Property strPropertyDescriptionRDGatewayHostname() As String + Get + Return ResourceManager.GetString("strPropertyDescriptionRDGatewayHostname", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die ähnelt. + ''' + Friend ReadOnly Property strPropertyDescriptionRDGatewayPasswordInherit() As String + Get + Return ResourceManager.GetString("strPropertyDescriptionRDGatewayPasswordInherit", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Specifies when to use a Remote Desktop Gateway (RD Gateway) server. ähnelt. + ''' + Friend ReadOnly Property strPropertyDescriptionRDGatewayUsageMethod() As String + Get + Return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsageMethod", resourceCulture) + End Get + 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. + ''' + Friend ReadOnly Property strPropertyDescriptionRDGatewayUseConnectionCredentials() As String + Get + Return ResourceManager.GetString("strPropertyDescriptionRDGatewayUseConnectionCredentials", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Specifies the user name that a user provides to connect to the RD Gateway server. ähnelt. + ''' + Friend ReadOnly Property strPropertyDescriptionRDGatewayUsername() As String + Get + Return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsername", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local disk drives should be shown on the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionRedirectDrives() As String Get @@ -2374,7 +3236,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionRedirectKeys() As String Get @@ -2383,7 +3245,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local ports (ie. com, parallel) should be shown on the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionRedirectPorts() As String Get @@ -2392,7 +3254,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select whether local printers should be shown on the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local printers should be shown on the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionRedirectPrinters() As String Get @@ -2401,7 +3263,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select whether local Smart Cards should be available on the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select whether local Smart Cards should be available on the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionRedirectSmartCards() As String Get @@ -2410,7 +3272,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select how remote sound should be redirected.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select how remote sound should be redirected. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionRedirectSounds() As String Get @@ -2419,7 +3281,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select one of the available rendering engines that will be used to display HTML. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionRenderingEngine() As String Get @@ -2428,7 +3290,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Choose the resolution or mode this connection will open in.. + ''' Sucht eine lokalisierte Zeichenfolge, die Choose the resolution or mode this connection will open in. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionResolution() As String Get @@ -2437,7 +3299,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select the SmartSize mode to be used.. + ''' Sucht eine lokalisierte Zeichenfolge, die Select the SmartSize mode to be used. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionSmartSizeMode() As String Get @@ -2446,7 +3308,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Connect to the console session of the remote host.. + ''' Sucht eine lokalisierte Zeichenfolge, die Connect to the console session of the remote host. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionUseConsoleSession() As String Get @@ -2455,7 +3317,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Feel free to enter any information you need here.. + ''' Sucht eine lokalisierte Zeichenfolge, die Feel free to enter any information you need here. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionUser1() As String Get @@ -2464,7 +3326,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter your username.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter your username. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionUsername() As String Get @@ -2473,7 +3335,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to If you want to establish a view only connection to the host select yes.. + ''' Sucht eine lokalisierte Zeichenfolge, die If you want to establish a view only connection to the host select yes. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionViewOnly() As String Get @@ -2482,7 +3344,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter the proxy address to be used.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter the proxy address to be used. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyAddress() As String Get @@ -2491,7 +3353,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter your password for authenticating against the proxy.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter your password for authenticating against the proxy. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyPassword() As String Get @@ -2500,7 +3362,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter the port the proxy server listens on.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter the port the proxy server listens on. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyPort() As String Get @@ -2509,7 +3371,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is.. + ''' Sucht eine lokalisierte Zeichenfolge, die If you use a proxy to tunnel VNC connections, select which type it is. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyType() As String Get @@ -2518,7 +3380,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Enter your username for authenticating against the proxy.. + ''' Sucht eine lokalisierte Zeichenfolge, die Enter your username for authenticating against the proxy. ähnelt. ''' Friend ReadOnly Property strPropertyDescriptionVNCProxyUsername() As String Get @@ -2527,7 +3389,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Hostname/IP. + ''' Sucht eine lokalisierte Zeichenfolge, die Hostname/IP ähnelt. ''' Friend ReadOnly Property strPropertyNameAddress() As String Get @@ -2536,7 +3398,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Server Authentication. + ''' Sucht eine lokalisierte Zeichenfolge, die Server Authentication ähnelt. ''' Friend ReadOnly Property strPropertyNameAuthenticationLevel() As String Get @@ -2545,7 +3407,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Authentication Mode. + ''' Sucht eine lokalisierte Zeichenfolge, die Authentication Mode ähnelt. ''' Friend ReadOnly Property strPropertyNameAuthenticationMode() As String Get @@ -2554,7 +3416,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Cache Bitmaps. + ''' Sucht eine lokalisierte Zeichenfolge, die Cache Bitmaps ähnelt. ''' Friend ReadOnly Property strPropertyNameCacheBitmaps() As String Get @@ -2563,7 +3425,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Colours. + ''' Sucht eine lokalisierte Zeichenfolge, die Colours ähnelt. ''' Friend ReadOnly Property strPropertyNameColors() As String Get @@ -2572,7 +3434,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Compression. + ''' Sucht eine lokalisierte Zeichenfolge, die Compression ähnelt. ''' Friend ReadOnly Property strPropertyNameCompression() As String Get @@ -2581,7 +3443,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Description. + ''' Sucht eine lokalisierte Zeichenfolge, die Description ähnelt. ''' Friend ReadOnly Property strPropertyNameDescription() As String Get @@ -2590,7 +3452,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Display Themes. + ''' Sucht eine lokalisierte Zeichenfolge, die Display Themes ähnelt. ''' Friend ReadOnly Property strPropertyNameDisplayThemes() As String Get @@ -2599,7 +3461,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Display Wallpaper. + ''' Sucht eine lokalisierte Zeichenfolge, die Display Wallpaper ähnelt. ''' Friend ReadOnly Property strPropertyNameDisplayWallpaper() As String Get @@ -2608,7 +3470,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Domain. + ''' Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. ''' Friend ReadOnly Property strPropertyNameDomain() As String Get @@ -2617,7 +3479,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Encoding. + ''' Sucht eine lokalisierte Zeichenfolge, die Encoding ähnelt. ''' Friend ReadOnly Property strPropertyNameEncoding() As String Get @@ -2626,7 +3488,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Encryption Strength. + ''' Sucht eine lokalisierte Zeichenfolge, die Encryption Strength ähnelt. ''' Friend ReadOnly Property strPropertyNameEncryptionStrength() As String Get @@ -2635,7 +3497,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to External Tool. + ''' Sucht eine lokalisierte Zeichenfolge, die External Tool ähnelt. ''' Friend ReadOnly Property strPropertyNameExternalTool() As String Get @@ -2644,7 +3506,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to External Tool After. + ''' Sucht eine lokalisierte Zeichenfolge, die External Tool After ähnelt. ''' Friend ReadOnly Property strPropertyNameExternalToolAfter() As String Get @@ -2653,7 +3515,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to External Tool Before. + ''' Sucht eine lokalisierte Zeichenfolge, die External Tool Before ähnelt. ''' Friend ReadOnly Property strPropertyNameExternalToolBefore() As String Get @@ -2662,7 +3524,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Icon. + ''' Sucht eine lokalisierte Zeichenfolge, die Icon ähnelt. ''' Friend ReadOnly Property strPropertyNameIcon() As String Get @@ -2671,7 +3533,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit All. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit All ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritAll() As String Get @@ -2680,7 +3542,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Server Authentication. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Server Authentication ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritAuthenticationLevel() As String Get @@ -2689,7 +3551,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Authentication Mode. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Authentication Mode ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritAuthenticationMode() As String Get @@ -2698,7 +3560,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Cache Bitmaps. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Cache Bitmaps ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritCacheBitmaps() As String Get @@ -2707,7 +3569,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Colours. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Colours ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritColors() As String Get @@ -2716,7 +3578,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Compression. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Compression ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritCompression() As String Get @@ -2725,7 +3587,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Description. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Description ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritDescription() As String Get @@ -2734,7 +3596,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Display Themes. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Display Themes ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritDisplayThemes() As String Get @@ -2743,7 +3605,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Display Wallpaper. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Display Wallpaper ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritDisplayWallpaper() As String Get @@ -2752,7 +3614,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Domain. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Domain ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritDomain() As String Get @@ -2761,7 +3623,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Encoding. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Encoding ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritEncoding() As String Get @@ -2770,7 +3632,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Encryption Strength. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Encryption Strength ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritEncryptionStrength() As String Get @@ -2779,7 +3641,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit External Tool. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit External Tool ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritExternalTool() As String Get @@ -2788,7 +3650,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit External Tool After. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit External Tool After ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritExternalToolAfter() As String Get @@ -2797,7 +3659,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit External Tool Before. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit External Tool Before ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritExternalToolBefore() As String Get @@ -2806,7 +3668,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Icon. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Icon ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritIcon() As String Get @@ -2815,7 +3677,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit MAC Address. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit MAC Address ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritMACAddress() As String Get @@ -2824,7 +3686,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Panel. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Panel ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritPanel() As String Get @@ -2833,7 +3695,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Password. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Password ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritPassword() As String Get @@ -2842,7 +3704,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Port. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Port ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritPort() As String Get @@ -2851,7 +3713,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Protocol. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Protocol ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritProtocol() As String Get @@ -2860,7 +3722,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit PuTTY Session. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit PuTTY Session ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritPuttySession() As String Get @@ -2869,7 +3731,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Disk Drives. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Disk Drives ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritRedirectDrives() As String Get @@ -2878,7 +3740,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Key Combinations. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Key Combinations ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritRedirectKeys() As String Get @@ -2887,7 +3749,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Ports. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Ports ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritRedirectPorts() As String Get @@ -2896,7 +3758,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Printers. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Printers ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritRedirectPrinters() As String Get @@ -2905,7 +3767,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Smart Cards. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Smart Cards ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritRedirectSmartCards() As String Get @@ -2914,7 +3776,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Sounds. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Sounds ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritRedirectSounds() As String Get @@ -2923,7 +3785,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Rendering Engine. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Rendering Engine ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritRenderingEngine() As String Get @@ -2932,7 +3794,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Resolution. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Resolution ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritResolution() As String Get @@ -2941,7 +3803,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit SmartSize Mode. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit SmartSize Mode ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritSmartSizeMode() As String Get @@ -2950,7 +3812,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Use Console Session. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Use Console Session ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritUseConsoleSession() As String Get @@ -2959,7 +3821,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit User Field. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit User Field ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritUser1() As String Get @@ -2968,7 +3830,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Username. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Username ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritUsername() As String Get @@ -2977,7 +3839,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit View Only. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit View Only ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritViewOnly() As String Get @@ -2986,7 +3848,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Proxy Address. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Proxy Address ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritVNCProxyAddress() As String Get @@ -2995,7 +3857,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Proxy Password. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Proxy Password ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritVNCProxyPassword() As String Get @@ -3004,7 +3866,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Proxy Port. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Proxy Port ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritVNCProxyPort() As String Get @@ -3013,7 +3875,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Proxy Type. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Proxy Type ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritVNCProxyType() As String Get @@ -3022,7 +3884,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Inherit Proxy Username. + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Proxy Username ähnelt. ''' Friend ReadOnly Property strPropertyNameInheritVNCProxyUsername() As String Get @@ -3031,7 +3893,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to MAC Address. + ''' Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt. ''' Friend ReadOnly Property strPropertyNameMACAddress() As String Get @@ -3040,7 +3902,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Name. + ''' Sucht eine lokalisierte Zeichenfolge, die Name ähnelt. ''' Friend ReadOnly Property strPropertyNameName() As String Get @@ -3049,7 +3911,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Panel. + ''' Sucht eine lokalisierte Zeichenfolge, die Panel ähnelt. ''' Friend ReadOnly Property strPropertyNamePanel() As String Get @@ -3058,7 +3920,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Password. + ''' Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. ''' Friend ReadOnly Property strPropertyNamePassword() As String Get @@ -3067,7 +3929,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Port. + ''' Sucht eine lokalisierte Zeichenfolge, die Port ähnelt. ''' Friend ReadOnly Property strPropertyNamePort() As String Get @@ -3076,7 +3938,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Protocol. + ''' Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. ''' Friend ReadOnly Property strPropertyNameProtocol() As String Get @@ -3085,7 +3947,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to PuTTY Session. + ''' Sucht eine lokalisierte Zeichenfolge, die PuTTY Session ähnelt. ''' Friend ReadOnly Property strPropertyNamePuttySession() As String Get @@ -3094,7 +3956,97 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Disk Drives. + ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Domain ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayDomain() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayDomain", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Hostname ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayHostname() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayHostname", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Gateway Hostname ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayHostnameInherit() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayHostnameInherit", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Remote Desktop Gateway Password ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayPassword() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayPassword", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Remote Desktop Gateway Password ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayPasswordInherit() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayPasswordInherit", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Use Gateway ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayUsageMethod() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayUsageMethod", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Use Gateway ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayUsageMethodInherit() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayUsageMethodInherit", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Credentials ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayUseConnectionCredentials() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayUseConnectionCredentials", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Inherit Gateway Credentials ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayUseConnectionCredentialsInherit() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayUseConnectionCredentialsInherit", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Gateway Username ähnelt. + ''' + Friend ReadOnly Property strPropertyNameRDGatewayUsername() As String + Get + Return ResourceManager.GetString("strPropertyNameRDGatewayUsername", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Disk Drives ähnelt. ''' Friend ReadOnly Property strPropertyNameRedirectDrives() As String Get @@ -3103,7 +4055,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Key Combinations. + ''' Sucht eine lokalisierte Zeichenfolge, die Key Combinations ähnelt. ''' Friend ReadOnly Property strPropertyNameRedirectKeys() As String Get @@ -3112,7 +4064,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Ports. + ''' Sucht eine lokalisierte Zeichenfolge, die Ports ähnelt. ''' Friend ReadOnly Property strPropertyNameRedirectPorts() As String Get @@ -3121,7 +4073,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Printers. + ''' Sucht eine lokalisierte Zeichenfolge, die Printers ähnelt. ''' Friend ReadOnly Property strPropertyNameRedirectPrinters() As String Get @@ -3130,7 +4082,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Smart Cards. + ''' Sucht eine lokalisierte Zeichenfolge, die Smart Cards ähnelt. ''' Friend ReadOnly Property strPropertyNameRedirectSmartCards() As String Get @@ -3139,7 +4091,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Sounds. + ''' Sucht eine lokalisierte Zeichenfolge, die Sounds ähnelt. ''' Friend ReadOnly Property strPropertyNameRedirectSounds() As String Get @@ -3148,7 +4100,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Rendering Engine. + ''' Sucht eine lokalisierte Zeichenfolge, die Rendering Engine ähnelt. ''' Friend ReadOnly Property strPropertyNameRenderingEngine() As String Get @@ -3157,7 +4109,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Resolution. + ''' Sucht eine lokalisierte Zeichenfolge, die Resolution ähnelt. ''' Friend ReadOnly Property strPropertyNameResolution() As String Get @@ -3166,7 +4118,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to SmartSize Mode. + ''' Sucht eine lokalisierte Zeichenfolge, die SmartSize Mode ähnelt. ''' Friend ReadOnly Property strPropertyNameSmartSizeMode() As String Get @@ -3175,7 +4127,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Use Console Session. + ''' Sucht eine lokalisierte Zeichenfolge, die Use Console Session ähnelt. ''' Friend ReadOnly Property strPropertyNameUseConsoleSession() As String Get @@ -3184,7 +4136,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to User Field. + ''' Sucht eine lokalisierte Zeichenfolge, die User Field ähnelt. ''' Friend ReadOnly Property strPropertyNameUser1() As String Get @@ -3193,7 +4145,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Username. + ''' Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. ''' Friend ReadOnly Property strPropertyNameUsername() As String Get @@ -3202,7 +4154,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to View Only. + ''' Sucht eine lokalisierte Zeichenfolge, die View Only ähnelt. ''' Friend ReadOnly Property strPropertyNameViewOnly() As String Get @@ -3211,7 +4163,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Proxy Address. + ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Address ähnelt. ''' Friend ReadOnly Property strPropertyNameVNCProxyAddress() As String Get @@ -3220,7 +4172,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Proxy Password. + ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Password ähnelt. ''' Friend ReadOnly Property strPropertyNameVNCProxyPassword() As String Get @@ -3229,7 +4181,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Proxy Port. + ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Port ähnelt. ''' Friend ReadOnly Property strPropertyNameVNCProxyPort() As String Get @@ -3238,7 +4190,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Proxy Type. + ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Type ähnelt. ''' Friend ReadOnly Property strPropertyNameVNCProxyType() As String Get @@ -3247,7 +4199,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Proxy Username. + ''' Sucht eine lokalisierte Zeichenfolge, die Proxy Username ähnelt. ''' Friend ReadOnly Property strPropertyNameVNCProxyUsername() As String Get @@ -3256,7 +4208,277 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Aspect. + ''' Sucht eine lokalisierte Zeichenfolge, die Protocol to import ähnelt. + ''' + Friend ReadOnly Property strProtocolToImport() As String + Get + Return ResourceManager.GetString("strProtocolToImport", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Proxy test failed! ähnelt. + ''' + Friend ReadOnly Property strProxyTestFailed() As String + Get + Return ResourceManager.GetString("strProxyTestFailed", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Proxy test succeeded! ähnelt. + ''' + Friend ReadOnly Property strProxyTestSucceeded() As String + Get + Return ResourceManager.GetString("strProxyTestSucceeded", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Quick Connect ähnelt. + ''' + Friend ReadOnly Property strQuickConnect() As String + Get + Return ResourceManager.GetString("strQuickConnect", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die 256 Colors ähnelt. + ''' + Friend ReadOnly Property strRDP256Colors() As String + Get + Return ResourceManager.GetString("strRDP256Colors", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Fit To Panel ähnelt. + ''' + Friend ReadOnly Property strRDPFitToPanel() As String + Get + Return ResourceManager.GetString("strRDPFitToPanel", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Smart Size ähnelt. + ''' + Friend ReadOnly Property strRDPSmartSize() As String + Get + Return ResourceManager.GetString("strRDPSmartSize", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Bring to this computer ähnelt. + ''' + Friend ReadOnly Property strRDPSoundBringToThisComputer() As String + Get + Return ResourceManager.GetString("strRDPSoundBringToThisComputer", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Do not play ähnelt. + ''' + Friend ReadOnly Property strRDPSoundDoNotPlay() As String + Get + Return ResourceManager.GetString("strRDPSoundDoNotPlay", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Leave at remote computer ähnelt. + ''' + Friend ReadOnly Property strRDPSoundLeaveAtRemoteComputer() As String + Get + Return ResourceManager.GetString("strRDPSoundLeaveAtRemoteComputer", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Reconnect to previously opened sessions on startup ähnelt. + ''' + Friend ReadOnly Property strReconnectAtStartup() As String + Get + Return ResourceManager.GetString("strReconnectAtStartup", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. + ''' + Friend ReadOnly Property strRefresh() As String + Get + Return ResourceManager.GetString("strRefresh", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Remote file ähnelt. + ''' + Friend ReadOnly Property strRemoteFile() As String + Get + Return ResourceManager.GetString("strRemoteFile", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Remove All ähnelt. + ''' + Friend ReadOnly Property strRemoveAll() As String + Get + Return ResourceManager.GetString("strRemoveAll", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Rename ähnelt. + ''' + Friend ReadOnly Property strRename() As String + Get + Return ResourceManager.GetString("strRename", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Save ähnelt. + ''' + Friend ReadOnly Property strSave() As String + Get + Return ResourceManager.GetString("strSave", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Save All ähnelt. + ''' + Friend ReadOnly Property strSaveAll() As String + Get + Return ResourceManager.GetString("strSaveAll", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Do you want to save the current connections file before loading another? ähnelt. + ''' + Friend ReadOnly Property strSaveConnectionsFileBeforeOpeningAnother() As String + Get + Return ResourceManager.GetString("strSaveConnectionsFileBeforeOpeningAnother", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Save connections on exit ähnelt. + ''' + Friend ReadOnly Property strSaveConsOnExit() As String + Get + Return ResourceManager.GetString("strSaveConsOnExit", resourceCulture) + End Get + 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. + ''' + Friend ReadOnly Property strSaveImageFilter() As String + Get + Return ResourceManager.GetString("strSaveImageFilter", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Screen ähnelt. + ''' + Friend ReadOnly Property strScreen() As String + Get + Return ResourceManager.GetString("strScreen", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Screenshots ähnelt. + ''' + Friend ReadOnly Property strScreenshots() As String + Get + Return ResourceManager.GetString("strScreenshots", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Send To... ähnelt. + ''' + Friend ReadOnly Property strSendTo() As String + Get + Return ResourceManager.GetString("strSendTo", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Set hostname like display name when creating new connections ähnelt. + ''' + Friend ReadOnly Property strSetHostnameLikeDisplayName() As String + Get + Return ResourceManager.GetString("strSetHostnameLikeDisplayName", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Show description tooltips in connection tree ähnelt. + ''' + Friend ReadOnly Property strShowDescriptionTooltips() As String + Get + Return ResourceManager.GetString("strShowDescriptionTooltips", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Show full connections file path in window title ähnelt. + ''' + Friend ReadOnly Property strShowFullConsFilePath() As String + Get + Return ResourceManager.GetString("strShowFullConsFilePath", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Show logon information on tab names ähnelt. + ''' + Friend ReadOnly Property strShowLogonInfoOnTabs() As String + Get + Return ResourceManager.GetString("strShowLogonInfoOnTabs", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Show protocols on tab names ähnelt. + ''' + Friend ReadOnly Property strShowProtocolOnTabs() As String + Get + Return ResourceManager.GetString("strShowProtocolOnTabs", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Single click on connection opens it ähnelt. + ''' + Friend ReadOnly Property strSingleClickOnConnectionOpensIt() As String + Get + Return ResourceManager.GetString("strSingleClickOnConnectionOpensIt", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Single click on opened connection switches to it ähnelt. + ''' + Friend ReadOnly Property strSingleClickOnOpenConnectionSwitchesToIt() As String + Get + Return ResourceManager.GetString("strSingleClickOnOpenConnectionSwitchesToIt", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Aspect ähnelt. ''' Friend ReadOnly Property strSmartSizeModeAspect() As String Get @@ -3265,7 +4487,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Free. + ''' Sucht eine lokalisierte Zeichenfolge, die Free ähnelt. ''' Friend ReadOnly Property strSmartSizeModeFree() As String Get @@ -3274,7 +4496,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to No SmartSize. + ''' Sucht eine lokalisierte Zeichenfolge, die No SmartSize ähnelt. ''' Friend ReadOnly Property strSmartSizeModeNone() As String Get @@ -3283,7 +4505,79 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Status. + ''' Sucht eine lokalisierte Zeichenfolge, die Sort ähnelt. + ''' + Friend ReadOnly Property strSort() As String + Get + Return ResourceManager.GetString("strSort", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Ascending (A-Z) ähnelt. + ''' + Friend ReadOnly Property strSortAsc() As String + Get + Return ResourceManager.GetString("strSortAsc", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Descending (Z-A) ähnelt. + ''' + Friend ReadOnly Property strSortDesc() As String + Get + Return ResourceManager.GetString("strSortDesc", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Please see Help - Getting started - SQL Configuration for more Info! ähnelt. + ''' + Friend ReadOnly Property strSQLInfo() As String + Get + Return ResourceManager.GetString("strSQLInfo", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die SQL Server ähnelt. + ''' + Friend ReadOnly Property strSQLServer() As String + Get + Return ResourceManager.GetString("strSQLServer", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Start IP ähnelt. + ''' + Friend ReadOnly Property strStartIP() As String + Get + Return ResourceManager.GetString("strStartIP", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Start Port ähnelt. + ''' + Friend ReadOnly Property strStartPort() As String + Get + Return ResourceManager.GetString("strStartPort", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Startup/Exit ähnelt. + ''' + Friend ReadOnly Property strStartupExit() As String + Get + Return ResourceManager.GetString("strStartupExit", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Status ähnelt. ''' Friend ReadOnly Property strStatus() As String Get @@ -3292,7 +4586,16 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Advanced. + ''' Sucht eine lokalisierte Zeichenfolge, die Switch to Notifications panel on ähnelt. + ''' + Friend ReadOnly Property strSwitchToErrorsAndInfos() As String + Get + Return ResourceManager.GetString("strSwitchToErrorsAndInfos", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Advanced ähnelt. ''' Friend ReadOnly Property strTabAdvanced() As String Get @@ -3301,7 +4604,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Appearance. + ''' Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. ''' Friend ReadOnly Property strTabAppearance() As String Get @@ -3310,7 +4613,25 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Error ({0}). + ''' Sucht eine lokalisierte Zeichenfolge, die Tabs && Panels ähnelt. + ''' + Friend ReadOnly Property strTabsAndPanels() As String + Get + Return ResourceManager.GetString("strTabsAndPanels", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die the follwing ähnelt. + ''' + Friend ReadOnly Property strTheFollowing() As String + Get + Return ResourceManager.GetString("strTheFollowing", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Error ({0}) ähnelt. ''' Friend ReadOnly Property strTitleError() As String Get @@ -3319,7 +4640,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Information ({0}). + ''' Sucht eine lokalisierte Zeichenfolge, die Information ({0}) ähnelt. ''' Friend ReadOnly Property strTitleInformation() As String Get @@ -3328,7 +4649,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Password. + ''' Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. ''' Friend ReadOnly Property strTitlePassword() As String Get @@ -3337,7 +4658,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Select Panel. + ''' Sucht eine lokalisierte Zeichenfolge, die Select Panel ähnelt. ''' Friend ReadOnly Property strTitleSelectPanel() As String Get @@ -3346,7 +4667,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Warning ({0}). + ''' Sucht eine lokalisierte Zeichenfolge, die Warning ({0}) ähnelt. ''' Friend ReadOnly Property strTitleWarning() As String Get @@ -3355,7 +4676,71 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Every {0} days. + ''' Sucht eine lokalisierte Zeichenfolge, die Tools ähnelt. + ''' + Friend ReadOnly Property strTools() As String + Get + Return ResourceManager.GetString("strTools", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Transfer ähnelt. + ''' + Friend ReadOnly Property strTransfer() As String + Get + Return ResourceManager.GetString("strTransfer", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Type ähnelt. + ''' + Friend ReadOnly Property strType() As String + Get + Return ResourceManager.GetString("strType", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die UltraVNC SingleClick Port ähnelt. + ''' + Friend ReadOnly Property strUltraVNCSCListeningPort() As String + Get + Return ResourceManager.GetString("strUltraVNCSCListeningPort", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Uncheck the properties you want not to be saved! ähnelt. + ''' + Friend ReadOnly Property strUncheckProperties() As String + Get + Return ResourceManager.GetString("strUncheckProperties", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die mRemoteNG requires an update ähnelt. + ''' + Friend ReadOnly Property strUpdateAvailable() As String + Get + Return ResourceManager.GetString("strUpdateAvailable", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Download complete! + '''mRemoteNG will now quit and begin with the installation. ähnelt. + ''' + Friend ReadOnly Property strUpdateDownloadComplete() As String + Get + Return ResourceManager.GetString("strUpdateDownloadComplete", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Every {0} days ähnelt. ''' Friend ReadOnly Property strUpdateFrequencyCustom() As String Get @@ -3364,7 +4749,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Daily. + ''' Sucht eine lokalisierte Zeichenfolge, die Daily ähnelt. ''' Friend ReadOnly Property strUpdateFrequencyDaily() As String Get @@ -3373,7 +4758,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Monthly. + ''' Sucht eine lokalisierte Zeichenfolge, die Monthly ähnelt. ''' Friend ReadOnly Property strUpdateFrequencyMonthly() As String Get @@ -3382,7 +4767,7 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Weekly. + ''' Sucht eine lokalisierte Zeichenfolge, die Weekly ähnelt. ''' Friend ReadOnly Property strUpdateFrequencyWeekly() As String Get @@ -3391,7 +4776,79 @@ Namespace My.Resources End Property ''' - ''' Looks up a localized string similar to Yes. + ''' Sucht eine lokalisierte Zeichenfolge, die Use only Notifications panel (no messagebox popups) ähnelt. + ''' + Friend ReadOnly Property strUseOnlyErrorsAndInfosPanel() As String + Get + Return ResourceManager.GetString("strUseOnlyErrorsAndInfosPanel", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die User ähnelt. + ''' + Friend ReadOnly Property strUser() As String + Get + Return ResourceManager.GetString("strUser", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Use SQL Server to load && save connections ähnelt. + ''' + Friend ReadOnly Property strUseSQLServer() As String + Get + Return ResourceManager.GetString("strUseSQLServer", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Version ähnelt. + ''' + Friend ReadOnly Property strVersion() As String + Get + Return ResourceManager.GetString("strVersion", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Warn me if authentication fails ähnelt. + ''' + Friend ReadOnly Property strWarnIfAuthFails() As String + Get + Return ResourceManager.GetString("strWarnIfAuthFails", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Warnings ähnelt. + ''' + Friend ReadOnly Property strWarnings() As String + Get + Return ResourceManager.GetString("strWarnings", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Write log file (mRemoteNG.log) ähnelt. + ''' + Friend ReadOnly Property strWriteLogFile() As String + Get + Return ResourceManager.GetString("strWriteLogFile", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die XULrunner path ähnelt. + ''' + Friend ReadOnly Property strXULrunnerPath() As String + Get + Return ResourceManager.GetString("strXULrunnerPath", resourceCulture) + End Get + End Property + + ''' + ''' Sucht eine lokalisierte Zeichenfolge, die Yes ähnelt. ''' Friend ReadOnly Property strYes() As String Get diff --git a/mRemoteV1/My Project/Resources.resx b/mRemoteV1/My Project/Resources.resx index 70fee5a28..9e3b0b5c6 100644 --- a/mRemoteV1/My Project/Resources.resx +++ b/mRemoteV1/My Project/Resources.resx @@ -1,4 +1,4 @@ - +