1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00

Fixed: Bulk UI cleanup, fixes and consistency improvements (#1959)

This commit is contained in:
James White
2017-08-20 13:38:24 +01:00
committed by Leonardo Galli
parent 4d8a270170
commit 0c8e264668
247 changed files with 2283 additions and 2686 deletions
@@ -1,4 +1,4 @@
using System;
using System;
using System.IO;
using NzbDrone.Common.Disk;
using NzbDrone.Common.EnvironmentInfo;
@@ -45,14 +45,14 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
return new HealthCheck(GetType(), HealthCheckResult.Error,
string.Format("Cannot install update because startup folder '{0}' is not writable by the user '{1}'.", startupFolder, Environment.UserName),
"Cannot install update because startup folder is not writable by the user");
"Cannot install update because startup folder is not writable by the user.");
}
if (!_diskProvider.FolderWritable(uiFolder))
{
return new HealthCheck(GetType(), HealthCheckResult.Error,
string.Format("Cannot install update because UI folder '{0}' is not writable by the user '{1}'.", uiFolder, Environment.UserName),
"Cannot install update because UI folder is not writable by the user");
"Cannot install update because UI folder is not writable by the user.");
}
}
@@ -60,7 +60,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
if (_checkUpdateService.AvailableUpdate() != null)
{
return new HealthCheck(GetType(), HealthCheckResult.Warning, "New update is available");
return new HealthCheck(GetType(), HealthCheckResult.Warning, "New update is available.");
}
}