From 8e8fe502d7028c5a9f7171d9d1cb3051b6d8d031 Mon Sep 17 00:00:00 2001 From: Alexandra Date: Tue, 21 Oct 2025 16:19:49 +0200 Subject: [PATCH] TwgJonathan/Translation/TranslationDictionary - Kostenstelle in DebitorMiete umbenannt --- .../Translation/TranslationDictionary.cs | 25 +++++++++++++++++++ ReportImp/TwgJonathan/TwgJonathan.csproj | 1 + 2 files changed, 26 insertions(+) create mode 100644 ReportImp/TwgJonathan/Translation/TranslationDictionary.cs diff --git a/ReportImp/TwgJonathan/Translation/TranslationDictionary.cs b/ReportImp/TwgJonathan/Translation/TranslationDictionary.cs new file mode 100644 index 000000000..4ef24fb69 --- /dev/null +++ b/ReportImp/TwgJonathan/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 TwgJonathan.Translation +{ + public class CustomTranslationDictionary : TranslationDictionary + { + public override Dictionary GetTranslationDictionary() + { + var dict = base.GetTranslationDictionary(); + AddOrReplaceTranslation(dict, "Kostenstelle", "DebitorMiete"); + return dict; + } + } +} diff --git a/ReportImp/TwgJonathan/TwgJonathan.csproj b/ReportImp/TwgJonathan/TwgJonathan.csproj index 01f811d29..8584fa8b1 100644 --- a/ReportImp/TwgJonathan/TwgJonathan.csproj +++ b/ReportImp/TwgJonathan/TwgJonathan.csproj @@ -72,6 +72,7 @@ Rechnung.cs +