1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Replace Sonarr with Radarr in Test notification messages

This commit is contained in:
schumi2004 2017-01-10 11:21:09 +01:00
parent f1914082b8
commit 1b7288e7cb
9 changed files with 9 additions and 9 deletions

View File

@ -43,7 +43,7 @@ public ValidationFailure Test(BoxcarSettings settings)
try
{
const string title = "Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
SendNotification(title, body, settings);
return null;

View File

@ -146,7 +146,7 @@ public ValidationFailure Test(GrowlSettings settings)
Register(settings.Host, settings.Port, settings.Password);
const string title = "Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
SendNotification(title, body, "TEST", settings.Host, settings.Port, settings.Password);
}

View File

@ -41,7 +41,7 @@ public void SendNotification(string title, string message, JoinSettings settings
public ValidationFailure Test(JoinSettings settings)
{
const string title = "Test Notification";
const string body = "This is a test message from Sonarr.";
const string body = "This is a test message from Radarr.";
try
{

View File

@ -69,7 +69,7 @@ public ValidationFailure Test(NotifyMyAndroidSettings settings)
try
{
const string title = "Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
Verify(settings.ApiKey);
SendNotification(title, body, settings.ApiKey, (NotifyMyAndroidPriority)settings.Priority);
}

View File

@ -88,7 +88,7 @@ public ValidationFailure Test(ProwlSettings settings)
Verify(settings.ApiKey);
const string title = "Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
SendNotification(title, body, settings.ApiKey);
}

View File

@ -93,7 +93,7 @@ public ValidationFailure Test(PushBulletSettings settings)
try
{
const string title = "Sonarr - Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
SendNotification(title, body, settings);
}

View File

@ -65,7 +65,7 @@ public ValidationFailure Test(PushalotSettings settings)
try
{
const string title = "Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
SendNotification(title, body, settings);
}

View File

@ -53,7 +53,7 @@ public ValidationFailure Test(PushoverSettings settings)
try
{
const string title = "Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
SendNotification(title, body, settings);
}

View File

@ -45,7 +45,7 @@ public ValidationFailure Test(TelegramSettings settings)
try
{
const string title = "Test Notification";
const string body = "This is a test message from Sonarr";
const string body = "This is a test message from Radarr";
SendNotification(title, body, settings);
}