Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2287 - 1

2
namespace GMap.NET
3
{
4
   using System.ComponentModel;
5
 
6
   /// <summary>
7
   /// This enum contains all possible languages for the Google maps. 
8
   /// You can find latest information about supported languages in the:
9
   /// http://tinyurl.com/yh4va36 <- http://spreadsheets.server.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&gid=1
10
   /// </summary>
11
   public enum LanguageType
12
   {
13
      [Description("ar")]
14
      Arabic,
15
 
16
      [Description("bg")]
17
      Bulgarian,
18
 
19
      [Description("bn")]
20
      Bengali,
21
 
22
      [Description("ca")]
23
      Catalan,
24
 
25
      [Description("cs")]
26
      Czech,
27
 
28
      [Description("da")]
29
      Danish,
30
 
31
      [Description("de")]
32
      German,
33
 
34
      [Description("el")]
35
      Greek,
36
 
37
      [Description("en")]
38
      English,
39
 
40
      [Description("en-AU")]
41
      EnglishAustralian,
42
 
43
      [Description("en-GB")]
44
      EnglishGreatBritain,
45
 
46
      [Description("es")]
47
      Spanish,
48
 
49
      [Description("eu")]
50
      Basque,
51
 
52
      [Description("fa")]
53
      FARSI,
54
 
55
      [Description("fi")]
56
      Finnish,
57
 
58
      [Description("fil")]
59
      Filipino,
60
 
61
      [Description("fr")]
62
      French,
63
 
64
      [Description("gl")]
65
      Galician,
66
 
67
      [Description("gu")]
68
      Gujarati,
69
      [Description("hi")]
70
      Hindi,
71
 
72
      [Description("hr")]
73
      Croatian,
74
 
75
      [Description("hu")]
76
      Hungarian,
77
 
78
      [Description("id")]
79
      Indonesian,
80
 
81
      [Description("it")]
82
      Italian,
83
 
84
      [Description("iw")]
85
      Hebrew,
86
 
87
      [Description("ja")]
88
      Japanese,
89
 
90
      [Description("kn")]
91
      Kannada,
92
 
93
      [Description("ko")]
94
      Korean,
95
 
96
      [Description("lt")]
97
      Lithuanian,
98
 
99
      [Description("lv")]
100
      Latvian,
101
 
102
      [Description("ml")]
103
      Malayalam,
104
 
105
      [Description("mr")]
106
      Marathi,
107
 
108
      [Description("nl")]
109
      Dutch,
110
 
111
      [Description("nn")]
112
      NorwegianNynorsk,
113
 
114
      [Description("no")]
115
      Norwegian,
116
 
117
      [Description("or")]
118
      Oriya,
119
 
120
      [Description("pl")]
121
      Polish,
122
 
123
      [Description("pt")]
124
      Portuguese,
125
 
126
      [Description("pt-BR")]
127
      PortugueseBrazil,
128
 
129
      [Description("pt-PT")]
130
      PortuguesePortugal,
131
 
132
      [Description("rm")]
133
      Romansch,
134
      [Description("ro")]
135
      Romanian,
136
 
137
      [Description("ru")]
138
      Russian,
139
 
140
      [Description("sk")]
141
      Slovak,
142
 
143
      [Description("sl")]
144
      Slovenian,
145
 
146
      [Description("sr")]
147
      Serbian,
148
 
149
      [Description("sv")]
150
      Swedish,
151
 
152
      [Description("tl")]
153
      TAGALOG,
154
 
155
      [Description("ta")]
156
      Tamil,
157
 
158
      [Description("te")]
159
      Telugu,
160
 
161
      [Description("th")]
162
      Thai,
163
 
164
      [Description("tr")]
165
      Turkish,
166
 
167
      [Description("uk")]
168
      Ukrainian,
169
 
170
      [Description("vi")]
171
      Vietnamese,
172
 
173
      [Description("zh-CN")]
174
      ChineseSimplified,
175
 
176
      [Description("zh-TW")]
177
      ChineseTraditional,
178
   }
179
}