AWOMuensterlandRecklinghausen/Service/CustomTranslationDictionary - Weitere Eigenschaften Planungsdetails umbenannt

This commit is contained in:
2026-03-13 13:38:47 +01:00
parent aff1829c43
commit e20af24af8
2 changed files with 26 additions and 0 deletions

View File

@@ -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>

View File

@@ -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;
}
}
}