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