1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Translate Notifications settings

This commit is contained in:
Stevie Robinson
2024-01-03 21:41:16 +01:00
committed by GitHub
parent cd2ce34f10
commit 8f7f23c938
52 changed files with 457 additions and 194 deletions
@@ -2,6 +2,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Localization;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Tv;
@@ -13,11 +14,13 @@ namespace NzbDrone.Core.Notifications.Webhook
{
private readonly IConfigFileProvider _configFileProvider;
private readonly IConfigService _configService;
protected readonly ILocalizationService _localizationService;
protected WebhookBase(IConfigFileProvider configFileProvider, IConfigService configService)
protected WebhookBase(IConfigFileProvider configFileProvider, IConfigService configService, ILocalizationService localizationService)
{
_configFileProvider = configFileProvider;
_configService = configService;
_localizationService = localizationService;
}
protected WebhookGrabPayload BuildOnGrabPayload(GrabMessage message)