mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
EpisodeSorting UI has descriptions, removed extra options.
Config for EpisodeSorting variables added.
This commit is contained in:
parent
d6ae21506c
commit
0645a9e552
4 changed files with 116 additions and 51 deletions
|
@ -6,36 +6,41 @@ namespace NzbDrone.Web.Models
|
|||
{
|
||||
public class EpisodeSortingModel
|
||||
{
|
||||
[DisplayName("Show Name")]
|
||||
public bool ShowName { get; set; }
|
||||
[DisplayName("Series Name")]
|
||||
[Description("Should filenames contain the series name when renamed?")]
|
||||
public bool SeriesName { get; set; }
|
||||
|
||||
[DisplayName("Episode Name")]
|
||||
[Description("Should filenames contain the episode name when renamed?")]
|
||||
public bool EpisodeName { get; set; }
|
||||
|
||||
[DisplayName("Replace Spaces")]
|
||||
[Description("Do you want to replace spaces in the filename with periods?")]
|
||||
public bool ReplaceSpaces { get; set; }
|
||||
|
||||
[DisplayName("Append Quality")]
|
||||
[Description("Should filenames have the quality appended to the end?")]
|
||||
public bool AppendQuality { get; set; }
|
||||
|
||||
[DisplayName("Use Air By Date")]
|
||||
public bool UseAirByDate { get; set; }
|
||||
|
||||
[DisplayName("Use Season Folders")]
|
||||
[Description("Should files be stored in season folders?")]
|
||||
public bool SeasonFolders { get; set; }
|
||||
|
||||
[DisplayName("Season Folder Format")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
[Display(Description = "This is a Description")]
|
||||
[Description("How should season folders be named? (Use %0s to pad to two digits)")]
|
||||
public string SeasonFolderFormat { get; set; }
|
||||
|
||||
[DisplayName("Separator Style")]
|
||||
[Description("How should NzbDrone separate sections of the filename?")]
|
||||
public int SeparatorStyle { get; set; }
|
||||
|
||||
[DisplayName("Numbering Style")]
|
||||
[Description("What numbering style do you want?")]
|
||||
public int NumberStyle { get; set; }
|
||||
|
||||
[DisplayName("Multi-Episode Style")]
|
||||
[Description("How will multi-episode files be named?")]
|
||||
public int MultiEpisodeStyle { get; set; }
|
||||
|
||||
public SelectList SeparatorStyles { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue