22 lines
530 B
C#
22 lines
530 B
C#
using BeWo.Service.Plugins;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SkmKrefeld.Translation
|
|
{
|
|
class CustomTranslationDictionary : TranslationDictionary
|
|
{
|
|
public override Dictionary<string, string> GetTranslationDictionary()
|
|
{
|
|
var dict = base.GetTranslationDictionary();
|
|
|
|
AddOrReplaceTranslation(dict, "Probezeit (Monate)", "Erhöhte Freistellung");
|
|
|
|
return dict;
|
|
}
|
|
}
|
|
}
|