From f5cd6866d5748be3e65e5b8d95f824ea8499e03f Mon Sep 17 00:00:00 2001 From: Alexandra Date: Fri, 2 Aug 2024 10:34:14 +0200 Subject: [PATCH] GenderBeWoReports/Translation/TranslationDictionary - Notizfeld HP umbenannt --- .../GenderBeWoReports.csproj | 1 + .../Translation/TranslationDictionary.cs | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 ReportImp/GenderBeWoReports/Translation/TranslationDictionary.cs diff --git a/ReportImp/GenderBeWoReports/GenderBeWoReports.csproj b/ReportImp/GenderBeWoReports/GenderBeWoReports.csproj index 7e6b27e81..71b4b4589 100644 --- a/ReportImp/GenderBeWoReports/GenderBeWoReports.csproj +++ b/ReportImp/GenderBeWoReports/GenderBeWoReports.csproj @@ -174,6 +174,7 @@ Teamstundenkonto.cs + diff --git a/ReportImp/GenderBeWoReports/Translation/TranslationDictionary.cs b/ReportImp/GenderBeWoReports/Translation/TranslationDictionary.cs new file mode 100644 index 000000000..81691e462 --- /dev/null +++ b/ReportImp/GenderBeWoReports/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 GenderBeWoReports.Translation +{ + public class CustomTranslationDictionary : TranslationDictionary + { + public override Dictionary GetTranslationDictionary() + { + var dict = base.GetTranslationDictionary(); + AddOrReplaceTranslation(dict, "HilfeplanNotiz", "Debitornummer"); + return dict; + } + } +}