From aacae5451cdd341d8cea54ce0806923c04c1ca1f Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Fri, 28 Mar 2014 11:32:50 +0100 Subject: [PATCH] Renamed 'List Definition' to just 'List'. --- .../Modules/Orchard.Lists/Views/Admin/Index.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.Lists/Views/Admin/Index.cshtml b/src/Orchard.Web/Modules/Orchard.Lists/Views/Admin/Index.cshtml index f8c069eaf..72af8aa5a 100644 --- a/src/Orchard.Web/Modules/Orchard.Lists/Views/Admin/Index.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Lists/Views/Admin/Index.cshtml @@ -3,10 +3,10 @@ Layout.Title = T("Manage Lists"); }
- @Html.ActionLink(T("New List Definition").ToString(), "Create", new { area = "Orchard.Lists" }, new { @class = "button primaryAction" }) + @Html.ActionLink(T("New List").ToString(), "Create", new { area = "Orchard.Lists" }, new { @class = "button primaryAction" })
@if (Model.Lists.Items.Count == 0) { -
@T("There are no list definitions yet. Create a List Definition.", Url.Action("Create", "Admin", new { id = "", area = "Orchard.Lists" }))
+
@T("There are no lists yet. Create a List.", Url.Action("Create", "Admin", new { id = "", area = "Orchard.Lists" }))
} else { using (Html.BeginFormAntiForgeryPost()) {