created language resources for some new entries in the cred upgrader form

This commit is contained in:
David Sparer
2017-05-07 21:31:22 -06:00
parent 5eebcd01ef
commit b8002ce577
3 changed files with 84 additions and 8 deletions

View File

@@ -348,6 +348,15 @@ namespace mRemoteNG {
}
}
/// <summary>
/// Looks up a localized string similar to Back.
/// </summary>
internal static string strBack {
get {
return ResourceManager.GetString("strBack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Browse....
/// </summary>
@@ -1301,6 +1310,15 @@ namespace mRemoteNG {
}
}
/// <summary>
/// Looks up a localized string similar to Connection file path.
/// </summary>
internal static string strConnectionFilePath {
get {
return ResourceManager.GetString("strConnectionFilePath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Opening connection failed!.
/// </summary>
@@ -1484,6 +1502,15 @@ namespace mRemoteNG {
}
}
/// <summary>
/// Looks up a localized string similar to Create and open new file.
/// </summary>
internal static string strCreateAndOpenNewFile {
get {
return ResourceManager.GetString("strCreateAndOpenNewFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Credential Editor.
/// </summary>
@@ -1502,6 +1529,17 @@ namespace mRemoteNG {
}
}
/// <summary>
/// Looks up a localized string similar to In v1.76 we have introduced a credential management system. This feature requires a significant change in how we store and interact with credentials within mRemoteNG. You will be required to perform a one-way upgrade of your mRemoteNG connections file.
///
///This page will walk you through the process of upgrading your connections file or give you a chance to open a different connections file if you do not want to perform the upgrade..
/// </summary>
internal static string strCredentialManagerUpgradeDescription {
get {
return ResourceManager.GetString("strCredentialManagerUpgradeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Installed version.
/// </summary>
@@ -3829,6 +3867,15 @@ namespace mRemoteNG {
}
}
/// <summary>
/// Looks up a localized string similar to Open a different file.
/// </summary>
internal static string strOpenADifferentFile {
get {
return ResourceManager.GetString("strOpenADifferentFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open File.
/// </summary>
@@ -7055,6 +7102,15 @@ namespace mRemoteNG {
}
}
/// <summary>
/// Looks up a localized string similar to Upgrade.
/// </summary>
internal static string strUpgrade {
get {
return ResourceManager.GetString("strUpgrade", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use Default.
/// </summary>

View File

@@ -2547,4 +2547,24 @@ mRemoteNG will now quit and begin with the installation.</value>
<data name="Credentials" xml:space="preserve">
<value>Credentials</value>
</data>
<data name="strUpgrade" xml:space="preserve">
<value>Upgrade</value>
</data>
<data name="strBack" xml:space="preserve">
<value>Back</value>
</data>
<data name="strConnectionFilePath" xml:space="preserve">
<value>Connection file path</value>
</data>
<data name="strCreateAndOpenNewFile" xml:space="preserve">
<value>Create and open new file</value>
</data>
<data name="strOpenADifferentFile" xml:space="preserve">
<value>Open a different file</value>
</data>
<data name="strCredentialManagerUpgradeDescription" xml:space="preserve">
<value>In v1.76 we have introduced a credential management system. This feature requires a significant change in how we store and interact with credentials within mRemoteNG. You will be required to perform a one-way upgrade of your mRemoteNG connections file.
This page will walk you through the process of upgrading your connections file or give you a chance to open a different connections file if you do not want to perform the upgrade.</value>
</data>
</root>

View File

@@ -19,20 +19,20 @@ namespace mRemoteNG.UI.Forms
private void ApplyLanguage()
{
// tab 1
labelDescriptionOfUpgrade.Text = "In v1.76 we have introduced a credential management system. This feature requires a significant change in how we store and interact with credentials within mRemoteNG. You will be required to perform a one-way upgrade of your mRemoteNG connections file.\r\n\r\nThis page will walk you through the process of upgrading your connections file or give you a chance to open a different connections file if you do not want to perform the upgrade.";
labelConfConsPathHeaderOnTab1.Text = "Connection file path:";
buttonPerformUpgrade.Text = "Upgrade";
buttonOpenFile.Text = "Open a different file";
buttonNewFile.Text = "Create and open new file";
labelDescriptionOfUpgrade.Text = Language.strCredentialManagerUpgradeDescription;
labelConfConsPathHeaderOnTab1.Text = $"{Language.strConnectionFilePath}:";
buttonPerformUpgrade.Text = Language.strUpgrade;
buttonOpenFile.Text = Language.strOpenADifferentFile;
buttonNewFile.Text = Language.strCreateAndOpenNewFile;
buttonExit.Text = Language.strMenuExit;
// tab 2
labelConfConsPathHeaderOnTab2.Text = "Connection file path:";
labelConfConsPathHeaderOnTab2.Text = $"{Language.strConnectionFilePath}:";
labelWhereToSaveCredFile.Text = "Where should we save the new credential file?";
labelSetPassword.Text = "Set password for the credential repository";
buttonNewRepoPathBrowse.Text = Language.strButtonBrowse;
buttonBack.Text = "Back";
buttonExecuteUpgrade.Text = "Upgrade";
buttonBack.Text = Language.strBack;
buttonExecuteUpgrade.Text = Language.strUpgrade;
}
private void SetValues()