Fixed: Refactor misc text and variables in settings (#31)

Fixed: Refactor misc text and variables in settings
pull/38/head
Qstick 7 years ago committed by Joseph Milazzo
parent d32cf1120e
commit b63b2d70df

@ -6,10 +6,10 @@ namespace NzbDrone.Api.Config
{ {
public class MediaManagementConfigResource : RestResource public class MediaManagementConfigResource : RestResource
{ {
public bool AutoUnmonitorPreviouslyDownloadedEpisodes { get; set; } public bool AutoUnmonitorPreviouslyDownloadedTracks { get; set; }
public string RecycleBin { get; set; } public string RecycleBin { get; set; }
public bool AutoDownloadPropers { get; set; } public bool AutoDownloadPropers { get; set; }
public bool CreateEmptySeriesFolders { get; set; } public bool CreateEmptyArtistFolders { get; set; }
public FileDateType FileDate { get; set; } public FileDateType FileDate { get; set; }
public bool SetPermissionsLinux { get; set; } public bool SetPermissionsLinux { get; set; }
@ -31,10 +31,10 @@ namespace NzbDrone.Api.Config
{ {
return new MediaManagementConfigResource return new MediaManagementConfigResource
{ {
AutoUnmonitorPreviouslyDownloadedEpisodes = model.AutoUnmonitorPreviouslyDownloadedEpisodes, AutoUnmonitorPreviouslyDownloadedTracks = model.AutoUnmonitorPreviouslyDownloadedTracks,
RecycleBin = model.RecycleBin, RecycleBin = model.RecycleBin,
AutoDownloadPropers = model.AutoDownloadPropers, AutoDownloadPropers = model.AutoDownloadPropers,
CreateEmptySeriesFolders = model.CreateEmptySeriesFolders, CreateEmptyArtistFolders = model.CreateEmptyArtistFolders,
FileDate = model.FileDate, FileDate = model.FileDate,
SetPermissionsLinux = model.SetPermissionsLinux, SetPermissionsLinux = model.SetPermissionsLinux,

@ -111,7 +111,7 @@ namespace NzbDrone.Core.Test.MediaFiles.DiskScanServiceTests
GivenRootFolder(_otherArtistFolder); GivenRootFolder(_otherArtistFolder);
Mocker.GetMock<IConfigService>() Mocker.GetMock<IConfigService>()
.Setup(s => s.CreateEmptySeriesFolders) .Setup(s => s.CreateEmptyArtistFolders)
.Returns(true); .Returns(true);
Subject.Scan(_artist); Subject.Scan(_artist);
@ -126,7 +126,7 @@ namespace NzbDrone.Core.Test.MediaFiles.DiskScanServiceTests
GivenRootFolder(_otherArtistFolder); GivenRootFolder(_otherArtistFolder);
Mocker.GetMock<IConfigService>() Mocker.GetMock<IConfigService>()
.Setup(s => s.CreateEmptySeriesFolders) .Setup(s => s.CreateEmptyArtistFolders)
.Returns(false); .Returns(false);
Subject.Scan(_artist); Subject.Scan(_artist);
@ -158,7 +158,7 @@ namespace NzbDrone.Core.Test.MediaFiles.DiskScanServiceTests
GivenRootFolder(_otherArtistFolder); GivenRootFolder(_otherArtistFolder);
Mocker.GetMock<IConfigService>() Mocker.GetMock<IConfigService>()
.Setup(s => s.CreateEmptySeriesFolders) .Setup(s => s.CreateEmptyArtistFolders)
.Returns(true); .Returns(true);
Subject.Scan(_artist); Subject.Scan(_artist);

@ -81,7 +81,7 @@ namespace NzbDrone.Core.Test.TvTests.EpisodeServiceTests
GivenSingleEpisodeFile(); GivenSingleEpisodeFile();
Mocker.GetMock<IConfigService>() Mocker.GetMock<IConfigService>()
.SetupGet(s => s.AutoUnmonitorPreviouslyDownloadedEpisodes) .SetupGet(s => s.AutoUnmonitorPreviouslyDownloadedTracks)
.Returns(true); .Returns(true);
Subject.Handle(new EpisodeFileDeletedEvent(_episodeFile, DeleteMediaFileReason.MissingFromDisk)); Subject.Handle(new EpisodeFileDeletedEvent(_episodeFile, DeleteMediaFileReason.MissingFromDisk));
@ -96,7 +96,7 @@ namespace NzbDrone.Core.Test.TvTests.EpisodeServiceTests
GivenSingleEpisodeFile(); GivenSingleEpisodeFile();
Mocker.GetMock<IConfigService>() Mocker.GetMock<IConfigService>()
.SetupGet(s => s.AutoUnmonitorPreviouslyDownloadedEpisodes) .SetupGet(s => s.AutoUnmonitorPreviouslyDownloadedTracks)
.Returns(false); .Returns(false);
Subject.Handle(new EpisodeFileDeletedEvent(_episodeFile, DeleteMediaFileReason.Upgrade)); Subject.Handle(new EpisodeFileDeletedEvent(_episodeFile, DeleteMediaFileReason.Upgrade));
@ -111,7 +111,7 @@ namespace NzbDrone.Core.Test.TvTests.EpisodeServiceTests
GivenSingleEpisodeFile(); GivenSingleEpisodeFile();
Mocker.GetMock<IConfigService>() Mocker.GetMock<IConfigService>()
.SetupGet(s => s.AutoUnmonitorPreviouslyDownloadedEpisodes) .SetupGet(s => s.AutoUnmonitorPreviouslyDownloadedTracks)
.Returns(true); .Returns(true);
Subject.Handle(new EpisodeFileDeletedEvent(_episodeFile, DeleteMediaFileReason.Upgrade)); Subject.Handle(new EpisodeFileDeletedEvent(_episodeFile, DeleteMediaFileReason.Upgrade));

@ -81,10 +81,10 @@ namespace NzbDrone.Core.Configuration
set { SetValue(ConfigKey.DownloadedEpisodesFolder.ToString(), value); } set { SetValue(ConfigKey.DownloadedEpisodesFolder.ToString(), value); }
} }
public bool AutoUnmonitorPreviouslyDownloadedEpisodes public bool AutoUnmonitorPreviouslyDownloadedTracks
{ {
get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedEpisodes"); } get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedTracks"); }
set { SetValue("AutoUnmonitorPreviouslyDownloadedEpisodes", value); } set { SetValue("AutoUnmonitorPreviouslyDownloadedTracks", value); }
} }
public int Retention public int Retention
@ -148,11 +148,11 @@ namespace NzbDrone.Core.Configuration
set { SetValue("RemoveFailedDownloads", value); } set { SetValue("RemoveFailedDownloads", value); }
} }
public bool CreateEmptySeriesFolders public bool CreateEmptyArtistFolders
{ {
get { return GetValueBoolean("CreateEmptySeriesFolders", false); } get { return GetValueBoolean("CreateEmptyArtistFolders", false); }
set { SetValue("CreateEmptySeriesFolders", value); } set { SetValue("CreateEmptyArtistFolders", value); }
} }
public FileDateType FileDate public FileDateType FileDate

@ -24,10 +24,10 @@ namespace NzbDrone.Core.Configuration
bool RemoveFailedDownloads { get; set; } bool RemoveFailedDownloads { get; set; }
//Media Management //Media Management
bool AutoUnmonitorPreviouslyDownloadedEpisodes { get; set; } bool AutoUnmonitorPreviouslyDownloadedTracks { get; set; }
string RecycleBin { get; set; } string RecycleBin { get; set; }
bool AutoDownloadPropers { get; set; } bool AutoDownloadPropers { get; set; }
bool CreateEmptySeriesFolders { get; set; } bool CreateEmptyArtistFolders { get; set; }
FileDateType FileDate { get; set; } FileDateType FileDate { get; set; }
bool SkipFreeSpaceCheckWhenImporting { get; set; } bool SkipFreeSpaceCheckWhenImporting { get; set; }
bool CopyUsingHardlinks { get; set; } bool CopyUsingHardlinks { get; set; }

@ -91,7 +91,7 @@ namespace NzbDrone.Core.MediaFiles
if (!_diskProvider.FolderExists(artist.Path)) if (!_diskProvider.FolderExists(artist.Path))
{ {
if (_configService.CreateEmptySeriesFolders) if (_configService.CreateEmptyArtistFolders)
{ {
_logger.Debug("Creating missing artist folder: {0}", artist.Path); _logger.Debug("Creating missing artist folder: {0}", artist.Path);
_diskProvider.CreateFolder(artist.Path); _diskProvider.CreateFolder(artist.Path);

@ -170,7 +170,7 @@ namespace NzbDrone.Core.Music
_logger.Debug("Detaching track {0} from file.", track.Id); _logger.Debug("Detaching track {0} from file.", track.Id);
track.TrackFileId = 0; track.TrackFileId = 0;
if (message.Reason != DeleteMediaFileReason.Upgrade && _configService.AutoUnmonitorPreviouslyDownloadedEpisodes) if (message.Reason != DeleteMediaFileReason.Upgrade && _configService.AutoUnmonitorPreviouslyDownloadedTracks)
{ {
track.Monitored = false; track.Monitored = false;
} }

@ -204,7 +204,7 @@ namespace NzbDrone.Core.Tv
_logger.Debug("Detaching episode {0} from file.", episode.Id); _logger.Debug("Detaching episode {0} from file.", episode.Id);
episode.EpisodeFileId = 0; episode.EpisodeFileId = 0;
if (message.Reason != DeleteMediaFileReason.Upgrade && _configService.AutoUnmonitorPreviouslyDownloadedEpisodes) if (message.Reason != DeleteMediaFileReason.Upgrade && _configService.AutoUnmonitorPreviouslyDownloadedTracks)
{ {
episode.Monitored = false; episode.Monitored = false;
} }

@ -2,12 +2,12 @@
<legend>File Management</legend> <legend>File Management</legend>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">Ignore Deleted Episodes</label> <label class="col-sm-3 control-label">Ignore Deleted Tracks</label>
<div class="col-sm-9"> <div class="col-sm-9">
<div class="input-group"> <div class="input-group">
<label class="checkbox toggle well"> <label class="checkbox toggle well">
<input type="checkbox" name="autoUnmonitorPreviouslyDownloadedEpisodes"/> <input type="checkbox" name="autoUnmonitorPreviouslyDownloadedTracks"/>
<p> <p>
<span>Yes</span> <span>Yes</span>
<span>No</span> <span>No</span>
@ -17,7 +17,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Episodes deleted from disk are automatically unmonitored in Lidarr"/> <i class="icon-lidarr-form-info" title="Tracks deleted from disk are automatically unmonitored in Lidarr"/>
</span> </span>
</div> </div>
</div> </div>
@ -46,7 +46,7 @@
</div> </div>
<div class="form-group advanced-setting"> <div class="form-group advanced-setting">
<label class="col-sm-3 control-label">Analyse video files</label> <label class="col-sm-3 control-label">Analyse Audio Files</label>
<div class="col-sm-9"> <div class="col-sm-9">
<div class="input-group"> <div class="input-group">
@ -61,7 +61,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Extract video information such as resolution, runtime and codec information from files. This requires Lidarr to read parts of the file which may cause high disk or network activity during scans."/> <i class="icon-lidarr-form-info" title="Extract audio information such as bitrate, runtime and codec information from files. This requires Lidarr to read parts of the file which may cause high disk or network activity during scans."/>
</span> </span>
</div> </div>
</div> </div>
@ -87,7 +87,7 @@
<label class="col-sm-3 control-label">Recycling Bin</label> <label class="col-sm-3 control-label">Recycling Bin</label>
<div class="col-sm-1 col-sm-push-8 help-inline"> <div class="col-sm-1 col-sm-push-8 help-inline">
<i class="icon-lidarr-form-info" title="Episode files will go here when deleted instead of being permanently deleted"/> <i class="icon-lidarr-form-info" title="Track files will go here when deleted instead of being permanently deleted"/>
</div> </div>
<div class="col-sm-8 col-sm-pull-1"> <div class="col-sm-8 col-sm-pull-1">

@ -40,7 +40,7 @@
<label class="col-sm-3 control-label">Folder chmod mask</label> <label class="col-sm-3 control-label">Folder chmod mask</label>
<div class="col-sm-1 col-sm-push-4 help-inline"> <div class="col-sm-1 col-sm-push-4 help-inline">
<i class="icon-lidarr-form-info" title="Octal, applied to series/season folders created by Lidarr"/> <i class="icon-lidarr-form-info" title="Octal, applied to artist/album folders created by Lidarr"/>
</div> </div>
<div class="col-sm-4 col-sm-pull-1"> <div class="col-sm-4 col-sm-pull-1">

@ -2,12 +2,12 @@
<legend>Folders</legend> <legend>Folders</legend>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">Create empty series folders</label> <label class="col-sm-3 control-label">Create Empty Artist Folders</label>
<div class="col-sm-9"> <div class="col-sm-9">
<div class="input-group"> <div class="input-group">
<label class="checkbox toggle well"> <label class="checkbox toggle well">
<input type="checkbox" name="createEmptySeriesFolders"/> <input type="checkbox" name="createEmptyArtistFolders"/>
<p> <p>
<span>Yes</span> <span>Yes</span>
@ -18,7 +18,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Create missing series folders during disk scan"/> <i class="icon-lidarr-form-info" title="Create missing artist folders during disk scan"/>
</span> </span>
</div> </div>
</div> </div>
@ -46,7 +46,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Use when drone is unable to detect free space from your series root folder"/> <i class="icon-lidarr-form-info" title="Use when drone is unable to detect free space from your artist root folder"/>
</span> </span>
</div> </div>
</div> </div>
@ -94,7 +94,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Import matching extra files (subtitles, nfo, etc) after importing an episode file"/> <i class="icon-lidarr-form-info" title="Import matching extra files (subtitles, nfo, etc) after importing an album or track file"/>
</span> </span>
</div> </div>
</div> </div>

@ -33,7 +33,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Be notified when episodes are available for download and has been sent to a download client"/> <i class="icon-lidarr-form-info" title="Be notified when albums are available for download and has been sent to a download client"/>
</span> </span>
</div> </div>
</div> </div>
@ -55,7 +55,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Be notified when episodes are successfully downloaded"/> <i class="icon-lidarr-form-info" title="Be notified when albums are successfully downloaded"/>
</span> </span>
</div> </div>
</div> </div>
@ -77,7 +77,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Be notified when episodes are upgraded to a better quality"/> <i class="icon-lidarr-form-info" title="Be notified when albums are upgraded to a better quality"/>
</span> </span>
</div> </div>
</div> </div>
@ -99,7 +99,7 @@
</label> </label>
<span class="help-inline-checkbox"> <span class="help-inline-checkbox">
<i class="icon-lidarr-form-info" title="Be notified when episodes are renamed"/> <i class="icon-lidarr-form-info" title="Be notified when albums are renamed"/>
</span> </span>
</div> </div>
</div> </div>
@ -113,7 +113,7 @@
</div> </div>
<div class="col-sm-1 help-inline"> <div class="col-sm-1 help-inline">
<i class="icon-lidarr-form-info" title="Only send notifications for series with matching tags"/> <i class="icon-lidarr-form-info" title="Only send notifications for artist with matching tags"/>
</div> </div>
</div> </div>

@ -22,7 +22,7 @@
</div> </div>
<div class="col-sm-1 help-inline"> <div class="col-sm-1 help-inline">
<i class="icon-lidarr-form-info" title="Series assigned this profile will be look for episodes with the selected language"/> <i class="icon-lidarr-form-info" title="Artists assigned this profile will be looking for albums with the selected language"/>
</div> </div>
</div> </div>
@ -40,6 +40,6 @@
</div> </div>
<div class="col-sm-1 help-inline"> <div class="col-sm-1 help-inline">
<i class="icon-lidarr-form-info" title="Once this quality is reached Lidarr will no longer download episodes"/> <i class="icon-lidarr-form-info" title="Once this quality is reached Lidarr will no longer download albums"/>
</div> </div>
</div> </div>

@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<span class="col-md-2 col-sm-3">Quality</span> <span class="col-md-2 col-sm-3">Quality</span>
<span class="col-md-2 col-sm-3">Title</span> <span class="col-md-2 col-sm-3">Title</span>
<span class="col-md-4 col-sm-6">Size Limit <i class="icon-lidarr-info" title="Limits are automatically adjusted for the series runtime and number of episodes in the file." /></span> <span class="col-md-4 col-sm-6">Size Limit <i class="icon-lidarr-info" title="Limits are automatically adjusted for the number of tracks in the file." /></span>
</div> </div>
</div> </div>
<div class="rows x-rows"> <div class="rows x-rows">

Loading…
Cancel
Save