From c6caa6aae7c16c6af504070ffff3d395ecdfbd32 Mon Sep 17 00:00:00 2001 From: perploug Date: Wed, 20 Nov 2013 15:59:25 +0100 Subject: [PATCH] Missing dictionary items --- src/Umbraco.Web.UI/umbraco/config/lang/en.xml | 2 +- src/Umbraco.Web/Models/Mapping/TabsAndPropertiesResolver.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml index 6594d4802a..c73a4acba7 100644 --- a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml +++ b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml @@ -127,7 +127,7 @@ Alternative Links Click to edit this item Created by - Original autho + Original author Updated by Created Date/time this document was created diff --git a/src/Umbraco.Web/Models/Mapping/TabsAndPropertiesResolver.cs b/src/Umbraco.Web/Models/Mapping/TabsAndPropertiesResolver.cs index b4fcb412c4..b0f55a7858 100644 --- a/src/Umbraco.Web/Models/Mapping/TabsAndPropertiesResolver.cs +++ b/src/Umbraco.Web/Models/Mapping/TabsAndPropertiesResolver.cs @@ -68,7 +68,7 @@ namespace Umbraco.Web.Models.Mapping { Alias = string.Format("{0}creator", Constants.PropertyEditors.InternalGenericPropertiesPrefix), Label = ui.Text("content", "createBy"), - Description = "Original author", //TODO: Localize this + Description = ui.Text("content", "createByDesc"), //TODO: Localize this Value = display.Owner.Name, View = labelEditor }, @@ -76,7 +76,7 @@ namespace Umbraco.Web.Models.Mapping { Alias = string.Format("{0}createdate", Constants.PropertyEditors.InternalGenericPropertiesPrefix), Label = ui.Text("content", "createDate"), - Description = "Date/time this document was created", //TODO: Localize this + Description = ui.Text("content", "createDateDesc"), Value = display.CreateDate.ToIsoString(), View = labelEditor }, @@ -84,7 +84,7 @@ namespace Umbraco.Web.Models.Mapping { Alias = string.Format("{0}updatedate", Constants.PropertyEditors.InternalGenericPropertiesPrefix), Label = ui.Text("content", "updateDate"), - Description = "Date/time this document was created", //TODO: Localize this + Description = ui.Text("content", "updateDateDesc"), Value = display.UpdateDate.ToIsoString(), View = labelEditor },