From 00dc6ab13cd1066bf5974e815d21019922d2757f Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Sun, 19 Jul 2015 23:06:10 +0100 Subject: [PATCH] Minor UI changes. --- .../EditorTemplates/ImportActions/UploadRecipe.cshtml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/UploadRecipe.cshtml b/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/UploadRecipe.cshtml index 807b0e455..d33479db1 100644 --- a/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/UploadRecipe.cshtml +++ b/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ImportActions/UploadRecipe.cshtml @@ -5,8 +5,8 @@ } @{ var importOptions = new SelectListItem[] { - new SelectListItem { Text = T("Import").ToString(), Value = "false", Selected = !Model.ResetSite}, - new SelectListItem { Text = T("Reset Site and run Setup").ToString(), Value = "true", Selected = Model.ResetSite}, + new SelectListItem { Text = T("Import the uploaded recipe").ToString(), Value = "false", Selected = !Model.ResetSite}, + new SelectListItem { Text = T("Reset the site and run setup using the uploaded recipe").ToString(), Value = "true", Selected = Model.ResetSite}, }; }

@@ -34,12 +34,12 @@

@T("This will delete your database tables. Please consider creating a backup first.")
@Html.LabelFor(m => m.SuperUserPassword, T("Super User Password")) - @Html.PasswordFor(m => m.SuperUserPassword, new {@class = "text medium"}) + @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.LabelFor(m => m.SuperUserPasswordConfirmation, T("Confirm Super User Password")) - @Html.PasswordFor(m => m.SuperUserPasswordConfirmation, new {@class = "text medium"}) + @Html.PasswordFor(m => m.SuperUserPasswordConfirmation, new {@class = "text"}) @Html.Hint(T("Repeat the password to make sure you didn't mistype anything."))