diff --git a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml index 87035578a..fb6dc30b1 100644 --- a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml +++ b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml @@ -1,7 +1,7 @@ @model OwnerEditorViewModel @using Orchard.Core.Common.ViewModels;
- @Html.LabelFor(m=>m.Owner) + @Html.LabelFor(m => m.Owner, T("Owner")) @Html.EditorFor(m=>m.Owner) @Html.ValidationMessageFor(m=>m.Owner)
\ No newline at end of file diff --git a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml index 0fe8b6b78..483135db2 100644 --- a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml +++ b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml @@ -3,7 +3,7 @@ @{ Script.Require("Slugify"); }
- @Html.LabelFor(m => m.Title) + @Html.LabelFor(m => m.Title, T("Title")) @Html.TextBoxFor(m => m.Title, new { @class = "large text" })