diff --git a/ReportImp/AkkuratDienstleistungsgesellschaft/AkkuratDienstleistungsgesellschaft.csproj b/ReportImp/AkkuratDienstleistungsgesellschaft/AkkuratDienstleistungsgesellschaft.csproj
index c39f7d1cd..9fed80543 100644
--- a/ReportImp/AkkuratDienstleistungsgesellschaft/AkkuratDienstleistungsgesellschaft.csproj
+++ b/ReportImp/AkkuratDienstleistungsgesellschaft/AkkuratDienstleistungsgesellschaft.csproj
@@ -82,6 +82,7 @@
SettlementReport2.cs
+
diff --git a/ReportImp/AkkuratDienstleistungsgesellschaft/Translation/TranslationDictionary.cs b/ReportImp/AkkuratDienstleistungsgesellschaft/Translation/TranslationDictionary.cs
new file mode 100644
index 000000000..25805d33e
--- /dev/null
+++ b/ReportImp/AkkuratDienstleistungsgesellschaft/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 Akkurat.Translation
+{
+ public class CustomTranslationDictionary : TranslationDictionary
+ {
+ public override Dictionary GetTranslationDictionary()
+ {
+ var dict = base.GetTranslationDictionary();
+ AddOrReplaceTranslation(dict, "Bezeichnung", "Vertragsnummer");
+ return dict;
+ }
+ }
+}