From b560a4c3d037a38ac36cb754381f0057d50957bb Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Sat, 22 Aug 2015 23:35:45 +0100 Subject: [PATCH] Corrected labels on import screen. --- .../EditorTemplates/ImportActions/ExecuteRecipe.cshtml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/ExecuteRecipe.cshtml b/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/ExecuteRecipe.cshtml index 93bd8d971..f4a8a4852 100644 --- a/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/ExecuteRecipe.cshtml +++ b/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/ExecuteRecipe.cshtml @@ -33,12 +33,12 @@
m.ResetSite), "true")" style="display: none;">
@T("This will delete your database tables. Please consider creating a backup first.")
- @Html.LabelFor(m => m.SuperUserPassword, T("Super User Password")) + @Html.LabelFor(m => m.SuperUserPassword, T("Site Owner Password")) @Html.PasswordFor(m => m.SuperUserPassword, new {@class = "text"}) - @Html.Hint(T("Specify a new password for the super user in case your recipe doesn't contain the current super user.")) + @Html.Hint(T("Specify a new password for the site owner in case your recipe doesn't contain the current site owner."))
- @Html.LabelFor(m => m.SuperUserPasswordConfirmation, T("Confirm Super User Password")) + @Html.LabelFor(m => m.SuperUserPasswordConfirmation, T("Confirm Site Owner Password")) @Html.PasswordFor(m => m.SuperUserPasswordConfirmation, new {@class = "text"}) @Html.Hint(T("Repeat the password to make sure you didn't mistype anything."))