This repository was archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLangs.py
88 lines (86 loc) · 2.26 KB
/
Langs.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Translation Web Server
# Copyright © 2012 Luca Wehrstedt <luca.wehrstedt@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
langs = {
"af": u"Afrikaans",
"ar": u"Arabic",
"az": u"Azerbaijani",
"be": u"Belarusian",
"bg": u"Bulgarian",
"bn": u"Bengali",
"bs": u"Bosnian",
"cs": u"Czech",
"da": u"Danish",
"de": u"German",
"el": u"Greek",
"en": u"English",
"es": u"Spanish",
"et": u"Estonian",
"fa": u"Persian",
"fi": u"Finnish",
"fr": u"French",
"ga": u"Irish",
"he": u"Hebrew",
"hi": u"Hindi",
"hr": u"Croatian",
"hu": u"Hungarian",
"hy": u"Armenian",
"id": u"Indonesian",
"it": u"Italian",
"ja": u"Japanese",
"ka": u"Georgian",
"kk": u"Kazakh",
"ko": u"Korean",
"ky": u"Kyrgyz",
"lb": u"Luxembourgish",
"lt": u"Lithuanian",
"lv": u"Latvian",
"mi": u"Maori",
"mk": u"Macedonian",
"mn": u"Mongolian",
"mo": u"Moldovan",
"ms": u"Malay",
"nb": u"Norwegian Bokmål",
"nl": u"Dutch",
"nn": u"Norwegian Nynorsk",
"nr": u"South Ndebele",
"pl": u"Polish",
"pt": u"Portuguese",
"rm": u"Romansh",
"ro": u"Romanian",
"ru": u"Russian",
"sk": u"Slovak",
"sl": u"Slovenian",
"sq": u"Albanian",
"sr": u"Serbian",
"ss": u"Swati",
"st": u"Sotho, Southern",
"sv": u"Swedish",
"ta": u"Tamil",
"tg": u"Tajik",
"th": u"Thai",
"tk": u"Turkmen",
"tn": u"Tswana",
"tr": u"Turkish",
"ts": u"Tsonga",
"uk": u"Ukrainian",
"ve": u"Venda",
"vi": u"Vietnamese",
"xh": u"Xhosa",
"zh": u"Chinese",
"zu": u"Zulu",
}