From a7cd18c3d23bddc6e17b4d3110b1c9580aba9259 Mon Sep 17 00:00:00 2001 From: perploug Date: Thu, 28 Nov 2013 13:20:52 +0100 Subject: [PATCH] The section mapping was reversed, so werent translated --- src/Umbraco.Web/Models/Mapping/SectionModelMapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Models/Mapping/SectionModelMapper.cs b/src/Umbraco.Web/Models/Mapping/SectionModelMapper.cs index 20dfa544ac..4f6015967d 100644 --- a/src/Umbraco.Web/Models/Mapping/SectionModelMapper.cs +++ b/src/Umbraco.Web/Models/Mapping/SectionModelMapper.cs @@ -10,7 +10,7 @@ namespace Umbraco.Web.Models.Mapping { public override void ConfigureMappings(IConfiguration config, ApplicationContext applicationContext) { - config.CreateMap() + config.CreateMap() .ForMember( dto => dto.Name, expression => expression.MapFrom(section => ui.Text("sections", section.Alias)))