You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
529 B
28 lines
529 B
namespace NzbDrone.Core.Parser
|
|
{
|
|
public enum Language
|
|
{
|
|
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,
|
|
Flemish = 19,
|
|
Greek = 20
|
|
}
|
|
}
|