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 +