diff --git a/ReportImp/AWOMuensterlandRecklinghausen/AWOMuensterlandRecklinghausen.csproj b/ReportImp/AWOMuensterlandRecklinghausen/AWOMuensterlandRecklinghausen.csproj index 92f251dad..70a85c0ad 100644 --- a/ReportImp/AWOMuensterlandRecklinghausen/AWOMuensterlandRecklinghausen.csproj +++ b/ReportImp/AWOMuensterlandRecklinghausen/AWOMuensterlandRecklinghausen.csproj @@ -98,6 +98,7 @@ SbdRechnung2024.cs + Component diff --git a/ReportImp/AWOMuensterlandRecklinghausen/Service/CustomTranslationDictionary.cs b/ReportImp/AWOMuensterlandRecklinghausen/Service/CustomTranslationDictionary.cs new file mode 100644 index 000000000..aef44e1d9 --- /dev/null +++ b/ReportImp/AWOMuensterlandRecklinghausen/Service/CustomTranslationDictionary.cs @@ -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 GetTranslationDictionary() + { + var dict = base.GetTranslationDictionary(); + AddOrReplaceTranslation(dict, "CustomerVarFieldsTitle", "Planungsdetails"); + return dict; + } + } +}