fixes #289 - Rename "Season 0" to "Specials"?

This commit is contained in:
Luke Pulverenti
2013-05-24 11:01:53 -04:00
parent 6be50fefc1
commit 1141fcc374
3 changed files with 102 additions and 20 deletions

View File

@@ -44,6 +44,12 @@ namespace MediaBrowser.Model.Configuration
/// </summary>
/// <value>The item by name path.</value>
public string ItemsByNamePath { get; set; }
/// <summary>
/// Gets or sets the display name of the season zero.
/// </summary>
/// <value>The display name of the season zero.</value>
public string SeasonZeroDisplayName { get; set; }
/// <summary>
/// Gets or sets the weather unit to use when displaying weather
@@ -260,6 +266,8 @@ namespace MediaBrowser.Model.Configuration
SortReplaceCharacters = new[] { ".", "+", "%" };
SortRemoveCharacters = new[] { ",", "&", "-", "{", "}", "'" };
SortRemoveWords = new[] { "the", "a", "an" };
SeasonZeroDisplayName = "Specials";
}
}
}