Added missing description for password protect field in root node, fixes #617

This commit is contained in:
Faryan Rezagholi
2019-09-01 18:00:39 +02:00
parent e12d20ab85
commit 8ecb49709e
19 changed files with 8316 additions and 8297 deletions

View File

@@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- #1426: Tabbing is reversed in config window
- #1425: Connections didn't always respect the panel property
- #841: Allow for sorting in port scan results
- #617: Added missing description for password protect field in root node
- #553: Browser language not set when using Gecko rendering engine
- #323: Wallpaper always shows in RDP connections, even when turned off

View File

@@ -5617,17 +5617,6 @@ namespace mRemoteNG
}
}
/// <summary>
/// Looks up a localized string similar to Password protect.
/// </summary>
internal static string strPasswordProtect
{
get
{
return ResourceManager.GetString("strPasswordProtect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both passwords must match..
/// </summary>
@@ -6013,6 +6002,17 @@ namespace mRemoteNG
}
}
/// <summary>
/// Looks up a localized string similar to Set a password needed to encrypt the connection file with. You will be prompted to enter your passcode before starting mRemoteNG..
/// </summary>
internal static string strPropertyDescriptionPasswordProtect
{
get
{
return ResourceManager.GetString("strPropertyDescriptionPasswordProtect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enter the port the selected protocol is listening on..
/// </summary>
@@ -6684,6 +6684,17 @@ namespace mRemoteNG
}
}
/// <summary>
/// Looks up a localized string similar to Password protect.
/// </summary>
internal static string strPropertyNamePasswordProtect
{
get
{
return ResourceManager.GetString("strPropertyNamePasswordProtect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Port.
/// </summary>

File diff suppressed because it is too large Load Diff

View File

@@ -1184,7 +1184,7 @@ Wenn Sie Fehler feststellen, dann sollten Sie eine neue Verbindungsdatei erstell
<data name="strPanelName" xml:space="preserve">
<value>Panel-Name</value>
</data>
<data name="strPasswordProtect" xml:space="preserve">
<data name="strPropertyNamePasswordProtect" xml:space="preserve">
<value>Passwortschutz</value>
</data>
<data name="strPleaseFillAllFields" xml:space="preserve">
@@ -2687,4 +2687,7 @@ Development umfasst Alphas, Betas und Release Candidates.</value>
<data name="strStartMinimized" xml:space="preserve">
<value>Minimiert starten</value>
</data>
<data name="strPropertyDescriptionPasswordProtect" xml:space="preserve">
<value>Legen Sie ein Kennwort fest, mit dem die Verbindungsdatei verschlüsselt werden soll. Sie werden aufgefordert Ihr Passwort einzugeben, bevor Sie mRemoteNG starten.</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1180,7 +1180,7 @@ Starter med ny tilkoblingsfil.</value>
<data name="strPanelName" xml:space="preserve">
<value>Panelnavn</value>
</data>
<data name="strPasswordProtect" xml:space="preserve">
<data name="strPropertyNamePasswordProtect" xml:space="preserve">
<value>Passordbeskyttelse</value>
</data>
<data name="strPleaseFillAllFields" xml:space="preserve">

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1336,7 +1336,7 @@ If you run into such an error, please create a new connection file!</value>
<data name="strPanelName" xml:space="preserve">
<value>Panel Name</value>
</data>
<data name="strPasswordProtect" xml:space="preserve">
<data name="strPropertyNamePasswordProtect" xml:space="preserve">
<value>Password protect</value>
</data>
<data name="strPasswordStatusMustMatch" xml:space="preserve">
@@ -2822,4 +2822,7 @@ Development Channel includes Alphas, Betas &amp; Release Candidates.</value>
<data name="strStartMinimized" xml:space="preserve">
<value>Start minimized</value>
</data>
<data name="strPropertyDescriptionPasswordProtect" xml:space="preserve">
<value>Set a password needed to encrypt the connection file with. You will be prompted to enter your passcode before starting mRemoteNG.</value>
</data>
</root>

View File

@@ -1187,7 +1187,7 @@ VncSharp Control Version {0}</value>
<data name="strPanelName" xml:space="preserve">
<value>Название группы</value>
</data>
<data name="strPasswordProtect" xml:space="preserve">
<data name="strPropertyNamePasswordProtect" xml:space="preserve">
<value>Защита паролем</value>
</data>
<data name="strPleaseFillAllFields" xml:space="preserve">

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1339,7 +1339,7 @@ VncSharp 版本 {0}</value>
<data name="strPanelName" xml:space="preserve">
<value>面板名称</value>
</data>
<data name="strPasswordProtect" xml:space="preserve">
<data name="strPropertyNamePasswordProtect" xml:space="preserve">
<value>密码保护</value>
</data>
<data name="strPasswordStatusMustMatch" xml:space="preserve">

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.ComponentModel;
using mRemoteNG.Connection;
using mRemoteNG.Container;
@@ -27,27 +27,28 @@ namespace mRemoteNG.Tree.Root
#region Public Properties
[LocalizedAttributes.LocalizedCategory("strCategoryDisplay"),
[LocalizedAttributes.LocalizedCategory("strCategoryMiscellaneous"),
Browsable(true),
LocalizedAttributes.LocalizedDefaultValue("strConnections"),
LocalizedAttributes.LocalizedDisplayName("strPropertyNameName"),
LocalizedAttributes.LocalizedDescription("strPropertyDescriptionName")]
public override string Name
{
get { return _name; }
set { _name = value; }
get => _name;
set => _name = value;
}
[LocalizedAttributes.LocalizedCategory("strCategoryDisplay"),
[LocalizedAttributes.LocalizedCategory("strCategoryMiscellaneous"),
Browsable(true),
LocalizedAttributes.LocalizedDisplayName("strPasswordProtect"),
LocalizedAttributes.LocalizedDisplayName("strPropertyNamePasswordProtect"),
LocalizedAttributes.LocalizedDescription("strPropertyDescriptionPasswordProtect"),
TypeConverter(typeof(MiscTools.YesNoTypeConverter))]
public new bool Password { get; set; }
[Browsable(false)]
public string PasswordString
{
get { return Password ? _customPassword : DefaultPassword; }
get => Password ? _customPassword : DefaultPassword;
set
{
_customPassword = value;