diff --git a/mRemoteV1/Resources/Language/Language.Designer.cs b/mRemoteV1/Resources/Language/Language.Designer.cs index f860b8a3b..de0efbd7e 100644 --- a/mRemoteV1/Resources/Language/Language.Designer.cs +++ b/mRemoteV1/Resources/Language/Language.Designer.cs @@ -348,6 +348,15 @@ namespace mRemoteNG { } } + /// + /// Looks up a localized string similar to Back. + /// + internal static string strBack { + get { + return ResourceManager.GetString("strBack", resourceCulture); + } + } + /// /// Looks up a localized string similar to &Browse.... /// @@ -1301,6 +1310,15 @@ namespace mRemoteNG { } } + /// + /// Looks up a localized string similar to Connection file path. + /// + internal static string strConnectionFilePath { + get { + return ResourceManager.GetString("strConnectionFilePath", resourceCulture); + } + } + /// /// Looks up a localized string similar to Opening connection failed!. /// @@ -1484,6 +1502,15 @@ namespace mRemoteNG { } } + /// + /// Looks up a localized string similar to Create and open new file. + /// + internal static string strCreateAndOpenNewFile { + get { + return ResourceManager.GetString("strCreateAndOpenNewFile", resourceCulture); + } + } + /// /// Looks up a localized string similar to Credential Editor. /// @@ -1502,6 +1529,17 @@ namespace mRemoteNG { } } + /// + /// 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.. + /// + internal static string strCredentialManagerUpgradeDescription { + get { + return ResourceManager.GetString("strCredentialManagerUpgradeDescription", resourceCulture); + } + } + /// /// Looks up a localized string similar to Installed version. /// @@ -3829,6 +3867,15 @@ namespace mRemoteNG { } } + /// + /// Looks up a localized string similar to Open a different file. + /// + internal static string strOpenADifferentFile { + get { + return ResourceManager.GetString("strOpenADifferentFile", resourceCulture); + } + } + /// /// Looks up a localized string similar to Open File. /// @@ -7055,6 +7102,15 @@ namespace mRemoteNG { } } + /// + /// Looks up a localized string similar to Upgrade. + /// + internal static string strUpgrade { + get { + return ResourceManager.GetString("strUpgrade", resourceCulture); + } + } + /// /// Looks up a localized string similar to Use Default. /// diff --git a/mRemoteV1/Resources/Language/Language.resx b/mRemoteV1/Resources/Language/Language.resx index b623ce86b..7fe052147 100644 --- a/mRemoteV1/Resources/Language/Language.resx +++ b/mRemoteV1/Resources/Language/Language.resx @@ -2547,4 +2547,24 @@ mRemoteNG will now quit and begin with the installation. Credentials + + Upgrade + + + Back + + + Connection file path + + + Create and open new file + + + Open a different file + + + 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. + \ No newline at end of file diff --git a/mRemoteV1/UI/Forms/CredentialManagerUpgradeForm.cs b/mRemoteV1/UI/Forms/CredentialManagerUpgradeForm.cs index f3d0dce14..1804acb2f 100644 --- a/mRemoteV1/UI/Forms/CredentialManagerUpgradeForm.cs +++ b/mRemoteV1/UI/Forms/CredentialManagerUpgradeForm.cs @@ -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()