-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathlanguages.js
46 lines (44 loc) · 1.05 KB
/
languages.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
import enflag from "./assets/flags/enflag.png";
import frflag from "./assets/flags/frflag.png";
import esflag from "./assets/flags/esflag.png";
import ptflag from "./assets/flags/ptflag.png";
import itflag from "./assets/flags/itflag.png";
import deflag from "./assets/flags/deflag.png";
export const languages = [
{
label: "English",
code: "en",
flag: enflag,
url: "https://www.wordnote.app/dictionaries/dict_en.db",
},
{
label: "French",
code: "fr",
flag: frflag,
url: "https://www.wordnote.app/dictionaries/dict_fr.db",
},
{
label: "Spanish",
code: "es",
flag: esflag,
url: "https://www.wordnote.app/dictionaries/dict_es.db",
},
{
label: "Portuguese",
code: "pt",
flag: ptflag,
url: "https://www.wordnote.app/dictionaries/dict_pt.db",
},
{
label: "Italian",
code: "it",
flag: itflag,
url: "https://www.wordnote.app/dictionaries/dict_it.db",
},
{
label: "German",
code: "de",
flag: deflag,
url: "https://www.wordnote.app/dictionaries/dict_de.db",
},
];