mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Merge conflicts resolved.
Added Language parsing.
This commit is contained in:
commit
11b96afd75
13 changed files with 603 additions and 134 deletions
|
@ -22,6 +22,8 @@ namespace NzbDrone.Core.Model
|
|||
|
||||
public QualityTypes Quality { get; set; }
|
||||
|
||||
public LanguageType Language { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
if (Episodes == null)
|
||||
|
|
25
NzbDrone.Core/Model/LanguageType.cs
Normal file
25
NzbDrone.Core/Model/LanguageType.cs
Normal file
|
@ -0,0 +1,25 @@
|
|||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum LanguageType
|
||||
{
|
||||
English = 0,
|
||||
French = 1,
|
||||
Spanish = 2,
|
||||
German = 3,
|
||||
Italian = 4,
|
||||
Danish = 5,
|
||||
Dutch = 6,
|
||||
Japanese = 7,
|
||||
Cantonese = 8,
|
||||
Mandarin = 9,
|
||||
Korean = 10,
|
||||
Russian = 11,
|
||||
Polish = 12,
|
||||
Vietnamese = 13,
|
||||
Swedish = 14,
|
||||
Norwegian = 15,
|
||||
Finnish = 16,
|
||||
Turkish = 17,
|
||||
Portuguese = 18
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue