mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-31 03:11:07 +02:00
74a38415cf
Indexes are created with the same uniqueness when copying a table New: Non-English episode support New: Renamed Quality Profiles to Profiles and made them more powerful New: Configurable wait time before grabbing a release to wait for a better quality
29 lines
551 B
C#
29 lines
551 B
C#
namespace NzbDrone.Core.Parser
|
|
{
|
|
public enum Language
|
|
{
|
|
Unknown = 0,
|
|
English = 1,
|
|
French = 2,
|
|
Spanish = 3,
|
|
German = 4,
|
|
Italian = 5,
|
|
Danish = 6,
|
|
Dutch = 7,
|
|
Japanese = 8,
|
|
Cantonese = 9,
|
|
Mandarin = 10,
|
|
Russian = 11,
|
|
Polish = 12,
|
|
Vietnamese = 13,
|
|
Swedish = 14,
|
|
Norwegian = 15,
|
|
Finnish = 16,
|
|
Turkish = 17,
|
|
Portuguese = 18,
|
|
Flemish = 19,
|
|
Greek = 20,
|
|
Korean = 21
|
|
}
|
|
}
|