AWOMuensterlandRecklinghausen/Service/CustomTranslationDictionary - Weitere Eigenschaften Planungsdetails umbenannt
This commit is contained in:
@@ -98,6 +98,7 @@
|
||||
<Compile Include="SbdRechnung2024.designer.cs">
|
||||
<DependentUpon>SbdRechnung2024.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Service\CustomTranslationDictionary.cs" />
|
||||
<Compile Include="StatusCheckAbrechnung.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
using BeWo.Data.Access;
|
||||
using BeWo.Data.Entities;
|
||||
using BeWo.Service.DCEntityMapper;
|
||||
using BeWo.Service.Plugins;
|
||||
using BS.Shared;
|
||||
using BS.Shared.Core;
|
||||
using BS.Shared.DataContracts.Compact;
|
||||
using BS.Shared.Extensions;
|
||||
|
||||
namespace AutismusKoelnBonn.Translation
|
||||
{
|
||||
public class CustomTranslationDictionary : TranslationDictionary
|
||||
{
|
||||
public override Dictionary<String, String> GetTranslationDictionary()
|
||||
{
|
||||
var dict = base.GetTranslationDictionary();
|
||||
AddOrReplaceTranslation(dict, "CustomerVarFieldsTitle", "Planungsdetails");
|
||||
return dict;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user