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;
+ }
+ }
+}