More localization work.

This commit is contained in:
Riley McArdle
2010-03-16 17:28:53 -05:00
parent 26afcaeef2
commit ecf3ecbcf0
8 changed files with 1520 additions and 249 deletions

View File

@@ -105,8 +105,8 @@ Namespace Connection
Private _Hostname As String = ""
<LocalizedCategory("strCategoryConnection", 2), _
Browsable(True), _
LocalizedDisplayName("strPropertyNameHostnameIP"), _
LocalizedDescription("strPropertyDescriptionHostnameIP")> _
LocalizedDisplayName("strPropertyNameAddress"), _
LocalizedDescription("strPropertyDescriptionAddress")> _
Public Property Hostname() As String
Get
Return Me._Hostname
@@ -226,8 +226,8 @@ Namespace Connection
Private _ExtApp As String = My.Settings.ConDefaultExtApp
<LocalizedCategory("strCategoryProtocol", 3), _
Browsable(True), _
DisplayName(Language.Base.Props_ExtApp), _
Description(Language.Base.Descr_ExtApp), _
LocalizedDisplayName("strPropertyNameExternalTool"), _
LocalizedDescription("strPropertyDescriptionExternalTool"), _
TypeConverter(GetType(Tools.ExternalAppsTypeConverter))> _
Public Property ExtApp() As String
Get
@@ -279,8 +279,8 @@ Namespace Connection
Private _PuttySession As String = My.Settings.ConDefaultPuttySession
<LocalizedCategory("strCategoryProtocol", 3), _
Browsable(True), _
DisplayName(Language.Base.Props_PuttySession), _
Description(Language.Base.Descr_PuttySession), _
LocalizedDisplayName("strPropertyNamePuttySession"), _
LocalizedDescription("strPropertyDescriptionPuttySession"), _
TypeConverter(GetType(mRemote.Connection.PuttySession))> _
Public Property PuttySession() As String
Get
@@ -306,8 +306,8 @@ Namespace Connection
Private _ICAEncryption As Connection.Protocol.ICA.EncryptionStrength = Tools.Misc.StringToEnum(GetType(mRemote.Connection.Protocol.ICA.EncryptionStrength), My.Settings.ConDefaultICAEncryptionStrength)
<LocalizedCategory("strCategoryProtocol", 3), _
Browsable(True), _
DisplayName(Language.Base.Props_EncryrptionStrength), _
Description(Language.Base.Descr_EncryptionStrength), _
LocalizedDisplayName("strPropertyNameEncryptionStrength"), _
LocalizedDescription("strPropertyDescriptionEncryptionStrength"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property ICAEncryption() As Connection.Protocol.ICA.EncryptionStrength
Get
@@ -333,8 +333,8 @@ Namespace Connection
Private _UseConsoleSession As Boolean = My.Settings.ConDefaultUseConsoleSession
<LocalizedCategory("strCategoryProtocol", 3), _
Browsable(True), _
DisplayName(Language.Base.Props_UseConsoleSession), _
Description(Language.Base.Descr_UseConsoleSession), _
LocalizedDisplayName("strPropertyNameUseConsoleSession"), _
LocalizedDescription("strPropertyDescriptionUseConsoleSession"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property UseConsoleSession() As Boolean
Get
@@ -360,8 +360,8 @@ Namespace Connection
Private _RDPAuthenticationLevel As Connection.Protocol.RDP.AuthenticationLevel = Tools.Misc.StringToEnum(GetType(mRemote.Connection.Protocol.RDP.AuthenticationLevel), My.Settings.ConDefaultRDPAuthenticationLevel)
<LocalizedCategory("strCategoryProtocol", 3), _
Browsable(True), _
DisplayName(Language.Base.Props_AuthenticationLevel), _
Description(Language.Base.Descr_AuthenticationLevel), _
LocalizedDisplayName("strPropertyNameAuthenticationLevel"), _
LocalizedDescription("strPropertyDescriptionAuthenticationLevel"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property RDPAuthenticationLevel() As Connection.Protocol.RDP.AuthenticationLevel
Get
@@ -387,8 +387,8 @@ Namespace Connection
Private _RenderingEngine As Connection.Protocol.HTTPBase.RenderingEngine = Tools.Misc.StringToEnum(GetType(mRemote.Connection.Protocol.HTTPBase.RenderingEngine), My.Settings.ConDefaultRenderingEngine)
<LocalizedCategory("strCategoryProtocol", 3), _
Browsable(True), _
DisplayName(Language.Base.Props_RenderingEngine), _
Description(Language.Base.Descr_RenderingEngine), _
LocalizedDisplayName("strPropertyNameRenderingEngine"), _
LocalizedDescription("strPropertyDescriptionRenderingEngine"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property RenderingEngine() As Connection.Protocol.HTTPBase.RenderingEngine
Get
@@ -575,8 +575,8 @@ Namespace Connection
Private _Resolution As Connection.Protocol.RDP.RDPResolutions = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDPResolutions), My.Settings.ConDefaultResolution)
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(True), _
DisplayName(Language.Base.Props_Resolution), _
Description(Language.Base.Descr_Resolution), _
LocalizedDisplayName("strPropertyNameResolution"), _
LocalizedDescription("strPropertyDescriptionResolution"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property Resolution() As Connection.Protocol.RDP.RDPResolutions
Get
@@ -629,8 +629,8 @@ Namespace Connection
Private _CacheBitmaps As Boolean = My.Settings.ConDefaultCacheBitmaps
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(True), _
DisplayName(Language.Base.Props_CacheBitmaps), _
Description(Language.Base.Descr_CacheBitmaps), _
LocalizedDisplayName("strPropertyNameCacheBitmaps"), _
LocalizedDescription("strPropertyDescriptionCacheBitmaps"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property CacheBitmaps() As Boolean
Get
@@ -656,8 +656,8 @@ Namespace Connection
Private _DisplayWallpaper As Boolean = My.Settings.ConDefaultDisplayWallpaper
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(True), _
DisplayName(Language.Base.Props_DisplayWallpaper), _
Description(Language.Base.Descr_DisplayWallpaper), _
LocalizedDisplayName("strPropertyNameDisplayWallpaper"), _
LocalizedDescription("strPropertyDescriptionDisplayWallpaper"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property DisplayWallpaper() As Boolean
Get
@@ -683,8 +683,8 @@ Namespace Connection
Private _DisplayThemes As Boolean = My.Settings.ConDefaultDisplayThemes
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(True), _
DisplayName(Language.Base.Props_DisplayThemes), _
Description(Language.Base.Descr_DisplayThemes), _
LocalizedDisplayName("strPropertyNameDisplayThemes"), _
LocalizedDescription("strPropertyDescriptionDisplayThemes"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property DisplayThemes() As Boolean
Get
@@ -711,8 +711,8 @@ Namespace Connection
Private _RedirectKeys As Boolean = My.Settings.ConDefaultRedirectKeys
<LocalizedCategory("strCategoryRedirect", 6), _
Browsable(True), _
DisplayName(Language.Base.Props_RedKeyCombinations), _
Description(Language.Base.Descr_RedKeyCombinations), _
LocalizedDisplayName("strPropertyNameRedirectKeys"), _
LocalizedDescription("strPropertyDescriptionRedirectKeys"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectKeys() As Boolean
Get
@@ -738,8 +738,8 @@ Namespace Connection
Private _RedirectDiskDrives As Boolean = My.Settings.ConDefaultRedirectDiskDrives
<LocalizedCategory("strCategoryRedirect", 6), _
Browsable(True), _
DisplayName(Language.Base.Props_RedDiskDrives), _
Description(Language.Base.Descr_RedDiskDrives), _
LocalizedDisplayName("strPropertyNameRedirectDrives"), _
LocalizedDescription("strPropertyDescriptionRedirectDrives"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectDiskDrives() As Boolean
Get
@@ -765,8 +765,8 @@ Namespace Connection
Private _RedirectPrinters As Boolean = My.Settings.ConDefaultRedirectPrinters
<LocalizedCategory("strCategoryRedirect", 6), _
Browsable(True), _
DisplayName(Language.Base.Props_RedPrinters), _
Description(Language.Base.Descr_RedPrinters), _
LocalizedDisplayName("strPropertyNameRedirectPrinters"), _
LocalizedDescription("strPropertyDescriptionRedirectPrinters"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectPrinters() As Boolean
Get
@@ -792,8 +792,8 @@ Namespace Connection
Private _RedirectPorts As Boolean = My.Settings.ConDefaultRedirectPorts
<LocalizedCategory("strCategoryRedirect", 6), _
Browsable(True), _
DisplayName(Language.Base.Props_RedPorts), _
Description(Language.Base.Descr_RedPorts), _
LocalizedDisplayName("strPropertyNameRedirectPorts"), _
LocalizedDescription("strPropertyDescriptionRedirectPorts"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectPorts() As Boolean
Get
@@ -819,8 +819,8 @@ Namespace Connection
Private _RedirectSmartCards As Boolean = My.Settings.ConDefaultRedirectSmartCards
<LocalizedCategory("strCategoryRedirect", 6), _
Browsable(True), _
DisplayName(Language.Base.Props_RedSmartCards), _
Description(Language.Base.Descr_RedSmartCards), _
LocalizedDisplayName("strPropertyNameRedirectSmartCards"), _
LocalizedDescription("strPropertyDescriptionRedirectSmartCards"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectSmartCards() As Boolean
Get
@@ -846,8 +846,8 @@ Namespace Connection
Private _RedirectSound As Connection.Protocol.RDP.RDPSounds = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDPSounds), My.Settings.ConDefaultRedirectSound)
<LocalizedCategory("strCategoryRedirect", 6), _
Browsable(True), _
DisplayName(Language.Base.Props_RedSounds), _
Description(Language.Base.Descr_RedSound), _
LocalizedDisplayName("strPropertyNameRedirectSounds"), _
LocalizedDescription("strPropertyDescriptionRedirectSounds"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property RedirectSound() As Connection.Protocol.RDP.RDPSounds
Get
@@ -874,8 +874,8 @@ Namespace Connection
Private _PreExtApp As String = My.Settings.ConDefaultPreExtApp
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(True), _
DisplayName(Language.Base.Props_PreExtApp), _
Description(Language.Base.Descr_PreExtApp), _
LocalizedDisplayName("strPropertyNameExternalToolBefore"), _
LocalizedDescription("strPropertyDescriptionExternalToolBefore"), _
TypeConverter(GetType(Tools.ExternalAppsTypeConverter))> _
Public Property PreExtApp() As String
Get
@@ -901,8 +901,8 @@ Namespace Connection
Private _PostExtApp As String = My.Settings.ConDefaultPostExtApp
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(True), _
DisplayName(Language.Base.Props_PostExtApp), _
Description(Language.Base.Descr_PostExtApp), _
LocalizedDisplayName("strPropertyNameExternalToolAfter"), _
LocalizedDescription("strPropertyDescriptionExternalToolAfter"), _
TypeConverter(GetType(Tools.ExternalAppsTypeConverter))> _
Public Property PostExtApp() As String
Get
@@ -928,8 +928,8 @@ Namespace Connection
Private _MacAddress As String = My.Settings.ConDefaultMacAddress
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(True), _
DisplayName(Language.Base.Props_MacAddress), _
Description(Language.Base.Descr_MacAddress)> _
LocalizedDisplayName("strPropertyNameMACAddress"), _
LocalizedDescription("strPropertyDescriptionMACAddress")> _
Public Property MacAddress() As String
Get
If Me._Inherit.MacAddress And Me._Parent IsNot Nothing Then
@@ -954,8 +954,8 @@ Namespace Connection
Private _UserField As String = My.Settings.ConDefaultUserField
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(True), _
DisplayName(Language.Base.Props_UserField), _
Description(Language.Base.Descr_UserField)> _
LocalizedDisplayName("strPropertyNameUser1"), _
LocalizedDescription("strPropertyDescriptionUser1")> _
Public Property UserField() As String
Get
If Me._Inherit.UserField And Me._Parent IsNot Nothing Then
@@ -981,8 +981,8 @@ Namespace Connection
Private _VNCCompression As mRemote.Connection.Protocol.VNC.Compression = Tools.Misc.StringToEnum(GetType(Connection.Protocol.VNC.Compression), My.Settings.ConDefaultVNCCompression)
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(False), _
DisplayName(Language.Base.Props_Compression), _
Description(Language.Base.Descr_Compression), _
LocalizedDisplayName("strPropertyNameCompression"), _
LocalizedDescription("strPropertyDescriptionCompression"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property VNCCompression() As mRemote.Connection.Protocol.VNC.Compression
Get
@@ -1008,8 +1008,8 @@ Namespace Connection
Private _VNCEncoding As mRemote.Connection.Protocol.VNC.Encoding = Tools.Misc.StringToEnum(GetType(Connection.Protocol.VNC.Encoding), My.Settings.ConDefaultVNCEncoding)
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(False), _
DisplayName(Language.Base.Props_Encoding), _
Description(Language.Base.Descr_Encoding), _
LocalizedDisplayName("strPropertyNameEncoding"), _
LocalizedDescription("strPropertyDescriptionEncoding"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property VNCEncoding() As mRemote.Connection.Protocol.VNC.Encoding
Get
@@ -1036,8 +1036,8 @@ Namespace Connection
Private _VNCAuthMode As mRemote.Connection.Protocol.VNC.AuthMode = Tools.Misc.StringToEnum(GetType(Connection.Protocol.VNC.AuthMode), My.Settings.ConDefaultVNCAuthMode)
<LocalizedCategory("strCategoryConnection", 2), _
Browsable(False), _
DisplayName(Language.Base.Props_AuthMode), _
Description(Language.Base.Descr_AuthMode), _
LocalizedDisplayName("strPropertyNameAuthenticationMode"), _
LocalizedDescription("strPropertyDescriptionAuthenticationMode"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property VNCAuthMode() As mRemote.Connection.Protocol.VNC.AuthMode
Get
@@ -1063,8 +1063,8 @@ Namespace Connection
Private _VNCProxyType As mRemote.Connection.Protocol.VNC.ProxyType = Tools.Misc.StringToEnum(GetType(Connection.Protocol.VNC.ProxyType), My.Settings.ConDefaultVNCProxyType)
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(False), _
DisplayName(Language.Base.Props_ProxyType), _
Description(Language.Base.Descr_ProxyType), _
LocalizedDisplayName("strPropertyNameVNCProxyType"), _
LocalizedDescription("strPropertyDescriptionVNCProxyType"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property VNCProxyType() As mRemote.Connection.Protocol.VNC.ProxyType
Get
@@ -1090,8 +1090,8 @@ Namespace Connection
Private _VNCProxyIP As String = My.Settings.ConDefaultVNCProxyIP
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(False), _
DisplayName(Language.Base.Props_ProxyIP), _
Description(Language.Base.Descr_ProxyIP)> _
LocalizedDisplayName("strPropertyNameVNCProxyAddress"), _
LocalizedDescription("strPropertyDescriptionVNCProxyAddress")> _
Public Property VNCProxyIP() As String
Get
If Me._Inherit.VNCProxyIP And Me._Parent IsNot Nothing Then
@@ -1116,8 +1116,8 @@ Namespace Connection
Private _VNCProxyPort As Integer = My.Settings.ConDefaultVNCProxyPort
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(False), _
DisplayName(Language.Base.Props_ProxyPort), _
Description(Language.Base.Descr_ProxyPort)> _
LocalizedDisplayName("strPropertyNameVNCProxyPort"), _
LocalizedDescription("strPropertyDescriptionVNCProxyPort")> _
Public Property VNCProxyPort() As Integer
Get
If Me._Inherit.VNCProxyPort And Me._Parent IsNot Nothing Then
@@ -1142,8 +1142,8 @@ Namespace Connection
Private _VNCProxyUsername As String = My.Settings.ConDefaultVNCProxyUsername
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(False), _
DisplayName(Language.Base.Props_ProxyUsername), _
Description(Language.Base.Props_ProxyUsername)> _
LocalizedDisplayName("strPropertyNameVNCProxyUsername"), _
LocalizedDescription("strPropertyDescriptionVNCProxyUsername")> _
Public Property VNCProxyUsername() As String
Get
If Me._Inherit.VNCProxyUsername And Me._Parent IsNot Nothing Then
@@ -1168,8 +1168,8 @@ Namespace Connection
Private _VNCProxyPassword As String = My.Settings.ConDefaultVNCProxyPassword
<LocalizedCategory("strCategoryMiscellaneous", 7), _
Browsable(False), _
DisplayName(Language.Base.Props_ProxyPassword), _
Description(Language.Base.Descr_ProxyPassword), _
LocalizedDisplayName("strPropertyNameVNCProxyPassword"), _
LocalizedDescription("strPropertyDescriptionVNCProxyPassword"), _
PasswordPropertyText(True)> _
Public Property VNCProxyPassword() As String
Get
@@ -1195,8 +1195,8 @@ Namespace Connection
Private _VNCColors As mRemote.Connection.Protocol.VNC.Colors = Tools.Misc.StringToEnum(GetType(Connection.Protocol.VNC.Colors), My.Settings.ConDefaultVNCColors)
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(False), _
DisplayName(Language.Base.Props_Colors), _
Description(Language.Base.Descr_Colors), _
LocalizedDisplayName("strPropertyNameColors"), _
LocalizedDescription("strPropertyDescriptionColors"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property VNCColors() As mRemote.Connection.Protocol.VNC.Colors
Get
@@ -1222,8 +1222,8 @@ Namespace Connection
Private _VNCSmartSizeMode As mRemote.Connection.Protocol.VNC.SmartSizeMode = Tools.Misc.StringToEnum(GetType(Connection.Protocol.VNC.SmartSizeMode), My.Settings.ConDefaultVNCSmartSizeMode)
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(True), _
DisplayName(Language.Base.Props_SmartSizeMode), _
Description(Language.Base.Descr_SmartSizeMode), _
LocalizedDisplayName("strPropertyNameSmartSizeMode"), _
LocalizedDescription("strPropertyDescriptionSmartSizeMode"), _
TypeConverter(GetType(Tools.Misc.EnumTypeConverter))> _
Public Property VNCSmartSizeMode() As mRemote.Connection.Protocol.VNC.SmartSizeMode
Get
@@ -1249,8 +1249,8 @@ Namespace Connection
Private _VNCViewOnly As Boolean = My.Settings.ConDefaultVNCViewOnly
<LocalizedCategory("strCategoryAppearance", 5), _
Browsable(True), _
DisplayName(Language.Base.Props_ViewOnly), _
Description(Language.Base.Descr_ViewOnly), _
LocalizedDisplayName("strPropertyNameViewOnly"), _
LocalizedDescription("strPropertyDescriptionViewOnly"), _
TypeConverter(GetType(Tools.Misc.YesNoTypeConverter))> _
Public Property VNCViewOnly() As Boolean
Get
@@ -1545,7 +1545,7 @@ Namespace Connection
#Region "1 General"
<LocalizedCategory("strCategoryGeneral", 1), _
Browsable(True), _
DisplayName(Language.Base.Props_InheritEverything), _
LocalizedDisplayName("strPropertyNameInheritAll"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property EverythingInherited() As Boolean
Get
@@ -1674,7 +1674,7 @@ Namespace Connection
Private _ExtApp As Boolean = My.Settings.InhDefaultExtApp
<LocalizedCategory("strCategoryProtocol", 4), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_ExtApp), _
LocalizedDisplayName("strPropertyNameInheritExternalTool"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property ExtApp() As Boolean
Get
@@ -1702,7 +1702,7 @@ Namespace Connection
Private _PuttySession As Boolean = My.Settings.InhDefaultPuttySession
<LocalizedCategory("strCategoryProtocol", 4), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_PuttySession), _
LocalizedDisplayName("strPropertyNameInheritPuttySession"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property PuttySession() As Boolean
Get
@@ -1716,7 +1716,7 @@ Namespace Connection
Private _ICAEncryption As Boolean = My.Settings.InhDefaultICAEncryptionStrength
<LocalizedCategory("strCategoryProtocol", 4), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_EncryrptionStrength), _
LocalizedDisplayName("strPropertyNameInheritEncryptionStrength"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property ICAEncryption() As Boolean
Get
@@ -1730,7 +1730,7 @@ Namespace Connection
Private _RDPAuthenticationLevel As Boolean = My.Settings.InhDefaultRDPAuthenticationLevel
<LocalizedCategory("strCategoryProtocol", 4), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_AuthenticationLevel), _
LocalizedDisplayName("strPropertyNameInheritAuthenticationLevel"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RDPAuthenticationLevel() As Boolean
Get
@@ -1744,7 +1744,7 @@ Namespace Connection
Private _RenderingEngine As Boolean = My.Settings.InhDefaultRenderingEngine
<LocalizedCategory("strCategoryProtocol", 4), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_RenderingEngine), _
LocalizedDisplayName("strPropertyNameInheritRenderingEngine"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RenderingEngine() As Boolean
Get
@@ -1758,7 +1758,7 @@ Namespace Connection
Private _UseConsoleSession As Boolean = My.Settings.InhDefaultUseConsoleSession
<LocalizedCategory("strCategoryProtocol", 4), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_UseConsoleSession), _
LocalizedDisplayName("strPropertyNameInheritUseConsoleSession"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property UseConsoleSession() As Boolean
Get
@@ -1858,7 +1858,7 @@ Namespace Connection
Private _Resolution As Boolean = My.Settings.InhDefaultResolution
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_Resolution), _
LocalizedDisplayName("strPropertyNameInheritResolution"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property Resolution() As Boolean
Get
@@ -1872,7 +1872,7 @@ Namespace Connection
Private _Colors As Boolean = My.Settings.InhDefaultColors
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_Colors), _
LocalizedDisplayName("strPropertyNameInheritColors"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property Colors() As Boolean
Get
@@ -1886,7 +1886,7 @@ Namespace Connection
Private _CacheBitmaps As Boolean = My.Settings.InhDefaultCacheBitmaps
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_CacheBitmaps), _
LocalizedDisplayName("strPropertyNameInheritCacheBitmaps"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property CacheBitmaps() As Boolean
Get
@@ -1900,7 +1900,7 @@ Namespace Connection
Private _DisplayWallpaper As Boolean = My.Settings.InhDefaultDisplayWallpaper
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_DisplayWallpaper), _
LocalizedDisplayName("strPropertyNameInheritDisplayWallpaper"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property DisplayWallpaper() As Boolean
Get
@@ -1914,7 +1914,7 @@ Namespace Connection
Private _DisplayThemes As Boolean = My.Settings.InhDefaultDisplayThemes
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_DisplayThemes), _
LocalizedDisplayName("strPropertyNameInheritDisplayThemes"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property DisplayThemes() As Boolean
Get
@@ -1929,7 +1929,7 @@ Namespace Connection
Private _RedirectKeys As Boolean = My.Settings.InhDefaultRedirectKeys
<LocalizedCategory("strCategoryRedirect", 7), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_RedKeyCombinations), _
LocalizedDisplayName("strPropertyNameInheritRedirectKeys"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectKeys() As Boolean
Get
@@ -1943,7 +1943,7 @@ Namespace Connection
Private _RedirectDiskDrives As Boolean = My.Settings.InhDefaultRedirectDiskDrives
<LocalizedCategory("strCategoryRedirect", 7), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_RedDiskDrives), _
LocalizedDisplayName("strPropertyNameInheritRedirectDrives"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectDiskDrives() As Boolean
Get
@@ -1957,7 +1957,7 @@ Namespace Connection
Private _RedirectPrinters As Boolean = My.Settings.InhDefaultRedirectPrinters
<LocalizedCategory("strCategoryRedirect", 7), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_RedPrinters), _
LocalizedDisplayName("strPropertyNameInheritRedirectPrinters"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectPrinters() As Boolean
Get
@@ -1971,7 +1971,7 @@ Namespace Connection
Private _RedirectPorts As Boolean = My.Settings.InhDefaultRedirectPorts
<LocalizedCategory("strCategoryRedirect", 7), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_RedPorts), _
LocalizedDisplayName("strPropertyNameInheritRedirectPorts"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectPorts() As Boolean
Get
@@ -1985,7 +1985,7 @@ Namespace Connection
Private _RedirectSmartCards As Boolean = My.Settings.InhDefaultRedirectSmartCards
<LocalizedCategory("strCategoryRedirect", 7), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_RedSmartCards), _
LocalizedDisplayName("strPropertyNameInheritRedirectSmartCards"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectSmartCards() As Boolean
Get
@@ -1999,7 +1999,7 @@ Namespace Connection
Private _RedirectSound As Boolean = My.Settings.InhDefaultRedirectSound
<LocalizedCategory("strCategoryRedirect", 7), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_RedSounds), _
LocalizedDisplayName("strPropertyNameInheritRedirectSounds"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property RedirectSound() As Boolean
Get
@@ -2014,7 +2014,7 @@ Namespace Connection
Private _PreExtApp As Boolean = My.Settings.InhDefaultPreExtApp
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_PreExtApp), _
LocalizedDisplayName("strPropertyNameInheritExternalToolBefore"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property PreExtApp() As Boolean
Get
@@ -2028,7 +2028,7 @@ Namespace Connection
Private _PostExtApp As Boolean = My.Settings.InhDefaultPostExtApp
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_PostExtApp), _
LocalizedDisplayName("strPropertyNameInheritExternalToolAfter"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property PostExtApp() As Boolean
Get
@@ -2042,7 +2042,7 @@ Namespace Connection
Private _MacAddress As Boolean = My.Settings.InhDefaultMacAddress
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_MacAddress), _
LocalizedDisplayName("strPropertyNameInheritMACAddress"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property MacAddress() As Boolean
Get
@@ -2056,7 +2056,7 @@ Namespace Connection
Private _UserField As Boolean = My.Settings.InhDefaultUserField
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_UserField), _
LocalizedDisplayName("strPropertyNameInheritUser1"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property UserField() As Boolean
Get
@@ -2071,7 +2071,7 @@ Namespace Connection
Private _VNCCompression As Boolean = My.Settings.InhDefaultVNCCompression
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_Compression), _
LocalizedDisplayName("strPropertyNameInheritCompression"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCCompression() As Boolean
Get
@@ -2085,7 +2085,7 @@ Namespace Connection
Private _VNCEncoding As Boolean = My.Settings.InhDefaultVNCEncoding
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_Encoding), _
LocalizedDisplayName("strPropertyNameInheritEncoding"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCEncoding() As Boolean
Get
@@ -2099,7 +2099,7 @@ Namespace Connection
Private _VNCAuthMode As Boolean = My.Settings.InhDefaultVNCAuthMode
<LocalizedCategory("strCategoryConnection", 3), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_AuthMode), _
LocalizedDisplayName("strPropertyNameInheritAuthenticationMode"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCAuthMode() As Boolean
Get
@@ -2113,7 +2113,7 @@ Namespace Connection
Private _VNCProxyType As Boolean = My.Settings.InhDefaultVNCProxyType
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_ProxyType), _
LocalizedDisplayName("strPropertyNameInheritVNCProxyType"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCProxyType() As Boolean
Get
@@ -2127,7 +2127,7 @@ Namespace Connection
Private _VNCProxyIP As Boolean = My.Settings.InhDefaultVNCProxyIP
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_ProxyIP), _
LocalizedDisplayName("strPropertyNameInheritVNCProxyAddress"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCProxyIP() As Boolean
Get
@@ -2141,7 +2141,7 @@ Namespace Connection
Private _VNCProxyPort As Boolean = My.Settings.InhDefaultVNCProxyPort
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_ProxyPort), _
LocalizedDisplayName("strPropertyNameInheritVNCProxyPort"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCProxyPort() As Boolean
Get
@@ -2155,7 +2155,7 @@ Namespace Connection
Private _VNCProxyUsername As Boolean = My.Settings.InhDefaultVNCProxyUsername
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_ProxyUsername), _
LocalizedDisplayName("strPropertyNameInheritVNCProxyUsername"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCProxyUsername() As Boolean
Get
@@ -2169,7 +2169,7 @@ Namespace Connection
Private _VNCProxyPassword As Boolean = My.Settings.InhDefaultVNCProxyPassword
<LocalizedCategory("strCategoryMiscellaneous", 8), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_ProxyPassword), _
LocalizedDisplayName("strPropertyNameInheritVNCProxyPassword"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCProxyPassword() As Boolean
Get
@@ -2183,7 +2183,7 @@ Namespace Connection
Private _VNCColors As Boolean = My.Settings.InhDefaultVNCColors
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_Colors), _
LocalizedDisplayName("strPropertyNameInheritColors"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCColors() As Boolean
Get
@@ -2197,7 +2197,7 @@ Namespace Connection
Private _VNCSmartSizeMode As Boolean = My.Settings.InhDefaultVNCSmartSizeMode
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_SmartSizeMode), _
LocalizedDisplayName("strPropertyNameInheritSmartSizeMode"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCSmartSizeMode() As Boolean
Get
@@ -2211,7 +2211,7 @@ Namespace Connection
Private _VNCViewOnly As Boolean = My.Settings.InhDefaultVNCViewOnly
<LocalizedCategory("strCategoryAppearance", 6), _
Browsable(True), _
DisplayName(Language.Base.Inherit & " " & Language.Base.Props_ViewOnly), _
LocalizedDisplayName("strPropertyNameInheritViewOnly"), _
TypeConverter(GetType(mRemote.Tools.Misc.YesNoTypeConverter))> _
Public Property VNCViewOnly() As Boolean
Get

View File

@@ -1,74 +1,5 @@
Namespace Language
Public Class DE
Public Const Props_PuttySession As String = "Putty Session"
Public Const Descr_PuttySession As String = "Wählen sie eine PuTTY session die bei Verbindung verwendet werden soll."
Public Const Props_EncryrptionStrength As String = "Verschlüsselungsstärke"
Public Const Descr_EncryptionStrength As String = "Wählen sie die Verschlüsselungsstärke des Remote Hosts."
Public Const Props_AuthenticationLevel As String = "Serverauthentifizierung"
Public Const Descr_AuthenticationLevel As String = "Wählen sie welche Authentifizierungs-Variante verwendet wird."
Public Const Props_UseConsoleSession As String = "Verwende Console Session"
Public Const Descr_UseConsoleSession As String = "Zur Console Session des Remote Hosts verbinden."
Public Const Props_Resolution As String = "Auflösung"
Public Const Descr_Resolution As String = "Wählen sie die Auflösung in welcher der Host geöffnet werden soll."
Public Const Props_CacheBitmaps As String = "Bitmaps zwischenspeichern"
Public Const Descr_CacheBitmaps As String = "Wählen sie ob Bitmap caching zum Einsatz kommen soll."
Public Const Props_DisplayWallpaper As String = "Hintergrundbild anzeigen"
Public Const Descr_DisplayWallpaper As String = "Wählen sie ob Hintergrundbilder am Remote Host angezeigt werden sollen."
Public Const Props_DisplayThemes As String = "Themen anzeigen"
Public Const Descr_DisplayThemes As String = "Wählen sie ob Themen am Remote Host angezeigt werden sollen."
Public Const Props_RedKeyCombinations As String = "Tastenkombinationen"
Public Const Descr_RedKeyCombinations As String = "Wählen sie ob Tastenkombinationen wie z.B. Alt+Tab auf den Remote Host umgeleitet werden sollen."
Public Const Props_RedDiskDrives As String = "Festplatten"
Public Const Descr_RedDiskDrives As String = "Wählen sie ob ihre lokalen Festplatten am Remote Host angezeigt werden sollen."
Public Const Props_RedPrinters As String = "Drucker"
Public Const Descr_RedPrinters As String = "Wählen sie ob ihre lokalen Drucker am Remote Host angezeigt werden sollen."
Public Const Props_RedPorts As String = "Ports"
Public Const Descr_RedPorts As String = "Wählen sie ob ihre lokalen Ports wie z.B. COM, Parallel auf dem Remote Host angezeigt werden sollen."
Public Const Props_RedSmartCards As String = "Smart Cards"
Public Const Descr_RedSmartCards As String = "Wählen sie ob ihre lokalen Smart Cards auf dem Remote Host zur Verfügung stehen sollen."
Public Const Props_RedSounds As String = "Töne"
Public Const Descr_RedSound As String = "Wählen sie wie Töne auf dem Remote Host wiedergegeben werden sollen."
Public Const Props_PreExtApp As String = "Pre Ext. App"
Public Const Descr_PreExtApp As String = "Wählen sie eine Ext. App die gestartet werden soll bevor die Verbindung zum Remote Host aufgebaut wurde."
Public Const Props_PostExtApp As String = "Post Ext. App"
Public Const Descr_PostExtApp As String = "Wählen sie eine Ext. App die gestartet werden soll nachdem die Verbindung zum Remote Host getrennt wurde."
Public Const Props_Compression As String = "Kompremierung"
Public Const Descr_Compression As String = "Wählen sie die Kompressionsrate die verwendet werden soll."
Public Const Props_Encoding As String = "Codierung"
Public Const Descr_Encoding As String = "Wählen sie die Codierung die verwendet werden soll."
Public Const Props_AuthMode As String = "Auth. Modus"
Public Const Descr_AuthMode As String = "Wählen sie wie sie sich am VNC server authentifizieren wollen."
Public Const Props_ProxyType As String = "Proxy Typ"
Public Const Descr_ProxyType As String = "Wenn sie einen Proxy verwenden um auf den Remote Host zugreifen zu können, wählen sie hier den Typ."
Public Const Props_ProxyIP As String = "Proxy IP"
Public Const Descr_ProxyIP As String = "Geben sie die IP des Proxy Servers ein."
Public Const Props_ProxyPort As String = "Proxy Port"
Public Const Descr_ProxyPort As String = "Geben sie den Port des Proxy Servers ein."
Public Const Props_ProxyUsername As String = "Proxy Benutzername"
Public Const Descr_ProxyUsername As String = "Geben sie ihren Benutzernamen ein."
Public Const Props_ProxyPassword As String = "Proxy Passwort"
Public Const Descr_ProxyPassword As String = "Geben sie ihr Password ein."
Public Const Props_SmartSizeMode As String = "SmartSize Modus"
Public Const Descr_SmartSizeMode As String = "Wählen sie den SmartSize Modus der verwendet werden soll."
Public Const Props_ViewOnly As String = "View-Only"
Public Const Descr_ViewOnly As String = "Wählen sie ob sie eine View-Only Verbindung aufbauen wollen."
Public Const Props_RenderingEngine As String = "Rendering Engine"
Public Const Descr_RenderingEngine As String = "Wählen sie eine der Rendering Engines die verwendet wird um html darzustellen."
Public Const Props_MacAddress As String = "MAC Adresse"
Public Const Descr_MacAddress As String = "Geben sie die MAC Adresse des Remote Hosts ein (kann für Ext. Apps verwendet werden)."
Public Const Props_UserField As String = "Benutzer Feld"
Public Const Descr_UserField As String = "Dieses Feld ist frei beschreibbar."
Public Const Props_General As String = "Generell"
Public Const Props_Display As String = "Anzeige"
Public Const Props_Connection As String = "Verbindung"
Public Const Props_Appearance As String = "Aussehen"
Public Const Props_Redirect As String = "Umleitung"
Public Const Props_Misc As String = "Verschiedenes"
Public Const Props_InheritEverything As String = "Alles vererben"
Public Const Props_ExtApp As String = "Ext. App"
Public Const Descr_ExtApp As String = "Wählen sie die Ext. App die gestartet werden soll."
Public Const Aspect As String = "Aspekt"
Public Const Free As String = "Frei"
Public Const NoSmartSize As String = "Kein SmartSize"

View File

@@ -1,65 +1,5 @@
Namespace Language
Public Class EN
Public Const Props_PuttySession As String = "Putty Session"
Public Const Descr_PuttySession As String = "Select a PuTTY session to be used when connecting."
Public Const Props_EncryrptionStrength As String = "Encryption Strength"
Public Const Descr_EncryptionStrength As String = "Select the encryption strength of the remote host."
Public Const Props_AuthenticationLevel As String = "Server authentication"
Public Const Descr_AuthenticationLevel As String = "Select which authentication level this connection should use."
Public Const Props_UseConsoleSession As String = "Use console session"
Public Const Descr_UseConsoleSession As String = "Connect to the console session of the remote host."
Public Const Props_Resolution As String = "Resolution"
Public Const Descr_Resolution As String = "Choose the resolution or mode this connection will open in."
Public Const Props_Colors As String = "Colors"
Public Const Descr_Colors As String = "Select the color quality to be used."
Public Const Props_CacheBitmaps As String = "Cache Bitmaps"
Public Const Descr_CacheBitmaps As String = "Select whether to use bitmap caching or not."
Public Const Props_DisplayWallpaper As String = "Display Wallpaper"
Public Const Descr_DisplayWallpaper As String = "Select yes if the wallpaper of the remote host should be displayed."
Public Const Props_DisplayThemes As String = "Display Themes"
Public Const Descr_DisplayThemes As String = "Select yes if the theme of the remote host should be displayed."
Public Const Props_RedKeyCombinations As String = "Key combinations"
Public Const Descr_RedKeyCombinations As String = "Select whether key combinations (ie. Alt+Tab) should be redirected to the remote host."
Public Const Props_RedDiskDrives As String = "Disk Drives"
Public Const Descr_RedDiskDrives As String = "Select whether local disk drives should be shown on the remote host."
Public Const Props_RedPrinters As String = "Printers"
Public Const Descr_RedPrinters As String = "Select whether local printers should be shown on the remote host."
Public Const Props_RedPorts As String = "Ports"
Public Const Descr_RedPorts As String = "Select whether local ports (ie. com, parallel) should be shown on the remote host."
Public Const Props_RedSmartCards As String = "Smart Cards"
Public Const Descr_RedSmartCards As String = "Select whether local Smart Cards should be available on the remote host."
Public Const Props_RedSounds As String = "Sounds"
Public Const Descr_RedSound As String = "Select how remote sound should be redirected."
Public Const Props_PreExtApp As String = "Pre Ext. App"
Public Const Descr_PreExtApp As String = "Select a Ext. App to be started before the connection to the remote host is established."
Public Const Props_PostExtApp As String = "Post Ext. App"
Public Const Descr_PostExtApp As String = "Select a Ext. App to be started after the disconnection to the remote host."
Public Const Props_Compression As String = "Compression"
Public Const Descr_Compression As String = "Select the compression value to be used."
Public Const Props_Encoding As String = "Encoding"
Public Const Descr_Encoding As String = "Select the encoding mode to be used."
Public Const Props_AuthMode As String = "Auth. Mode"
Public Const Descr_AuthMode As String = "Select how you want to authenticate against the VNC server."
Public Const Props_ProxyType As String = "Proxy Type"
Public Const Descr_ProxyType As String = "If you use a proxy to tunnel VNC connections, select which type it is."
Public Const Props_ProxyIP As String = "Proxy IP"
Public Const Descr_ProxyIP As String = "Enter the Proxy IP to be used."
Public Const Props_ProxyPort As String = "Proxy Port"
Public Const Descr_ProxyPort As String = "Enter the port the Proxy Server listens on."
Public Const Props_ProxyUsername As String = "Proxy Username"
Public Const Descr_ProxyUsername As String = "Enter your username for authenticating against the Proxy."
Public Const Props_ProxyPassword As String = "Proxy Password"
Public Const Descr_ProxyPassword As String = "Enter your password for authenticating against the Proxy."
Public Const Props_SmartSizeMode As String = "SmartSize Mode"
Public Const Descr_SmartSizeMode As String = "Select the SmartSize mode to be used."
Public Const Props_ViewOnly As String = "View Only"
Public Const Descr_ViewOnly As String = "If you want to establish a view-only connection to the host select yes."
Public Const Props_RenderingEngine As String = "Rendering Engine"
Public Const Descr_RenderingEngine As String = "Select one of the available rendering engines that will be used to display html."
Public Const Props_MacAddress As String = "MAC Address"
Public Const Descr_MacAddress As String = "Enter the MAC Address of the remote host if you wish to use it in Ext. Apps."
Public Const Props_UserField As String = "User Field"
Public Const Descr_UserField As String = "Feel free to enter any information you need here."
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"
@@ -73,17 +13,6 @@
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 Props_General As String = "General"
'Public Const Props_Display As String = "Display"
'Public Const Props_Connection As String = "Connection"
'Public Const Category_RDGateway As String = "Gateway"
'Public Const Props_Appearance As String = "Appearance"
'Public Const Props_Redirect As String = "Redirect"
'Public Const Props_Misc As String = "Misc"
Public Const Props_InheritEverything As String = "Inherit Everything"
Public Const Props_ExtApp As String = "Ext. App"
Public Const Descr_ExtApp As String = "Select the Ext. App to be started."
Public Const Aspect As String = "Aspect"
Public Const Free As String = "Free"
Public Const NoSmartSize As String = "No SmartSize"

View File

@@ -558,10 +558,10 @@
<data name="strMenuViewOnly" xml:space="preserve">
<value>View-Only (VNC)</value>
</data>
<data name="strPropertyDescriptionHostnameIP" xml:space="preserve">
<data name="strPropertyDescriptionAddress" xml:space="preserve">
<value>Der Hostname oder die IP zu der eine Verbinung aufgebaut werden soll.</value>
</data>
<data name="strPropertyNameHostnameIP" xml:space="preserve">
<data name="strPropertyNameAddress" xml:space="preserve">
<value>Hostname/IP</value>
</data>
<data name="strButtonIcon" xml:space="preserve">
@@ -692,4 +692,296 @@
<data name="strTabAppearance" xml:space="preserve">
<value>Aussehen</value>
</data>
<data name="strCategoryGeneral" xml:space="preserve">
<value>Generell</value>
</data>
<data name="strPropertyDescriptionAuthenticationLevel" xml:space="preserve">
<value>Wählen sie welche Authentifizierungs-Variante verwendet wird.</value>
</data>
<data name="strPropertyDescriptionAuthenticationMode" xml:space="preserve">
<value>Wählen sie wie sie sich am VNC server authentifizieren wollen.</value>
</data>
<data name="strPropertyDescriptionCacheBitmaps" xml:space="preserve">
<value>Wählen sie ob Bitmap caching zum Einsatz kommen soll.</value>
</data>
<data name="strPropertyDescriptionCompression" xml:space="preserve">
<value>Wählen sie die Kompressionsrate die verwendet werden soll.</value>
</data>
<data name="strPropertyDescriptionDisplayThemes" xml:space="preserve">
<value>Wählen sie ob Themen am Remote Host angezeigt werden sollen.</value>
</data>
<data name="strPropertyDescriptionDisplayWallpaper" xml:space="preserve">
<value>Wählen sie ob Hintergrundbilder am Remote Host angezeigt werden sollen.</value>
</data>
<data name="strPropertyDescriptionEncoding" xml:space="preserve">
<value>Wählen sie die Codierung die verwendet werden soll.</value>
</data>
<data name="strPropertyDescriptionEncryptionStrength" xml:space="preserve">
<value>Wählen sie die Verschlüsselungsstärke des Remote Hosts.</value>
</data>
<data name="strPropertyDescriptionExternalTool" xml:space="preserve">
<value>Wählen sie die Ext. App die gestartet werden soll.</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyDescriptionExternalToolAfter" xml:space="preserve">
<value>Wählen sie eine Ext. App die gestartet werden soll nachdem die Verbindung zum Remote Host getrennt wurde.</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyDescriptionExternalToolBefore" xml:space="preserve">
<value>Wählen sie eine Ext. App die gestartet werden soll bevor die Verbindung zum Remote Host aufgebaut wurde.</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyDescriptionMACAddress" xml:space="preserve">
<value>Geben sie die MAC Adresse des Remote Hosts ein (kann für Ext. Apps verwendet werden).</value>
</data>
<data name="strPropertyDescriptionPuttySession" xml:space="preserve">
<value>Wählen sie eine PuTTY session die bei Verbindung verwendet werden soll.</value>
</data>
<data name="strPropertyDescriptionRedirectDrives" xml:space="preserve">
<value>Wählen sie ob ihre lokalen Festplatten am Remote Host angezeigt werden sollen.</value>
</data>
<data name="strPropertyDescriptionRedirectKeys" xml:space="preserve">
<value>Wählen sie ob Tastenkombinationen wie z.B. Alt-Tab auf den Remote Host umgeleitet werden sollen.</value>
</data>
<data name="strPropertyDescriptionRedirectPorts" xml:space="preserve">
<value>Wählen sie ob ihre lokalen Ports wie z.B. COM, Parallel auf dem Remote Host angezeigt werden sollen.</value>
</data>
<data name="strPropertyDescriptionRedirectPrinters" xml:space="preserve">
<value>Wählen sie ob ihre lokalen Drucker am Remote Host angezeigt werden sollen.</value>
</data>
<data name="strPropertyDescriptionRedirectSmartCards" xml:space="preserve">
<value>Wählen sie ob ihre lokalen Smart Cards auf dem Remote Host zur Verfügung stehen sollen.</value>
</data>
<data name="strPropertyDescriptionRedirectSounds" xml:space="preserve">
<value>Wählen sie wie Töne auf dem Remote Host wiedergegeben werden sollen.</value>
</data>
<data name="strPropertyDescriptionRenderingEngine" xml:space="preserve">
<value>Wählen sie eine der Rendering Engines die verwendet wird um html darzustellen.</value>
</data>
<data name="strPropertyDescriptionResolution" xml:space="preserve">
<value>Wählen sie die Auflösung in welcher der Host geöffnet werden soll.</value>
</data>
<data name="strPropertyDescriptionSmartSizeMode" xml:space="preserve">
<value>Wählen sie den SmartSize Modus der verwendet werden soll.</value>
</data>
<data name="strPropertyDescriptionUseConsoleSession" xml:space="preserve">
<value>Zur Console Session des Remote Hosts verbinden.</value>
</data>
<data name="strPropertyDescriptionUser1" xml:space="preserve">
<value>Dieses Feld ist frei beschreibbar.</value>
</data>
<data name="strPropertyDescriptionViewOnly" xml:space="preserve">
<value>Wählen sie ob sie eine View-Only Verbindung aufbauen wollen.</value>
</data>
<data name="strPropertyDescriptionVNCProxyAddress" xml:space="preserve">
<value>Geben sie die IP des Proxy Servers ein.</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyDescriptionVNCProxyPassword" xml:space="preserve">
<value>Geben sie ihr Password ein.</value>
</data>
<data name="strPropertyDescriptionVNCProxyPort" xml:space="preserve">
<value>Geben sie den Port des Proxy Servers ein.</value>
</data>
<data name="strPropertyDescriptionVNCProxyType" xml:space="preserve">
<value>Wenn sie einen Proxy verwenden um auf den Remote Host zugreifen zu können, wählen sie hier den Typ.</value>
</data>
<data name="strPropertyDescriptionVNCProxyUsername" xml:space="preserve">
<value>Geben sie ihren Benutzernamen ein.</value>
</data>
<data name="strPropertyNameAuthenticationLevel" xml:space="preserve">
<value>Serverauthentifizierung</value>
</data>
<data name="strPropertyNameAuthenticationMode" xml:space="preserve">
<value>Authentication Mode</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameCacheBitmaps" xml:space="preserve">
<value>Bitmaps zwischenspeichern</value>
</data>
<data name="strPropertyNameCompression" xml:space="preserve">
<value>Kompremierung</value>
</data>
<data name="strPropertyNameDisplayThemes" xml:space="preserve">
<value>Themen anzeigen</value>
</data>
<data name="strPropertyNameDisplayWallpaper" xml:space="preserve">
<value>Hintergrundbild anzeigen</value>
</data>
<data name="strPropertyNameEncoding" xml:space="preserve">
<value>Codierung</value>
</data>
<data name="strPropertyNameEncryptionStrength" xml:space="preserve">
<value>Verschlüsselungsstärke</value>
</data>
<data name="strPropertyNameExternalTool" xml:space="preserve">
<value>External Tool</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameExternalToolAfter" xml:space="preserve">
<value>External Tool After</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameExternalToolBefore" xml:space="preserve">
<value>External Tool Before</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameInheritAll" xml:space="preserve">
<value>Alles vererben</value>
</data>
<data name="strPropertyNameInheritAuthenticationLevel" xml:space="preserve">
<value>Vererbe Serverauthentifizierung</value>
</data>
<data name="strPropertyNameInheritAuthenticationMode" xml:space="preserve">
<value>Vererbe Authentication Mode</value>
</data>
<data name="strPropertyNameInheritCacheBitmaps" xml:space="preserve">
<value>Vererbe Cache Bitmaps</value>
</data>
<data name="strPropertyNameInheritColors" xml:space="preserve">
<value>Vererbe Farben</value>
</data>
<data name="strPropertyNameInheritCompression" xml:space="preserve">
<value>Vererbe Kompremierung</value>
</data>
<data name="strPropertyNameInheritDisplayThemes" xml:space="preserve">
<value>Vererbe Display Themes</value>
</data>
<data name="strPropertyNameInheritDisplayWallpaper" xml:space="preserve">
<value>Vererbe Display Wallpaper</value>
</data>
<data name="strPropertyNameInheritEncoding" xml:space="preserve">
<value>Vererbe Codierung</value>
</data>
<data name="strPropertyNameInheritEncryptionStrength" xml:space="preserve">
<value>Vererbe Verschlüsselungsstärke</value>
</data>
<data name="strPropertyNameInheritExternalTool" xml:space="preserve">
<value>Vererbe External Tool</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameInheritExternalToolAfter" xml:space="preserve">
<value>Vererbe External Tool After</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameInheritExternalToolBefore" xml:space="preserve">
<value>Vererbe External Tool Before</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameInheritMACAddress" xml:space="preserve">
<value>Vererbe MAC Adresse</value>
</data>
<data name="strPropertyNameInheritPuttySession" xml:space="preserve">
<value>Vererbe PuTTY Session</value>
</data>
<data name="strPropertyNameInheritRedirectDrives" xml:space="preserve">
<value>Vererbe Disk Drives</value>
</data>
<data name="strPropertyNameInheritRedirectKeys" xml:space="preserve">
<value>Vererbe Key Combinations</value>
</data>
<data name="strPropertyNameInheritRedirectPorts" xml:space="preserve">
<value>Vererbe Ports</value>
</data>
<data name="strPropertyNameInheritRedirectPrinters" xml:space="preserve">
<value>Vererbe Printers</value>
</data>
<data name="strPropertyNameInheritRedirectSmartCards" xml:space="preserve">
<value>Vererbe Smart Cards</value>
</data>
<data name="strPropertyNameInheritRedirectSounds" xml:space="preserve">
<value>Vererbe Sounds</value>
</data>
<data name="strPropertyNameInheritRenderingEngine" xml:space="preserve">
<value>Vererbe Rendering Engine</value>
</data>
<data name="strPropertyNameInheritResolution" xml:space="preserve">
<value>Vererbe Resolution</value>
</data>
<data name="strPropertyNameInheritSmartSizeMode" xml:space="preserve">
<value>Vererbe SmartSize Modus</value>
</data>
<data name="strPropertyNameInheritUseConsoleSession" xml:space="preserve">
<value>Vererbe Verwende Console Session</value>
</data>
<data name="strPropertyNameInheritUser1" xml:space="preserve">
<value>Vererbe Benutzer Feld</value>
</data>
<data name="strPropertyNameInheritViewOnly" xml:space="preserve">
<value>Vererbe View-Only</value>
</data>
<data name="strPropertyNameInheritVNCProxyAddress" xml:space="preserve">
<value>Vererbe Proxy Address</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameInheritVNCProxyPassword" xml:space="preserve">
<value>Vererbe Proxy Passwort</value>
</data>
<data name="strPropertyNameInheritVNCProxyPort" xml:space="preserve">
<value>Vererbe Proxy Port</value>
</data>
<data name="strPropertyNameInheritVNCProxyType" xml:space="preserve">
<value>Vererbe Proxy Typ</value>
</data>
<data name="strPropertyNameInheritVNCProxyUsername" xml:space="preserve">
<value>Vererbe Proxy Benutzername</value>
</data>
<data name="strPropertyNameMACAddress" xml:space="preserve">
<value>MAC Adresse</value>
</data>
<data name="strPropertyNamePuttySession" xml:space="preserve">
<value>PuTTY Session</value>
</data>
<data name="strPropertyNameRedirectDrives" xml:space="preserve">
<value>Festplatten</value>
</data>
<data name="strPropertyNameRedirectKeys" xml:space="preserve">
<value>Tastenkombinationen</value>
</data>
<data name="strPropertyNameRedirectPorts" xml:space="preserve">
<value>Ports</value>
</data>
<data name="strPropertyNameRedirectPrinters" xml:space="preserve">
<value>Drucker</value>
</data>
<data name="strPropertyNameRedirectSmartCards" xml:space="preserve">
<value>Smart Cards</value>
</data>
<data name="strPropertyNameRedirectSounds" xml:space="preserve">
<value>Töne</value>
</data>
<data name="strPropertyNameRenderingEngine" xml:space="preserve">
<value>Rendering Engine</value>
</data>
<data name="strPropertyNameResolution" xml:space="preserve">
<value>Auflösung</value>
</data>
<data name="strPropertyNameSmartSizeMode" xml:space="preserve">
<value>SmartSize Modus</value>
</data>
<data name="strPropertyNameUseConsoleSession" xml:space="preserve">
<value>Verwende Console Session</value>
</data>
<data name="strPropertyNameUser1" xml:space="preserve">
<value>Benutzer Feld</value>
</data>
<data name="strPropertyNameViewOnly" xml:space="preserve">
<value>View-Only</value>
</data>
<data name="strPropertyNameVNCProxyAddress" xml:space="preserve">
<value>Proxy Address</value>
<comment>Need translation</comment>
</data>
<data name="strPropertyNameVNCProxyPassword" xml:space="preserve">
<value>Proxy Passwort</value>
</data>
<data name="strPropertyNameVNCProxyPort" xml:space="preserve">
<value>Proxy Port</value>
</data>
<data name="strPropertyNameVNCProxyType" xml:space="preserve">
<value>Proxy Typ</value>
</data>
<data name="strPropertyNameVNCProxyUsername" xml:space="preserve">
<value>Proxy Benutzername</value>
</data>
</root>

View File

@@ -123,4 +123,7 @@
<data name="strPropertyNameColors" xml:space="preserve">
<value>Colors</value>
</data>
<data name="strPropertyNameInheritColors" xml:space="preserve">
<value>Inherit Colors</value>
</data>
</root>

View File

@@ -969,6 +969,15 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to General.
'''</summary>
Friend ReadOnly Property strCategoryGeneral() As String
Get
Return ResourceManager.GetString("strCategoryGeneral", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Miscellaneous.
'''</summary>
@@ -2148,6 +2157,42 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Enter the hostname or ip you want to connect to..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionAddress() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select which authentication level this connection should use..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionAuthenticationLevel() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionAuthenticationLevel", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select how you want to authenticate against the VNC server..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionAuthenticationMode() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionAuthenticationMode", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select whether to use bitmap caching or not..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionCacheBitmaps() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionCacheBitmaps", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select the colour quality to be used..
'''</summary>
@@ -2157,6 +2202,15 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select the compression value to be used..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionCompression() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionCompression", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Put your notes or a description for the host here..
'''</summary>
@@ -2166,6 +2220,24 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select yes if the theme of the remote host should be displayed..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionDisplayThemes() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionDisplayThemes", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionDisplayWallpaper() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionDisplayWallpaper", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Enter your domain..
'''</summary>
@@ -2176,11 +2248,47 @@ Namespace My.Resources
End Property
'''<summary>
''' Looks up a localized string similar to Enter the hostname or ip you want to connect to..
''' Looks up a localized string similar to Select the encoding mode to be used..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionHostnameIP() As String
Friend ReadOnly Property strPropertyDescriptionEncoding() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionHostnameIP", resourceCulture)
Return ResourceManager.GetString("strPropertyDescriptionEncoding", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select the encryption strength of the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionEncryptionStrength() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionEncryptionStrength", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select the external tool to be started..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionExternalTool() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionExternalTool", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionExternalToolAfter() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionExternalToolAfter", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionExternalToolBefore() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionExternalToolBefore", resourceCulture)
End Get
End Property
@@ -2193,6 +2301,15 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' 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..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionMACAddress() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionMACAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to This is the name that will be displayed in the connections tree..
'''</summary>
@@ -2238,6 +2355,114 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select a PuTTY session to be used when connecting..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionPuttySession() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionPuttySession", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select whether local disk drives should be shown on the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionRedirectDrives() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionRedirectDrives", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionRedirectKeys() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionRedirectKeys", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionRedirectPorts() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionRedirectPorts", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select whether local printers should be shown on the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionRedirectPrinters() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionRedirectPrinters", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select whether local Smart Cards should be available on the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionRedirectSmartCards() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionRedirectSmartCards", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select how remote sound should be redirected..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionRedirectSounds() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionRedirectSounds", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionRenderingEngine() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionRenderingEngine", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Choose the resolution or mode this connection will open in..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionResolution() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionResolution", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Select the SmartSize mode to be used..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionSmartSizeMode() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionSmartSizeMode", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Connect to the console session of the remote host..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionUseConsoleSession() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionUseConsoleSession", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Feel free to enter any information you need here..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionUser1() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionUser1", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Enter your username..
'''</summary>
@@ -2247,6 +2472,96 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to If you want to establish a view only connection to the host select yes..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionViewOnly() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionViewOnly", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Enter the proxy address to be used..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionVNCProxyAddress() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionVNCProxyAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Enter your password for authenticating against the proxy..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionVNCProxyPassword() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionVNCProxyPassword", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Enter the port the proxy server listens on..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionVNCProxyPort() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionVNCProxyPort", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionVNCProxyType() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionVNCProxyType", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Enter your username for authenticating against the proxy..
'''</summary>
Friend ReadOnly Property strPropertyDescriptionVNCProxyUsername() As String
Get
Return ResourceManager.GetString("strPropertyDescriptionVNCProxyUsername", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Hostname/IP.
'''</summary>
Friend ReadOnly Property strPropertyNameAddress() As String
Get
Return ResourceManager.GetString("strPropertyNameAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Server Authentication.
'''</summary>
Friend ReadOnly Property strPropertyNameAuthenticationLevel() As String
Get
Return ResourceManager.GetString("strPropertyNameAuthenticationLevel", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Authentication Mode.
'''</summary>
Friend ReadOnly Property strPropertyNameAuthenticationMode() As String
Get
Return ResourceManager.GetString("strPropertyNameAuthenticationMode", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Cache Bitmaps.
'''</summary>
Friend ReadOnly Property strPropertyNameCacheBitmaps() As String
Get
Return ResourceManager.GetString("strPropertyNameCacheBitmaps", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Colours.
'''</summary>
@@ -2256,6 +2571,15 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Compression.
'''</summary>
Friend ReadOnly Property strPropertyNameCompression() As String
Get
Return ResourceManager.GetString("strPropertyNameCompression", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Description.
'''</summary>
@@ -2265,6 +2589,24 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Display Themes.
'''</summary>
Friend ReadOnly Property strPropertyNameDisplayThemes() As String
Get
Return ResourceManager.GetString("strPropertyNameDisplayThemes", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Display Wallpaper.
'''</summary>
Friend ReadOnly Property strPropertyNameDisplayWallpaper() As String
Get
Return ResourceManager.GetString("strPropertyNameDisplayWallpaper", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Domain.
'''</summary>
@@ -2275,11 +2617,47 @@ Namespace My.Resources
End Property
'''<summary>
''' Looks up a localized string similar to Hostname/IP.
''' Looks up a localized string similar to Encoding.
'''</summary>
Friend ReadOnly Property strPropertyNameHostnameIP() As String
Friend ReadOnly Property strPropertyNameEncoding() As String
Get
Return ResourceManager.GetString("strPropertyNameHostnameIP", resourceCulture)
Return ResourceManager.GetString("strPropertyNameEncoding", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Encryption Strength.
'''</summary>
Friend ReadOnly Property strPropertyNameEncryptionStrength() As String
Get
Return ResourceManager.GetString("strPropertyNameEncryptionStrength", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to External Tool.
'''</summary>
Friend ReadOnly Property strPropertyNameExternalTool() As String
Get
Return ResourceManager.GetString("strPropertyNameExternalTool", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to External Tool After.
'''</summary>
Friend ReadOnly Property strPropertyNameExternalToolAfter() As String
Get
Return ResourceManager.GetString("strPropertyNameExternalToolAfter", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to External Tool Before.
'''</summary>
Friend ReadOnly Property strPropertyNameExternalToolBefore() As String
Get
Return ResourceManager.GetString("strPropertyNameExternalToolBefore", resourceCulture)
End Get
End Property
@@ -2292,6 +2670,60 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit All.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritAll() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritAll", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Server Authentication.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritAuthenticationLevel() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritAuthenticationLevel", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Authentication Mode.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritAuthenticationMode() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritAuthenticationMode", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Cache Bitmaps.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritCacheBitmaps() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritCacheBitmaps", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Colours.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritColors() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritColors", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Compression.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritCompression() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritCompression", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Description.
'''</summary>
@@ -2301,6 +2733,24 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Display Themes.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritDisplayThemes() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritDisplayThemes", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Display Wallpaper.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritDisplayWallpaper() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritDisplayWallpaper", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Domain.
'''</summary>
@@ -2310,6 +2760,51 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Encoding.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritEncoding() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritEncoding", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Encryption Strength.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritEncryptionStrength() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritEncryptionStrength", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit External Tool.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritExternalTool() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritExternalTool", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit External Tool After.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritExternalToolAfter() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritExternalToolAfter", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit External Tool Before.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritExternalToolBefore() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritExternalToolBefore", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Icon.
'''</summary>
@@ -2319,6 +2814,15 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit MAC Address.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritMACAddress() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritMACAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Panel.
'''</summary>
@@ -2355,6 +2859,114 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit PuTTY Session.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritPuttySession() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritPuttySession", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Disk Drives.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritRedirectDrives() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritRedirectDrives", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Key Combinations.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritRedirectKeys() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritRedirectKeys", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Ports.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritRedirectPorts() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritRedirectPorts", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Printers.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritRedirectPrinters() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritRedirectPrinters", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Smart Cards.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritRedirectSmartCards() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritRedirectSmartCards", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Sounds.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritRedirectSounds() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritRedirectSounds", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Rendering Engine.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritRenderingEngine() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritRenderingEngine", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Resolution.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritResolution() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritResolution", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit SmartSize Mode.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritSmartSizeMode() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritSmartSizeMode", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Use Console Session.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritUseConsoleSession() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritUseConsoleSession", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit User Field.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritUser1() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritUser1", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Username.
'''</summary>
@@ -2364,6 +2976,69 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit View Only.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritViewOnly() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritViewOnly", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Proxy Address.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritVNCProxyAddress() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritVNCProxyAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Proxy Password.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritVNCProxyPassword() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritVNCProxyPassword", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Proxy Port.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritVNCProxyPort() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritVNCProxyPort", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Proxy Type.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritVNCProxyType() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritVNCProxyType", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Inherit Proxy Username.
'''</summary>
Friend ReadOnly Property strPropertyNameInheritVNCProxyUsername() As String
Get
Return ResourceManager.GetString("strPropertyNameInheritVNCProxyUsername", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to MAC Address.
'''</summary>
Friend ReadOnly Property strPropertyNameMACAddress() As String
Get
Return ResourceManager.GetString("strPropertyNameMACAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Name.
'''</summary>
@@ -2409,6 +3084,114 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to PuTTY Session.
'''</summary>
Friend ReadOnly Property strPropertyNamePuttySession() As String
Get
Return ResourceManager.GetString("strPropertyNamePuttySession", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Disk Drives.
'''</summary>
Friend ReadOnly Property strPropertyNameRedirectDrives() As String
Get
Return ResourceManager.GetString("strPropertyNameRedirectDrives", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Key Combinations.
'''</summary>
Friend ReadOnly Property strPropertyNameRedirectKeys() As String
Get
Return ResourceManager.GetString("strPropertyNameRedirectKeys", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Ports.
'''</summary>
Friend ReadOnly Property strPropertyNameRedirectPorts() As String
Get
Return ResourceManager.GetString("strPropertyNameRedirectPorts", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Printers.
'''</summary>
Friend ReadOnly Property strPropertyNameRedirectPrinters() As String
Get
Return ResourceManager.GetString("strPropertyNameRedirectPrinters", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Smart Cards.
'''</summary>
Friend ReadOnly Property strPropertyNameRedirectSmartCards() As String
Get
Return ResourceManager.GetString("strPropertyNameRedirectSmartCards", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Sounds.
'''</summary>
Friend ReadOnly Property strPropertyNameRedirectSounds() As String
Get
Return ResourceManager.GetString("strPropertyNameRedirectSounds", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Rendering Engine.
'''</summary>
Friend ReadOnly Property strPropertyNameRenderingEngine() As String
Get
Return ResourceManager.GetString("strPropertyNameRenderingEngine", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Resolution.
'''</summary>
Friend ReadOnly Property strPropertyNameResolution() As String
Get
Return ResourceManager.GetString("strPropertyNameResolution", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to SmartSize Mode.
'''</summary>
Friend ReadOnly Property strPropertyNameSmartSizeMode() As String
Get
Return ResourceManager.GetString("strPropertyNameSmartSizeMode", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Use Console Session.
'''</summary>
Friend ReadOnly Property strPropertyNameUseConsoleSession() As String
Get
Return ResourceManager.GetString("strPropertyNameUseConsoleSession", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to User Field.
'''</summary>
Friend ReadOnly Property strPropertyNameUser1() As String
Get
Return ResourceManager.GetString("strPropertyNameUser1", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Username.
'''</summary>
@@ -2418,6 +3201,60 @@ Namespace My.Resources
End Get
End Property
'''<summary>
''' Looks up a localized string similar to View Only.
'''</summary>
Friend ReadOnly Property strPropertyNameViewOnly() As String
Get
Return ResourceManager.GetString("strPropertyNameViewOnly", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Proxy Address.
'''</summary>
Friend ReadOnly Property strPropertyNameVNCProxyAddress() As String
Get
Return ResourceManager.GetString("strPropertyNameVNCProxyAddress", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Proxy Password.
'''</summary>
Friend ReadOnly Property strPropertyNameVNCProxyPassword() As String
Get
Return ResourceManager.GetString("strPropertyNameVNCProxyPassword", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Proxy Port.
'''</summary>
Friend ReadOnly Property strPropertyNameVNCProxyPort() As String
Get
Return ResourceManager.GetString("strPropertyNameVNCProxyPort", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Proxy Type.
'''</summary>
Friend ReadOnly Property strPropertyNameVNCProxyType() As String
Get
Return ResourceManager.GetString("strPropertyNameVNCProxyType", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Proxy Username.
'''</summary>
Friend ReadOnly Property strPropertyNameVNCProxyUsername() As String
Get
Return ResourceManager.GetString("strPropertyNameVNCProxyUsername", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Aspect.
'''</summary>

View File

@@ -916,10 +916,10 @@
<data name="strMenuViewOnly" xml:space="preserve">
<value>View Only (VNC)</value>
</data>
<data name="strPropertyDescriptionHostnameIP" xml:space="preserve">
<data name="strPropertyDescriptionAddress" xml:space="preserve">
<value>Enter the hostname or ip you want to connect to.</value>
</data>
<data name="strPropertyNameHostnameIP" xml:space="preserve">
<data name="strPropertyNameAddress" xml:space="preserve">
<value>Hostname/IP</value>
</data>
<data name="strButtonIcon" xml:space="preserve">
@@ -1048,4 +1048,283 @@
<data name="strTabAppearance" xml:space="preserve">
<value>Appearance</value>
</data>
<data name="strCategoryGeneral" xml:space="preserve">
<value>General</value>
</data>
<data name="strPropertyDescriptionAuthenticationLevel" xml:space="preserve">
<value>Select which authentication level this connection should use.</value>
</data>
<data name="strPropertyDescriptionAuthenticationMode" xml:space="preserve">
<value>Select how you want to authenticate against the VNC server.</value>
</data>
<data name="strPropertyDescriptionCacheBitmaps" xml:space="preserve">
<value>Select whether to use bitmap caching or not.</value>
</data>
<data name="strPropertyDescriptionCompression" xml:space="preserve">
<value>Select the compression value to be used.</value>
</data>
<data name="strPropertyDescriptionDisplayThemes" xml:space="preserve">
<value>Select yes if the theme of the remote host should be displayed.</value>
</data>
<data name="strPropertyDescriptionDisplayWallpaper" xml:space="preserve">
<value>Select yes if the wallpaper of the remote host should be displayed.</value>
</data>
<data name="strPropertyDescriptionEncoding" xml:space="preserve">
<value>Select the encoding mode to be used.</value>
</data>
<data name="strPropertyDescriptionEncryptionStrength" xml:space="preserve">
<value>Select the encryption strength of the remote host.</value>
</data>
<data name="strPropertyDescriptionExternalTool" xml:space="preserve">
<value>Select the external tool to be started.</value>
</data>
<data name="strPropertyDescriptionExternalToolAfter" xml:space="preserve">
<value>Select a external tool to be started after the disconnection to the remote host.</value>
</data>
<data name="strPropertyDescriptionExternalToolBefore" xml:space="preserve">
<value>Select a external tool to be started before the connection to the remote host is established.</value>
</data>
<data name="strPropertyDescriptionMACAddress" xml:space="preserve">
<value>Enter the MAC address of the remote host if you wish to use it in an external tool.</value>
</data>
<data name="strPropertyDescriptionPuttySession" xml:space="preserve">
<value>Select a PuTTY session to be used when connecting.</value>
</data>
<data name="strPropertyDescriptionRedirectDrives" xml:space="preserve">
<value>Select whether local disk drives should be shown on the remote host.</value>
</data>
<data name="strPropertyDescriptionRedirectKeys" xml:space="preserve">
<value>Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.</value>
</data>
<data name="strPropertyDescriptionRedirectPorts" xml:space="preserve">
<value>Select whether local ports (ie. com, parallel) should be shown on the remote host.</value>
</data>
<data name="strPropertyDescriptionRedirectPrinters" xml:space="preserve">
<value>Select whether local printers should be shown on the remote host.</value>
</data>
<data name="strPropertyDescriptionRedirectSmartCards" xml:space="preserve">
<value>Select whether local Smart Cards should be available on the remote host.</value>
</data>
<data name="strPropertyDescriptionRedirectSounds" xml:space="preserve">
<value>Select how remote sound should be redirected.</value>
</data>
<data name="strPropertyDescriptionRenderingEngine" xml:space="preserve">
<value>Select one of the available rendering engines that will be used to display HTML.</value>
</data>
<data name="strPropertyDescriptionResolution" xml:space="preserve">
<value>Choose the resolution or mode this connection will open in.</value>
</data>
<data name="strPropertyDescriptionSmartSizeMode" xml:space="preserve">
<value>Select the SmartSize mode to be used.</value>
</data>
<data name="strPropertyDescriptionUseConsoleSession" xml:space="preserve">
<value>Connect to the console session of the remote host.</value>
</data>
<data name="strPropertyDescriptionUser1" xml:space="preserve">
<value>Feel free to enter any information you need here.</value>
</data>
<data name="strPropertyDescriptionViewOnly" xml:space="preserve">
<value>If you want to establish a view only connection to the host select yes.</value>
</data>
<data name="strPropertyDescriptionVNCProxyAddress" xml:space="preserve">
<value>Enter the proxy address to be used.</value>
</data>
<data name="strPropertyDescriptionVNCProxyPassword" xml:space="preserve">
<value>Enter your password for authenticating against the proxy.</value>
</data>
<data name="strPropertyDescriptionVNCProxyPort" xml:space="preserve">
<value>Enter the port the proxy server listens on.</value>
</data>
<data name="strPropertyDescriptionVNCProxyType" xml:space="preserve">
<value>If you use a proxy to tunnel VNC connections, select which type it is.</value>
</data>
<data name="strPropertyDescriptionVNCProxyUsername" xml:space="preserve">
<value>Enter your username for authenticating against the proxy.</value>
</data>
<data name="strPropertyNameAuthenticationLevel" xml:space="preserve">
<value>Server Authentication</value>
</data>
<data name="strPropertyNameAuthenticationMode" xml:space="preserve">
<value>Authentication Mode</value>
</data>
<data name="strPropertyNameCacheBitmaps" xml:space="preserve">
<value>Cache Bitmaps</value>
</data>
<data name="strPropertyNameCompression" xml:space="preserve">
<value>Compression</value>
</data>
<data name="strPropertyNameDisplayThemes" xml:space="preserve">
<value>Display Themes</value>
</data>
<data name="strPropertyNameDisplayWallpaper" xml:space="preserve">
<value>Display Wallpaper</value>
</data>
<data name="strPropertyNameEncoding" xml:space="preserve">
<value>Encoding</value>
</data>
<data name="strPropertyNameEncryptionStrength" xml:space="preserve">
<value>Encryption Strength</value>
</data>
<data name="strPropertyNameExternalTool" xml:space="preserve">
<value>External Tool</value>
</data>
<data name="strPropertyNameExternalToolAfter" xml:space="preserve">
<value>External Tool After</value>
</data>
<data name="strPropertyNameExternalToolBefore" xml:space="preserve">
<value>External Tool Before</value>
</data>
<data name="strPropertyNameInheritAll" xml:space="preserve">
<value>Inherit All</value>
</data>
<data name="strPropertyNameInheritAuthenticationLevel" xml:space="preserve">
<value>Inherit Server Authentication</value>
</data>
<data name="strPropertyNameInheritAuthenticationMode" xml:space="preserve">
<value>Inherit Authentication Mode</value>
</data>
<data name="strPropertyNameInheritCacheBitmaps" xml:space="preserve">
<value>Inherit Cache Bitmaps</value>
</data>
<data name="strPropertyNameInheritColors" xml:space="preserve">
<value>Inherit Colours</value>
</data>
<data name="strPropertyNameInheritCompression" xml:space="preserve">
<value>Inherit Compression</value>
</data>
<data name="strPropertyNameInheritDisplayThemes" xml:space="preserve">
<value>Inherit Display Themes</value>
</data>
<data name="strPropertyNameInheritDisplayWallpaper" xml:space="preserve">
<value>Inherit Display Wallpaper</value>
</data>
<data name="strPropertyNameInheritEncoding" xml:space="preserve">
<value>Inherit Encoding</value>
</data>
<data name="strPropertyNameInheritEncryptionStrength" xml:space="preserve">
<value>Inherit Encryption Strength</value>
</data>
<data name="strPropertyNameInheritExternalTool" xml:space="preserve">
<value>Inherit External Tool</value>
</data>
<data name="strPropertyNameInheritExternalToolAfter" xml:space="preserve">
<value>Inherit External Tool After</value>
</data>
<data name="strPropertyNameInheritExternalToolBefore" xml:space="preserve">
<value>Inherit External Tool Before</value>
</data>
<data name="strPropertyNameInheritMACAddress" xml:space="preserve">
<value>Inherit MAC Address</value>
</data>
<data name="strPropertyNameInheritPuttySession" xml:space="preserve">
<value>Inherit PuTTY Session</value>
</data>
<data name="strPropertyNameInheritRedirectDrives" xml:space="preserve">
<value>Inherit Disk Drives</value>
</data>
<data name="strPropertyNameInheritRedirectKeys" xml:space="preserve">
<value>Inherit Key Combinations</value>
</data>
<data name="strPropertyNameInheritRedirectPorts" xml:space="preserve">
<value>Inherit Ports</value>
</data>
<data name="strPropertyNameInheritRedirectPrinters" xml:space="preserve">
<value>Inherit Printers</value>
</data>
<data name="strPropertyNameInheritRedirectSmartCards" xml:space="preserve">
<value>Inherit Smart Cards</value>
</data>
<data name="strPropertyNameInheritRedirectSounds" xml:space="preserve">
<value>Inherit Sounds</value>
</data>
<data name="strPropertyNameInheritRenderingEngine" xml:space="preserve">
<value>Inherit Rendering Engine</value>
</data>
<data name="strPropertyNameInheritResolution" xml:space="preserve">
<value>Inherit Resolution</value>
</data>
<data name="strPropertyNameInheritSmartSizeMode" xml:space="preserve">
<value>Inherit SmartSize Mode</value>
</data>
<data name="strPropertyNameInheritUseConsoleSession" xml:space="preserve">
<value>Inherit Use Console Session</value>
</data>
<data name="strPropertyNameInheritUser1" xml:space="preserve">
<value>Inherit User Field</value>
</data>
<data name="strPropertyNameInheritViewOnly" xml:space="preserve">
<value>Inherit View Only</value>
</data>
<data name="strPropertyNameInheritVNCProxyAddress" xml:space="preserve">
<value>Inherit Proxy Address</value>
</data>
<data name="strPropertyNameInheritVNCProxyPassword" xml:space="preserve">
<value>Inherit Proxy Password</value>
</data>
<data name="strPropertyNameInheritVNCProxyPort" xml:space="preserve">
<value>Inherit Proxy Port</value>
</data>
<data name="strPropertyNameInheritVNCProxyType" xml:space="preserve">
<value>Inherit Proxy Type</value>
</data>
<data name="strPropertyNameInheritVNCProxyUsername" xml:space="preserve">
<value>Inherit Proxy Username</value>
</data>
<data name="strPropertyNameMACAddress" xml:space="preserve">
<value>MAC Address</value>
</data>
<data name="strPropertyNamePuttySession" xml:space="preserve">
<value>PuTTY Session</value>
</data>
<data name="strPropertyNameRedirectDrives" xml:space="preserve">
<value>Disk Drives</value>
</data>
<data name="strPropertyNameRedirectKeys" xml:space="preserve">
<value>Key Combinations</value>
</data>
<data name="strPropertyNameRedirectPorts" xml:space="preserve">
<value>Ports</value>
</data>
<data name="strPropertyNameRedirectPrinters" xml:space="preserve">
<value>Printers</value>
</data>
<data name="strPropertyNameRedirectSmartCards" xml:space="preserve">
<value>Smart Cards</value>
</data>
<data name="strPropertyNameRedirectSounds" xml:space="preserve">
<value>Sounds</value>
</data>
<data name="strPropertyNameRenderingEngine" xml:space="preserve">
<value>Rendering Engine</value>
</data>
<data name="strPropertyNameResolution" xml:space="preserve">
<value>Resolution</value>
</data>
<data name="strPropertyNameSmartSizeMode" xml:space="preserve">
<value>SmartSize Mode</value>
</data>
<data name="strPropertyNameUseConsoleSession" xml:space="preserve">
<value>Use Console Session</value>
</data>
<data name="strPropertyNameUser1" xml:space="preserve">
<value>User Field</value>
</data>
<data name="strPropertyNameViewOnly" xml:space="preserve">
<value>View Only</value>
</data>
<data name="strPropertyNameVNCProxyAddress" xml:space="preserve">
<value>Proxy Address</value>
</data>
<data name="strPropertyNameVNCProxyPassword" xml:space="preserve">
<value>Proxy Password</value>
</data>
<data name="strPropertyNameVNCProxyPort" xml:space="preserve">
<value>Proxy Port</value>
</data>
<data name="strPropertyNameVNCProxyType" xml:space="preserve">
<value>Proxy Type</value>
</data>
<data name="strPropertyNameVNCProxyUsername" xml:space="preserve">
<value>Proxy Username</value>
</data>
</root>

View File

@@ -451,9 +451,9 @@ Namespace UI
If conIcon IsNot Nothing Then
Me.btnIcon.Image = conIcon.ToBitmap
End If
Case Language.Base.Props_PuttySession
Case My.Resources.strPropertyNamePuttySession
mRemote.Connection.PuttySession.PuttySessions = mRemote.Connection.Protocol.PuttyBase.GetSessions()
Case My.Resources.strPropertyNameHostnameIP
Case My.Resources.strPropertyNameAddress
Me.SetHostStatus(Me.pGrid.SelectedObject)
End Select