-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwikipedia_langs.go
54 lines (53 loc) · 1.43 KB
/
wikipedia_langs.go
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
package main
var WikipediaLangs = map[string]bool{
"en": true, // English
"de": true, // German
"fr": true, // French
"es": true, // Spanish
"ja": true, // Japanese
"ru": true, // Russian
"pt": true, // Portuguese
"it": true, // Italian
"zh": true, // Chinese
"fa": true, // Persian
"pl": true, // Polish
"ar": true, // Arabic
"nl": true, // Dutch
"he": true, // Hebrew
"uk": true, // Ukrainian
"tr": true, // Turkish
"id": true, // Indonesian
"cs": true, // Czech
"sv": true, // Swedish
"ko": true, // Korean
"vi": true, // Vietnamese
"hu": true, // Hungarian
"fi": true, // Finnish
"th": true, // Thai
"simple": true, // Simple English
"ca": true, // Catalan
"no": true, // Norwegian
"bn": true, // Bengali
"el": true, // Greek
"hi": true, // Hindi
"ro": true, // Romanian
"sr": true, // Serbian
"bg": true, // Bulgarian
"uz": true, // Uzbek
"da": true, // Danish
"ms": true, // Malay
"az": true, // Azerbaijani
"et": true, // Estonian
"hy": true, // Armenian
"sk": true, // Slovak
"hr": true, // Croatian
"eu": true, // Basque
"lt": true, // Lithuanian
"ml": true, // Malayalam
"eo": true, // Esperanto
"zh-yue": true, // Cantonese
"sl": true, // Slovene
"ta": true, // Tamil
"ur": true, // Urdu
"lv": true, // Latvian
}