-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlang.js
74 lines (73 loc) · 1.33 KB
/
lang.js
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
const langs = {
English: {
name: "anglais",
inputValue: "en",
outputValue: "en-US",
flag: "🇬🇧",
alias: "English",
},
Chinese: {
name: "chinese",
inputValue: "zh",
outputValue: "zh-ZH",
flag: "🇬🇧",
alias: "Chinese",
},
French: {
name: "français",
inputValue: "fr",
outputValue: "fr-FR",
flag: "🇫🇷",
alias: "French",
},
German: {
name: "allemand",
inputValue: "de",
outputValue: "de-DE",
flag: "🇩🇪",
alias: "German",
},
Spanish: {
name: "espagnol",
inputValue: "es",
outputValue: "es-ES",
flag: "🇪🇸",
alias: "Spanish",
},
Portuguese: {
name: "portugais",
inputValue: "pt",
outputValue: "pt-PT",
flag: "🇵🇹",
alias: "Portuguese",
},
Italian: {
name: "italien",
inputValue: "it",
outputValue: "it-IT",
flag: "🇮🇹",
alias: "Italian",
},
Dutch: {
name: "néerlandais",
inputValue: "nl",
outputValue: "nl-NL",
flag: "🇳🇱",
alias: "Dutch",
},
Polish: {
name: "polonais",
inputValue: "pl",
outputValue: "pl-PL",
flag: "🇵🇱",
alias: "Polish",
},
Russian: {
name: "russe",
inputValue: "ru",
outputValue: "ru-RU",
flag: "🇷🇺",
alias: "Russian",
},
};
export default langs;