From 5e77f58e66a2382dcc375f1b3e52ffbd7feae6fe Mon Sep 17 00:00:00 2001 From: Alexandra Date: Fri, 2 Aug 2024 10:35:18 +0200 Subject: [PATCH] ZukunftLeben/Translation/TranslationDictionary.cs - Notizfeld HP umbenannt --- .../Translation/TranslationDictionary.cs | 25 +++++++++++++++++++ ReportImp/ZukunftLeben/ZukunftLeben.csproj | 1 + 2 files changed, 26 insertions(+) create mode 100644 ReportImp/ZukunftLeben/Translation/TranslationDictionary.cs diff --git a/ReportImp/ZukunftLeben/Translation/TranslationDictionary.cs b/ReportImp/ZukunftLeben/Translation/TranslationDictionary.cs new file mode 100644 index 000000000..bc8a21709 --- /dev/null +++ b/ReportImp/ZukunftLeben/Translation/TranslationDictionary.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 ZukunftLeben.Translation +{ + public class CustomTranslationDictionary : TranslationDictionary + { + public override Dictionary GetTranslationDictionary() + { + var dict = base.GetTranslationDictionary(); + AddOrReplaceTranslation(dict, "HilfeplanNotiz", "Debitornummer"); + return dict; + } + } +} diff --git a/ReportImp/ZukunftLeben/ZukunftLeben.csproj b/ReportImp/ZukunftLeben/ZukunftLeben.csproj index 0c97a160f..d5a5cee6e 100644 --- a/ReportImp/ZukunftLeben/ZukunftLeben.csproj +++ b/ReportImp/ZukunftLeben/ZukunftLeben.csproj @@ -75,6 +75,7 @@ SettlementReport2.cs +