Rename 'Orphan items' to 'No list' for 'view from' dropdown in list management view.

--HG--
branch : dev
This commit is contained in:
Dave Reed
2011-03-25 16:01:17 -07:00
parent 1686ccc007
commit e87511cea1

View File

@@ -19,7 +19,7 @@
Value = contentItem.Id.ToString(System.Globalization.CultureInfo.InvariantCulture),
Selected = contentItem.Id == sourceContainerId
}).ToList();
sourceContainers.Insert(0, new SelectListItem { Text = T("Orphan items").ToString(), Value = "" });
sourceContainers.Insert(0, new SelectListItem { Text = T("No list").ToString(), Value = "" });
}
@using (Html.BeginFormAntiForgeryPost()) {