forked from judero01col/GMap.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanguageType.cs
More file actions
122 lines (68 loc) · 2.56 KB
/
Copy pathLanguageType.cs
File metadata and controls
122 lines (68 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
using System.ComponentModel;
namespace GMap.NET
{
/// <summary>
/// This enum contains all possible languages for the Google maps.
/// You can find latest information about supported languages in the:
/// http://tinyurl.com/yh4va36 <- http:// spreadsheets.server.com/ pub? key= p9pdwsai2hDMsLkXsoM05KQ& gid=1
/// </summary>
public enum LanguageType
{
[Description("ar")] Arabic,
[Description("bg")] Bulgarian,
[Description("bn")] Bengali,
[Description("ca")] Catalan,
[Description("cs")] Czech,
[Description("da")] Danish,
[Description("de")] German,
[Description("el")] Greek,
[Description("en")] English,
[Description("en-AU")] EnglishAustralian,
[Description("en-GB")] EnglishGreatBritain,
[Description("es")] Spanish,
[Description("eu")] Basque,
[Description("fa")] FARSI,
[Description("fi")] Finnish,
[Description("fil")] Filipino,
[Description("fr")] French,
[Description("gl")] Galician,
[Description("gu")] Gujarati,
[Description("hi")] Hindi,
[Description("hr")] Croatian,
[Description("hu")] Hungarian,
[Description("id")] Indonesian,
[Description("it")] Italian,
[Description("iw")] Hebrew,
[Description("ja")] Japanese,
[Description("kn")] Kannada,
[Description("ko")] Korean,
[Description("lt")] Lithuanian,
[Description("lv")] Latvian,
[Description("ml")] Malayalam,
[Description("mr")] Marathi,
[Description("nl")] Dutch,
[Description("nn")] NorwegianNynorsk,
[Description("no")] Norwegian,
[Description("or")] Oriya,
[Description("pl")] Polish,
[Description("pt")] Portuguese,
[Description("pt-BR")] PortugueseBrazil,
[Description("pt-PT")] PortuguesePortugal,
[Description("rm")] Romansch,
[Description("ro")] Romanian,
[Description("ru")] Russian,
[Description("sk")] Slovak,
[Description("sl")] Slovenian,
[Description("sr")] Serbian,
[Description("sv")] Swedish,
[Description("tl")] TAGALOG,
[Description("ta")] Tamil,
[Description("te")] Telugu,
[Description("th")] Thai,
[Description("tr")] Turkish,
[Description("uk")] Ukrainian,
[Description("vi")] Vietnamese,
[Description("zh-CN")] ChineseSimplified,
[Description("zh-TW")] ChineseTraditional,
}
}