forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguages.ts
More file actions
42 lines (42 loc) · 1.48 KB
/
languages.ts
File metadata and controls
42 lines (42 loc) · 1.48 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
export const languages: LanguagesListItem[] = [
{ text: "Arabic", value: "ar" },
{ text: "Armenian", value: "hy" },
{ text: "Azerbaijani", value: "az" },
{ text: "Bengali", value: "bn" },
{ text: "Bosnian", value: "bs" },
{ text: "Bulgarian", value: "bg" },
{ text: "Croatian", value: "hr" },
{ text: "Czech", value: "cs" },
{ text: "Danish", value: "da" },
{ text: "Dutch", value: "nl" },
{ text: "English", value: "en" },
{ text: "Finnish", value: "fi" },
{ text: "French", value: "fr" },
{ text: "Georgian", value: "ka" },
{ text: "German", value: "de" },
{ text: "Greek", value: "el" },
{ text: "Hungarian", value: "hu" },
{ text: "Indonesian", value: "id" },
{ text: "Italian", value: "it" },
{ text: "Japanese", value: "ja" },
{ text: "Korean", value: "ko" },
{ text: "Kurdish Sorani" },
{ text: "Norwegain", value: "no" },
{ text: "Persian", value: "fa" },
{ text: "Polish", value: "pl" },
{ text: "Portuguese", value: "pt" },
{ text: "Portuguese (Brasil)", value: "pt-br" },
{ text: "Romanian", value: "ro" },
{ text: "Russian", value: "ru" },
{ text: "Serbian", value: "sr" },
{ text: "Simplified Chinese (China)", value: "zh-cn" },
{ text: "Slovak", value: "sk" },
{ text: "Spanish", value: "es" },
{ text: "Swedish", value: "sv" },
{ text: "Thai", value: "th" },
{ text: "Traditional Chinese (Taiwan)", value: "zh-tw" },
{ text: "Turkish", value: "tr" },
{ text: "Ukrainian", value: "uk" },
{ text: "Urdu", value: "ur" },
{ text: "Vietnamese", value: "vi" },
];