EverFlip commited on
Commit
0f76c38
·
verified ·
1 Parent(s): 10f5b9c

Initial release: 24,164 cards, 81 languages (CC-BY-4.0)

Browse files
Files changed (5) hide show
  1. README.md +48 -0
  2. cards.csv +0 -0
  3. datapackage.json +101 -0
  4. decks.csv +1574 -0
  5. languages.csv +82 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: EverFlip Multilingual Flashcard Corpus
4
+ size_categories:
5
+ - 10K<n<100K
6
+ task_categories:
7
+ - translation
8
+ - text-classification
9
+ tags:
10
+ - language-learning
11
+ - flashcards
12
+ - spaced-repetition
13
+ - vocabulary
14
+ - jlpt
15
+ - hsk
16
+ - topik
17
+ - cefr
18
+ source_datasets:
19
+ - original
20
+ configs:
21
+ - config_name: cards
22
+ data_files: cards.csv
23
+ - config_name: decks
24
+ data_files: decks.csv
25
+ - config_name: languages
26
+ data_files: languages.csv
27
+ ---
28
+
29
+ # EverFlip Multilingual Flashcard Corpus
30
+
31
+ **24,164 flashcards across 81 languages**, organised into 1,573 themed decks and exam ladders (JLPT, HSK, TOPIK, DELE / DELF / Goethe / CILS / CAPLE).
32
+
33
+ Each card is a factual lexical correspondence — a word or phrase in the target language, its reading (for non-Latin scripts), and its English meaning.
34
+
35
+ ## Files
36
+ - `cards.csv` — every card (24,164 rows): `language_code, language, deck_slug, deck_name, front, meaning_en, back_raw, translation_raw`. Use **`meaning_en`** for the normalized English meaning (it resolves the field across Latin and non-Latin scripts).
37
+ - `decks.csv` — deck catalogue (1,573 rows).
38
+ - `languages.csv` — language catalogue (81 rows).
39
+ - `datapackage.json` — [frictionlessdata.io](https://frictionlessdata.io) Tabular Data Package descriptor.
40
+
41
+ ## License
42
+ **CC-BY-4.0** — free to share, adapt, and train on, with attribution to **EverFlip** (https://everflip.app).
43
+ Only the factual card data is released; the app, its FSRS scheduling, and any editorial prose are not included.
44
+
45
+ ## Source & citation
46
+ - Source: https://everflip.app
47
+ - How to cite (APA + BibTeX): https://everflip.app/dataset
48
+ - Also available as a crawlable JSON API: https://everflip.app/v1
cards.csv ADDED
The diff for this file is too large to render. See raw diff
 
datapackage.json ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "everflip-flashcards",
3
+ "title": "EverFlip Multilingual Flashcard Corpus",
4
+ "description": "Open flashcard corpus from EverFlip (everflip.app): 24164 cards across 81 languages, organised into 1573 themed decks and exam ladders (JLPT, HSK, TOPIK, DELE/DELF/Goethe/CILS/CAPLE). Each card is a factual lexical correspondence — a word/phrase, its reading where the script is non-Latin, and its English meaning.",
5
+ "licenses": [
6
+ {
7
+ "name": "CC-BY-4.0",
8
+ "title": "Creative Commons Attribution 4.0",
9
+ "path": "https://creativecommons.org/licenses/by/4.0/"
10
+ }
11
+ ],
12
+ "homepage": "https://everflip.app",
13
+ "sources": [
14
+ {
15
+ "title": "EverFlip",
16
+ "path": "https://everflip.app"
17
+ }
18
+ ],
19
+ "contributors": [
20
+ {
21
+ "title": "EverFlip",
22
+ "role": "author",
23
+ "path": "https://everflip.app"
24
+ }
25
+ ],
26
+ "keywords": [
27
+ "language learning",
28
+ "flashcards",
29
+ "spaced repetition",
30
+ "vocabulary",
31
+ "JLPT",
32
+ "HSK",
33
+ "TOPIK",
34
+ "CEFR",
35
+ "open dataset"
36
+ ],
37
+ "resources": [
38
+ {
39
+ "name": "cards",
40
+ "path": "cards.csv",
41
+ "format": "csv",
42
+ "mediatype": "text/csv",
43
+ "schema": {
44
+ "fields": [
45
+ {
46
+ "name": "language_code",
47
+ "type": "string",
48
+ "description": "ISO-ish language code (e.g. ja, es, zh)"
49
+ },
50
+ {
51
+ "name": "language",
52
+ "type": "string",
53
+ "description": "Language display name"
54
+ },
55
+ {
56
+ "name": "deck_slug",
57
+ "type": "string",
58
+ "description": "Deck identifier slug"
59
+ },
60
+ {
61
+ "name": "deck_name",
62
+ "type": "string",
63
+ "description": "Human deck name (theme)"
64
+ },
65
+ {
66
+ "name": "front",
67
+ "type": "string",
68
+ "description": "Prompt — word/phrase in the target language (native script)"
69
+ },
70
+ {
71
+ "name": "meaning_en",
72
+ "type": "string",
73
+ "description": "Normalized English meaning (use this column for the translation)"
74
+ },
75
+ {
76
+ "name": "back_raw",
77
+ "type": "string",
78
+ "description": "Raw card back: romanization/reading for non-Latin scripts, or the English for Latin scripts"
79
+ },
80
+ {
81
+ "name": "translation_raw",
82
+ "type": "string",
83
+ "description": "Raw translation field (English, populated mainly for non-Latin scripts)"
84
+ }
85
+ ]
86
+ }
87
+ },
88
+ {
89
+ "name": "decks",
90
+ "path": "decks.csv",
91
+ "format": "csv",
92
+ "mediatype": "text/csv"
93
+ },
94
+ {
95
+ "name": "languages",
96
+ "path": "languages.csv",
97
+ "format": "csv",
98
+ "mediatype": "text/csv"
99
+ }
100
+ ]
101
+ }
decks.csv ADDED
@@ -0,0 +1,1574 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ language_code,language,deck_slug,deck_name,card_count
2
+ af,Afrikaans,colors,Colors,12
3
+ af,Afrikaans,days,Days,11
4
+ af,Afrikaans,greetings,Greetings,12
5
+ af,Afrikaans,adjectives,Adjectives,16
6
+ af,Afrikaans,body,Body,16
7
+ af,Afrikaans,feelings,Feelings,15
8
+ af,Afrikaans,drinks,Drinks,15
9
+ af,Afrikaans,food,Food,15
10
+ af,Afrikaans,shopping,Shopping,15
11
+ af,Afrikaans,time,Time,15
12
+ af,Afrikaans,verbs,Verbs,16
13
+ af,Afrikaans,weather,Weather,15
14
+ af,Afrikaans,directions,Directions,15
15
+ af,Afrikaans,places,Places,15
16
+ af,Afrikaans,transport,Transport,15
17
+ af,Afrikaans,nouns,Nouns,15
18
+ af,Afrikaans,numbers,Numbers,15
19
+ af,Afrikaans,politeness,Politeness,12
20
+ af,Afrikaans,questions,Questions,12
21
+ af,Afrikaans,family,Family,12
22
+ am,Amharic,alphabet,Alphabet,36
23
+ am,Amharic,colors,Colors,11
24
+ am,Amharic,days,Days,10
25
+ am,Amharic,family,Family,10
26
+ am,Amharic,greetings,Greetings,22
27
+ am,Amharic,nouns,Common nouns,12
28
+ am,Amharic,numbers,Numbers,13
29
+ am,Amharic,politeness,Politeness,16
30
+ am,Amharic,questions,Questions,24
31
+ ar,Arabic,colors,Colors,14
32
+ ar,Arabic,days,Days of the week,13
33
+ ar,Arabic,greetings,Greetings,18
34
+ ar,Arabic,letters,Letters,28
35
+ ar,Arabic,level-3-adjectives,Adjectives,17
36
+ ar,Arabic,level-3-body,Body,17
37
+ ar,Arabic,level-3-feelings,Feelings,16
38
+ ar,Arabic,level-4-drinks,Drinks,16
39
+ ar,Arabic,level-4-food,Food,17
40
+ ar,Arabic,level-4-shopping,Shopping,16
41
+ ar,Arabic,level-5-time,Time,16
42
+ ar,Arabic,level-5-verbs,Verbs,17
43
+ ar,Arabic,level-5-weather,Weather,16
44
+ ar,Arabic,level-6-directions,Directions,16
45
+ ar,Arabic,level-6-places,Places,16
46
+ ar,Arabic,level-6-transport,Transport,16
47
+ ar,Arabic,nouns,Everyday nouns,24
48
+ ar,Arabic,numbers,Numbers,16
49
+ ar,Arabic,politeness,Politeness,19
50
+ ar,Arabic,questions,Questions & connectors,18
51
+ ar,Arabic,vocab-family,Family,24
52
+ az,Azerbaijani,colors,Colors,12
53
+ az,Azerbaijani,days,Days,11
54
+ az,Azerbaijani,greetings,Greetings,12
55
+ az,Azerbaijani,adjectives,Adjectives,16
56
+ az,Azerbaijani,body,Body,16
57
+ az,Azerbaijani,feelings,Feelings,15
58
+ az,Azerbaijani,drinks,Drinks,15
59
+ az,Azerbaijani,food,Food,15
60
+ az,Azerbaijani,shopping,Shopping,15
61
+ az,Azerbaijani,time,Time,15
62
+ az,Azerbaijani,verbs,Verbs,15
63
+ az,Azerbaijani,weather,Weather,15
64
+ az,Azerbaijani,directions,Directions,15
65
+ az,Azerbaijani,places,Places,15
66
+ az,Azerbaijani,transport,Transport,15
67
+ az,Azerbaijani,nouns,Nouns,15
68
+ az,Azerbaijani,numbers,Numbers,15
69
+ az,Azerbaijani,politeness,Politeness,12
70
+ az,Azerbaijani,questions,Questions,12
71
+ az,Azerbaijani,family,Family,12
72
+ bg,Bulgarian,colors,Colors,12
73
+ bg,Bulgarian,consonants,Consonants,20
74
+ bg,Bulgarian,days,Days,11
75
+ bg,Bulgarian,greetings,Greetings,12
76
+ bg,Bulgarian,nouns,Nouns,15
77
+ bg,Bulgarian,numbers,Numbers,15
78
+ bg,Bulgarian,politeness,Politeness,12
79
+ bg,Bulgarian,questions,Questions,12
80
+ bg,Bulgarian,family,Family,12
81
+ bg,Bulgarian,vowels,Vowels,6
82
+ bn,Bengali,colors,Colors,11
83
+ bn,Bengali,consonants,Consonants,20
84
+ bn,Bengali,family,Family,12
85
+ bn,Bengali,greetings,Greetings,12
86
+ bn,Bengali,level-3-adjectives,Adjectives,17
87
+ bn,Bengali,level-3-body,Body,17
88
+ bn,Bengali,level-3-feelings,Feelings,16
89
+ bn,Bengali,level-4-drinks,Drinks,16
90
+ bn,Bengali,level-4-food,Food,17
91
+ bn,Bengali,level-4-shopping,Shopping,16
92
+ bn,Bengali,level-5-time,Time,16
93
+ bn,Bengali,level-5-verbs,Verbs,17
94
+ bn,Bengali,level-5-weather,Weather,16
95
+ bn,Bengali,level-6-directions,Directions,16
96
+ bn,Bengali,level-6-places,Places,16
97
+ bn,Bengali,level-6-transport,Transport,16
98
+ bn,Bengali,numbers,Numbers,11
99
+ bn,Bengali,questions,Questions & connectors,20
100
+ bn,Bengali,vowels,Vowels,11
101
+ bs,Bosnian,colors,Colors,12
102
+ bs,Bosnian,days,Days,11
103
+ bs,Bosnian,greetings,Greetings,12
104
+ bs,Bosnian,adjectives,Adjectives,15
105
+ bs,Bosnian,body,Body,15
106
+ bs,Bosnian,feelings,Feelings,15
107
+ bs,Bosnian,drinks,Drinks,15
108
+ bs,Bosnian,food,Food,15
109
+ bs,Bosnian,shopping,Shopping,15
110
+ bs,Bosnian,time,Time,15
111
+ bs,Bosnian,verbs,Verbs,15
112
+ bs,Bosnian,weather,Weather,15
113
+ bs,Bosnian,directions,Directions,15
114
+ bs,Bosnian,places,Places,15
115
+ bs,Bosnian,transport,Transport,15
116
+ bs,Bosnian,nouns,Common Nouns,15
117
+ bs,Bosnian,numbers,Numbers,15
118
+ bs,Bosnian,politeness,Politeness,12
119
+ bs,Bosnian,questions,Question Words,12
120
+ bs,Bosnian,family,Family,12
121
+ ca,Catalan,colors,Colors,12
122
+ ca,Catalan,days,Days,11
123
+ ca,Catalan,greetings,Greetings,12
124
+ ca,Catalan,adjectives,Adjectives,15
125
+ ca,Catalan,body,Body,15
126
+ ca,Catalan,feelings,Feelings,15
127
+ ca,Catalan,drinks,Drinks,15
128
+ ca,Catalan,food,Food,15
129
+ ca,Catalan,shopping,Shopping,15
130
+ ca,Catalan,time,Time,15
131
+ ca,Catalan,verbs,Verbs,15
132
+ ca,Catalan,weather,Weather,15
133
+ ca,Catalan,directions,Directions,15
134
+ ca,Catalan,places,Places,15
135
+ ca,Catalan,transport,Transport,15
136
+ ca,Catalan,nouns,Nouns,15
137
+ ca,Catalan,numbers,Numbers,15
138
+ ca,Catalan,politeness,Politeness,12
139
+ ca,Catalan,questions,Questions,12
140
+ ca,Catalan,family,Family,12
141
+ cs,Czech,colors,Colors,11
142
+ cs,Czech,days,Days,11
143
+ cs,Czech,family,Family,8
144
+ cs,Czech,greetings,Greetings,12
145
+ cs,Czech,level-3-adjectives,Adjectives,17
146
+ cs,Czech,level-3-body,Body,17
147
+ cs,Czech,level-3-feelings,Feelings,16
148
+ cs,Czech,level-4-drinks,Drinks,16
149
+ cs,Czech,level-4-food,Food,17
150
+ cs,Czech,level-4-shopping,Shopping,16
151
+ cs,Czech,level-5-time,Time,16
152
+ cs,Czech,level-5-verbs,Verbs,17
153
+ cs,Czech,level-5-weather,Weather,16
154
+ cs,Czech,level-6-directions,Directions,16
155
+ cs,Czech,level-6-places,Places,16
156
+ cs,Czech,level-6-transport,Transport,16
157
+ cs,Czech,nouns,Everyday nouns,12
158
+ cs,Czech,numbers,Numbers,11
159
+ cs,Czech,politeness,Politeness,10
160
+ cs,Czech,present-regular,Present tense,18
161
+ cs,Czech,questions,Questions & connectors,15
162
+ cy,Welsh,colors,Colours,11
163
+ cy,Welsh,days,Days,11
164
+ cy,Welsh,greetings,Greetings,12
165
+ cy,Welsh,adjectives,Adjectives,15
166
+ cy,Welsh,body,Body,16
167
+ cy,Welsh,feelings,Feelings,14
168
+ cy,Welsh,drinks,Drinks,14
169
+ cy,Welsh,food,Food,16
170
+ cy,Welsh,shopping,Shopping,15
171
+ cy,Welsh,time,Time,15
172
+ cy,Welsh,verbs,Verbs,15
173
+ cy,Welsh,weather,Weather,14
174
+ cy,Welsh,directions,Directions,14
175
+ cy,Welsh,places,Places,15
176
+ cy,Welsh,transport,Transport,14
177
+ cy,Welsh,nouns,Everyday things,12
178
+ cy,Welsh,numbers,Numbers,11
179
+ cy,Welsh,politeness,Politeness,10
180
+ cy,Welsh,questions,Questions & connectors,16
181
+ cy,Welsh,family,Family,20
182
+ da,Danish,colors,Colors,11
183
+ da,Danish,days,Days of the week,10
184
+ da,Danish,greetings,Greetings,12
185
+ da,Danish,level-3-adjectives,Adjectives,17
186
+ da,Danish,level-3-body,Body,17
187
+ da,Danish,level-3-feelings,Feelings,16
188
+ da,Danish,level-4-drinks,Drinks,16
189
+ da,Danish,level-4-food,Food,17
190
+ da,Danish,level-4-shopping,Shopping,16
191
+ da,Danish,level-5-time,Time,16
192
+ da,Danish,level-5-verbs,Verbs,17
193
+ da,Danish,level-5-weather,Weather,16
194
+ da,Danish,level-6-directions,Directions,16
195
+ da,Danish,level-6-places,Places,16
196
+ da,Danish,level-6-transport,Transport,17
197
+ da,Danish,nouns,Everyday nouns,16
198
+ da,Danish,numbers,Numbers,15
199
+ da,Danish,politeness,Politeness,12
200
+ da,Danish,questions,Questions & connectors,12
201
+ da,Danish,vocab-family,Family,18
202
+ de,German,a2-patterns,A2 patterns,16
203
+ de,German,b1-patterns,B1 patterns,20
204
+ de,German,colors,Colors,11
205
+ de,German,dative,The dative case (Dativ),28
206
+ de,German,days,Days of the week,7
207
+ de,German,greetings,Greetings,10
208
+ de,German,konjunktiv2,The conditional (Konjunktiv II),28
209
+ de,German,adjectives,Adjectives,17
210
+ de,German,body,Body,17
211
+ de,German,feelings,Feelings,16
212
+ de,German,drinks,Drinks,16
213
+ de,German,food,Food,17
214
+ de,German,shopping,Shopping,16
215
+ de,German,time,Time,16
216
+ de,German,verbs,Verbs,17
217
+ de,German,weather,Weather,16
218
+ de,German,directions,Directions,16
219
+ de,German,places,Places,16
220
+ de,German,transport,Transport,16
221
+ de,German,nouns,Common nouns,10
222
+ de,German,numbers,Numbers 1–10,10
223
+ de,German,perfekt,Das Perfekt,28
224
+ de,German,politeness,"Yes, no & small talk",8
225
+ de,German,praeteritum,Das Präteritum,21
226
+ de,German,present-regular,Present tense,18
227
+ de,German,questions,Questions & connectors,18
228
+ de,German,family,Family,22
229
+ el,Greek,alphabet-1,Alphabet (1/2),12
230
+ el,Greek,alphabet-2,Alphabet (2/2),12
231
+ el,Greek,colors,Colors,9
232
+ el,Greek,family,Family,9
233
+ el,Greek,greetings,Greetings,10
234
+ el,Greek,adjectives,Adjectives,14
235
+ el,Greek,body,Body,14
236
+ el,Greek,feelings,Feelings,14
237
+ el,Greek,drinks,Drinks,14
238
+ el,Greek,food,Food,14
239
+ el,Greek,shopping,Shopping,14
240
+ el,Greek,time,Time,14
241
+ el,Greek,verbs,Verbs,14
242
+ el,Greek,weather,Weather,14
243
+ el,Greek,directions,Directions,14
244
+ el,Greek,places,Places,14
245
+ el,Greek,transport,Transport,14
246
+ el,Greek,numbers,Numbers,11
247
+ el,Greek,questions,Questions & connectors,17
248
+ eo,Esperanto,colors,Colors,11
249
+ eo,Esperanto,days,Days,11
250
+ eo,Esperanto,greetings,Greetings,12
251
+ eo,Esperanto,adjectives,Adjectives,15
252
+ eo,Esperanto,body,Body,16
253
+ eo,Esperanto,feelings,Feelings,14
254
+ eo,Esperanto,drinks,Drinks,14
255
+ eo,Esperanto,food,Food,14
256
+ eo,Esperanto,shopping,Shopping,14
257
+ eo,Esperanto,time,Time,15
258
+ eo,Esperanto,verbs,Verbs,15
259
+ eo,Esperanto,weather,Weather,14
260
+ eo,Esperanto,directions,Directions,14
261
+ eo,Esperanto,places,Places,14
262
+ eo,Esperanto,transport,Transport,14
263
+ eo,Esperanto,nouns,Everyday nouns,12
264
+ eo,Esperanto,numbers,Numbers,13
265
+ eo,Esperanto,politeness,Politeness,10
266
+ eo,Esperanto,questions,Questions & connectors,17
267
+ eo,Esperanto,family,Family,21
268
+ es,Spanish,a2-patterns,A2 patterns,16
269
+ es,Spanish,articles,Articles & gender,16
270
+ es,Spanish,b1-patterns,B1 patterns,20
271
+ es,Spanish,conditional,The conditional (condicional),24
272
+ es,Spanish,imperfect,The past (imperfecto),18
273
+ es,Spanish,adjectives,Basic adjectives,28
274
+ es,Spanish,body,Body,20
275
+ es,Spanish,feelings,Feelings,18
276
+ es,Spanish,drinks,Drinks,18
277
+ es,Spanish,food,Food,25
278
+ es,Spanish,shopping,Shopping,22
279
+ es,Spanish,time,Time,24
280
+ es,Spanish,verbs,Common verbs,28
281
+ es,Spanish,weather,Weather,16
282
+ es,Spanish,directions,Directions,18
283
+ es,Spanish,places,Places,22
284
+ es,Spanish,transport,Transport,20
285
+ es,Spanish,near-future,The near future,17
286
+ es,Spanish,present-irregular,Irregular present,26
287
+ es,Spanish,present-regular,Present tense,18
288
+ es,Spanish,present-subjunctive,The present subjunctive (presente de subjuntivo),30
289
+ es,Spanish,preterite,The past (pretérito),25
290
+ es,Spanish,questions,Questions & connectors,16
291
+ es,Spanish,ser-estar,Ser vs estar,16
292
+ es,Spanish,animals,Animals,20
293
+ es,Spanish,colors,Colors,15
294
+ es,Spanish,family,Family,22
295
+ es,Spanish,greetings,Greetings,22
296
+ es,Spanish,numbers,Numbers 1–10,24
297
+ eu,Basque,colors,Colors,12
298
+ eu,Basque,days,Days,11
299
+ eu,Basque,greetings,Greetings,12
300
+ eu,Basque,adjectives,Adjectives,16
301
+ eu,Basque,body,Body,16
302
+ eu,Basque,feelings,Feelings,15
303
+ eu,Basque,drinks,Drinks,15
304
+ eu,Basque,food,Food,16
305
+ eu,Basque,shopping,Shopping,15
306
+ eu,Basque,time,Time,15
307
+ eu,Basque,verbs,Verbs,16
308
+ eu,Basque,weather,Weather,15
309
+ eu,Basque,directions,Directions,15
310
+ eu,Basque,places,Places,15
311
+ eu,Basque,transport,Transport,15
312
+ eu,Basque,nouns,Nouns,15
313
+ eu,Basque,numbers,Numbers,15
314
+ eu,Basque,politeness,Politeness,12
315
+ eu,Basque,questions,Questions,12
316
+ eu,Basque,family,Family,14
317
+ fa,Persian,colors,Colors,10
318
+ fa,Persian,days,Days of the week,10
319
+ fa,Persian,greetings,Greetings,12
320
+ fa,Persian,letters,Letters,32
321
+ fa,Persian,level-3-adjectives,Adjectives,17
322
+ fa,Persian,level-3-body,Body,17
323
+ fa,Persian,level-3-feelings,Feelings,16
324
+ fa,Persian,level-4-drinks,Drinks,16
325
+ fa,Persian,level-4-food,Food,17
326
+ fa,Persian,level-4-shopping,Shopping,16
327
+ fa,Persian,level-5-time,Time,16
328
+ fa,Persian,level-5-verbs,Verbs,17
329
+ fa,Persian,level-5-weather,Weather,16
330
+ fa,Persian,level-6-directions,Directions,16
331
+ fa,Persian,level-6-places,Places,16
332
+ fa,Persian,level-6-transport,Transport,16
333
+ fa,Persian,nouns,Everyday nouns,12
334
+ fa,Persian,numbers,Numbers,14
335
+ fa,Persian,politeness,Politeness,10
336
+ fa,Persian,questions,Questions & connectors,12
337
+ fa,Persian,vocab-family,Family,14
338
+ fi,Finnish,colors,Colors,11
339
+ fi,Finnish,days,Days of the week,11
340
+ fi,Finnish,greetings,Greetings,14
341
+ fi,Finnish,level-3-adjectives,Adjectives,17
342
+ fi,Finnish,level-3-body,Body,17
343
+ fi,Finnish,level-3-feelings,Feelings,16
344
+ fi,Finnish,level-4-drinks,Drinks,16
345
+ fi,Finnish,level-4-food,Food,17
346
+ fi,Finnish,level-4-shopping,Shopping,16
347
+ fi,Finnish,level-5-time,Time,16
348
+ fi,Finnish,level-5-verbs,Verbs,17
349
+ fi,Finnish,level-5-weather,Weather,16
350
+ fi,Finnish,level-6-directions,Directions,16
351
+ fi,Finnish,level-6-places,Places,17
352
+ fi,Finnish,level-6-transport,Transport,17
353
+ fi,Finnish,nouns,Everyday nouns,16
354
+ fi,Finnish,numbers,Numbers,15
355
+ fi,Finnish,politeness,Politeness,12
356
+ fi,Finnish,questions,Questions & connectors,14
357
+ fi,Finnish,vocab-family,Family,16
358
+ fr,French,a2-patterns,A2 patterns,16
359
+ fr,French,articles,Articles & gender,18
360
+ fr,French,b1-patterns,B1 patterns,20
361
+ fr,French,conditional,The conditional (conditionnel présent),24
362
+ fr,French,etre-avoir,Être & avoir,18
363
+ fr,French,imparfait,The past (imparfait),20
364
+ fr,French,greetings,Greetings,22
365
+ fr,French,numbers,Numbers 1–10,24
366
+ fr,French,politeness,"Yes, no, and small talk",16
367
+ fr,French,colors,Colors,15
368
+ fr,French,days,Days of the week,12
369
+ fr,French,common-nouns,Common nouns,22
370
+ fr,French,adjectives,Basic adjectives,28
371
+ fr,French,body,Body,20
372
+ fr,French,family,Family,22
373
+ fr,French,drinks,Drinks,18
374
+ fr,French,food,Food,25
375
+ fr,French,shopping,Shopping,22
376
+ fr,French,time,Time,22
377
+ fr,French,verbs,Common verbs,28
378
+ fr,French,weather,Weather,16
379
+ fr,French,directions,Directions,18
380
+ fr,French,places,Places,22
381
+ fr,French,transport,Transport,20
382
+ fr,French,near-future,The near future,17
383
+ fr,French,passe-compose,The past (passé composé),21
384
+ fr,French,present-irregular,Irregular present,19
385
+ fr,French,present-regular,Present tense,18
386
+ fr,French,present-subjunctive,The present subjunctive (subjonctif présent),30
387
+ fr,French,questions,Questions & connectors,15
388
+ ga,Irish,colors,Colours,11
389
+ ga,Irish,days,Days,10
390
+ ga,Irish,greetings,Greetings,12
391
+ ga,Irish,adjectives,Adjectives,16
392
+ ga,Irish,body,Body,16
393
+ ga,Irish,feelings,Feelings,14
394
+ ga,Irish,drinks,Drinks,14
395
+ ga,Irish,food,Food,16
396
+ ga,Irish,shopping,Shopping,14
397
+ ga,Irish,time,Time,15
398
+ ga,Irish,verbs,Verbs,16
399
+ ga,Irish,weather,Weather,14
400
+ ga,Irish,directions,Directions,14
401
+ ga,Irish,places,Places,15
402
+ ga,Irish,transport,Transport,14
403
+ ga,Irish,nouns,Everyday things,11
404
+ ga,Irish,numbers,Numbers,11
405
+ ga,Irish,politeness,Politeness,10
406
+ ga,Irish,questions,Questions & connectors,15
407
+ ga,Irish,family,Family,22
408
+ gu,Gujarati,alphabet,Alphabet,36
409
+ gu,Gujarati,colors,Colors,11
410
+ gu,Gujarati,days,Days,10
411
+ gu,Gujarati,family,Family,23
412
+ gu,Gujarati,greetings,Greetings,20
413
+ gu,Gujarati,nouns,Common nouns,12
414
+ gu,Gujarati,numbers,Numbers,13
415
+ gu,Gujarati,politeness,Politeness,18
416
+ gu,Gujarati,questions,Questions,30
417
+ ha,Hausa,colors,Colors,11
418
+ ha,Hausa,days,Days of the week,12
419
+ ha,Hausa,greetings,Greetings,16
420
+ ha,Hausa,level-3-adjectives,Adjectives,17
421
+ ha,Hausa,level-3-body,Body,17
422
+ ha,Hausa,level-3-feelings,Feelings,16
423
+ ha,Hausa,level-4-drinks,Drinks,16
424
+ ha,Hausa,level-4-food,Food,17
425
+ ha,Hausa,level-4-shopping,Shopping,16
426
+ ha,Hausa,level-5-time,Time,16
427
+ ha,Hausa,level-5-verbs,Verbs,16
428
+ ha,Hausa,level-5-weather,Weather,16
429
+ ha,Hausa,level-6-directions,Directions,17
430
+ ha,Hausa,level-6-places,Places,16
431
+ ha,Hausa,level-6-transport,Transport,14
432
+ ha,Hausa,nouns,Everyday nouns,16
433
+ ha,Hausa,numbers,Numbers,15
434
+ ha,Hausa,politeness,Politeness,12
435
+ ha,Hausa,questions,Questions & connectors,12
436
+ ha,Hausa,vocab-family,Family,16
437
+ haw,Hawaiian,colors,Colours,11
438
+ haw,Hawaiian,days,Days,11
439
+ haw,Hawaiian,greetings,Greetings,11
440
+ haw,Hawaiian,adjectives,Adjectives,15
441
+ haw,Hawaiian,body,Body,15
442
+ haw,Hawaiian,feelings,Feelings,13
443
+ haw,Hawaiian,drinks,Drinks,13
444
+ haw,Hawaiian,food,Food,15
445
+ haw,Hawaiian,shopping,Shopping,14
446
+ haw,Hawaiian,time,Time,14
447
+ haw,Hawaiian,verbs,Verbs,15
448
+ haw,Hawaiian,weather,Weather,13
449
+ haw,Hawaiian,directions,Directions,13
450
+ haw,Hawaiian,places,Places,14
451
+ haw,Hawaiian,transport,Transport,12
452
+ haw,Hawaiian,nouns,Everyday things,12
453
+ haw,Hawaiian,numbers,Numbers,11
454
+ haw,Hawaiian,politeness,Politeness,10
455
+ haw,Hawaiian,questions,Questions & connectors,18
456
+ haw,Hawaiian,family,Family,22
457
+ he,Hebrew,colors,Colors,10
458
+ he,Hebrew,days,Days of the week,10
459
+ he,Hebrew,greetings,Greetings,12
460
+ he,Hebrew,letters,Letters,22
461
+ he,Hebrew,level-3-adjectives,Adjectives,17
462
+ he,Hebrew,level-3-body,Body,17
463
+ he,Hebrew,level-3-feelings,Feelings,16
464
+ he,Hebrew,level-4-drinks,Drinks,16
465
+ he,Hebrew,level-4-food,Food,17
466
+ he,Hebrew,level-4-shopping,Shopping,16
467
+ he,Hebrew,level-5-time,Time,16
468
+ he,Hebrew,level-5-verbs,Verbs,17
469
+ he,Hebrew,level-5-weather,Weather,16
470
+ he,Hebrew,level-6-directions,Directions,16
471
+ he,Hebrew,level-6-places,Places,16
472
+ he,Hebrew,level-6-transport,Transport,16
473
+ he,Hebrew,nouns,Everyday nouns,12
474
+ he,Hebrew,numbers,Numbers,14
475
+ he,Hebrew,politeness,Politeness,11
476
+ he,Hebrew,questions,Questions & connectors,12
477
+ he,Hebrew,vocab-family,Family,13
478
+ hi,Hindi,colors,Colors,9
479
+ hi,Hindi,consonants,Key consonants,15
480
+ hi,Hindi,family,Family,10
481
+ hi,Hindi,greetings,Greetings,10
482
+ hi,Hindi,adjectives,Adjectives,13
483
+ hi,Hindi,body,Body,14
484
+ hi,Hindi,feelings,Feelings,12
485
+ hi,Hindi,drinks,Drinks,12
486
+ hi,Hindi,food,Food,13
487
+ hi,Hindi,shopping,Shopping,12
488
+ hi,Hindi,time,Time,12
489
+ hi,Hindi,verbs,Verbs,14
490
+ hi,Hindi,weather,Weather,12
491
+ hi,Hindi,directions,Directions,12
492
+ hi,Hindi,places,Places,12
493
+ hi,Hindi,transport,Transport,12
494
+ hi,Hindi,numbers,Numbers,12
495
+ hi,Hindi,questions,Questions & connectors,18
496
+ hi,Hindi,vowels,Vowels,12
497
+ hu,Hungarian,colors,Colors,11
498
+ hu,Hungarian,days,Days of the week,10
499
+ hu,Hungarian,greetings,Greetings,14
500
+ hu,Hungarian,level-3-adjectives,Adjectives,17
501
+ hu,Hungarian,level-3-body,Body,17
502
+ hu,Hungarian,level-3-feelings,Feelings,16
503
+ hu,Hungarian,level-4-drinks,Drinks,16
504
+ hu,Hungarian,level-4-food,Food,17
505
+ hu,Hungarian,level-4-shopping,Shopping,16
506
+ hu,Hungarian,level-5-time,Time,16
507
+ hu,Hungarian,level-5-verbs,Verbs,17
508
+ hu,Hungarian,level-5-weather,Weather,16
509
+ hu,Hungarian,level-6-directions,Directions,16
510
+ hu,Hungarian,level-6-places,Places,16
511
+ hu,Hungarian,level-6-transport,Transport,17
512
+ hu,Hungarian,nouns,Everyday nouns,16
513
+ hu,Hungarian,numbers,Numbers,15
514
+ hu,Hungarian,politeness,Politeness,12
515
+ hu,Hungarian,questions,Questions & connectors,12
516
+ hu,Hungarian,vocab-family,Family,18
517
+ hy,Armenian,colors,Colors,12
518
+ hy,Armenian,consonants,Consonants,30
519
+ hy,Armenian,days,Days,10
520
+ hy,Armenian,greetings,Greetings,12
521
+ hy,Armenian,nouns,Nouns,15
522
+ hy,Armenian,numbers,Numbers,15
523
+ hy,Armenian,politeness,Politeness,12
524
+ hy,Armenian,questions,Questions,12
525
+ hy,Armenian,family,Family,12
526
+ hy,Armenian,vowels,Vowels,8
527
+ id,Indonesian,colors,Colors,11
528
+ id,Indonesian,days,Days of the week,7
529
+ id,Indonesian,greetings,Greetings,10
530
+ id,Indonesian,adjectives,Adjectives,18
531
+ id,Indonesian,body,Body,18
532
+ id,Indonesian,feelings,Feelings,16
533
+ id,Indonesian,drinks,Drinks,16
534
+ id,Indonesian,food,Food,18
535
+ id,Indonesian,shopping,Shopping,17
536
+ id,Indonesian,time,Time,18
537
+ id,Indonesian,verbs,Verbs,20
538
+ id,Indonesian,weather,Weather,16
539
+ id,Indonesian,directions,Directions,18
540
+ id,Indonesian,places,Places,18
541
+ id,Indonesian,transport,Transport,17
542
+ id,Indonesian,nouns,Everyday words,10
543
+ id,Indonesian,numbers,Numbers 1–10,10
544
+ id,Indonesian,politeness,Politeness,8
545
+ id,Indonesian,questions,Questions & connectors,18
546
+ id,Indonesian,family,Family,21
547
+ ig,Igbo,colors,Colors,12
548
+ ig,Igbo,days,Days,11
549
+ ig,Igbo,greetings,Greetings,12
550
+ ig,Igbo,adjectives,Adjectives,16
551
+ ig,Igbo,body,Body,15
552
+ ig,Igbo,feelings,Feelings,15
553
+ ig,Igbo,drinks,Drinks,15
554
+ ig,Igbo,food,Food,15
555
+ ig,Igbo,shopping,Shopping,15
556
+ ig,Igbo,time,Time,15
557
+ ig,Igbo,verbs,Verbs,15
558
+ ig,Igbo,weather,Weather,15
559
+ ig,Igbo,directions,Directions,15
560
+ ig,Igbo,places,Places,15
561
+ ig,Igbo,transport,Transport,15
562
+ ig,Igbo,nouns,Nouns,15
563
+ ig,Igbo,numbers,Numbers,15
564
+ ig,Igbo,politeness,Politeness,12
565
+ ig,Igbo,questions,Questions,12
566
+ ig,Igbo,family,Family,12
567
+ it,Italian,a2-patterns,A2 patterns,17
568
+ it,Italian,b1-patterns,B1 patterns,22
569
+ it,Italian,colors,Colors,11
570
+ it,Italian,conditional,The conditional (condizionale presente),22
571
+ it,Italian,days,Days of the week,7
572
+ it,Italian,greetings,Greetings,10
573
+ it,Italian,imperfetto,L'imperfetto,21
574
+ it,Italian,adjectives,Adjectives,18
575
+ it,Italian,body,Body,18
576
+ it,Italian,feelings,Feelings,17
577
+ it,Italian,drinks,Drinks,16
578
+ it,Italian,food,Food,18
579
+ it,Italian,shopping,Shopping,17
580
+ it,Italian,time,Time,17
581
+ it,Italian,verbs,Verbs,18
582
+ it,Italian,weather,Weather,16
583
+ it,Italian,directions,Directions,17
584
+ it,Italian,places,Places,17
585
+ it,Italian,transport,Transport,16
586
+ it,Italian,nouns,Common nouns,10
587
+ it,Italian,numbers,Numbers 1–10,10
588
+ it,Italian,passato-prossimo,Il passato prossimo,28
589
+ it,Italian,politeness,"Yes, no & small talk",8
590
+ it,Italian,present-regular,Present tense,18
591
+ it,Italian,present-subjunctive,The present subjunctive (congiuntivo presente),30
592
+ it,Italian,questions,Questions & connectors,17
593
+ it,Italian,family,Family,23
594
+ ja,Japanese,adjectives-conjugation,Adjective forms,16
595
+ ja,Japanese,adjectives-na,な-adjectives,18
596
+ ja,Japanese,counters-specialized,Counters: specialized,25
597
+ ja,Japanese,counters,Counters: everyday,36
598
+ ja,Japanese,dates,Days & dates,20
599
+ ja,Japanese,demonstratives,"This, that, here, there",19
600
+ ja,Japanese,existence-position,Where things are,18
601
+ ja,Japanese,hiragana,Hiragana,46
602
+ ja,Japanese,kanji-nature,Kanji: days & nature,10
603
+ ja,Japanese,kanji-numbers,Kanji: numbers,10
604
+ ja,Japanese,kanji-people,Kanji: people & size,10
605
+ ja,Japanese,kanji-position,Kanji: position & common,10
606
+ ja,Japanese,katakana,Katakana,46
607
+ ja,Japanese,hiragana-dakuten,Hiragana — dakuten + handakuten,25
608
+ ja,Japanese,hiragana-yoon,Hiragana — yōon,33
609
+ ja,Japanese,katakana-dakuten,Katakana — dakuten + handakuten,25
610
+ ja,Japanese,katakana-yoon,Katakana — yōon,33
611
+ ja,Japanese,adjectives,い-adjectives,26
612
+ ja,Japanese,body,Body,20
613
+ ja,Japanese,feelings,Feelings,18
614
+ ja,Japanese,drinks,Drinks,18
615
+ ja,Japanese,food,Food,25
616
+ ja,Japanese,shopping,Shopping,22
617
+ ja,Japanese,time,Time,17
618
+ ja,Japanese,verbs,Common verbs,28
619
+ ja,Japanese,weather,Weather,16
620
+ ja,Japanese,directions,Directions,18
621
+ ja,Japanese,places,Places,22
622
+ ja,Japanese,transport,Transport,20
623
+ ja,Japanese,months,Months,16
624
+ ja,Japanese,n1-grammar-2,N1 grammar II,21
625
+ ja,Japanese,n1-grammar-3,N1 grammar III,21
626
+ ja,Japanese,n1-grammar-4,N1 grammar IV,21
627
+ ja,Japanese,n1-grammar-5,N1 grammar V,21
628
+ ja,Japanese,n1-grammar-6,N1 grammar VI,21
629
+ ja,Japanese,n1-grammar-7,N1 grammar VII,21
630
+ ja,Japanese,n1-grammar-8,N1 grammar VIII,21
631
+ ja,Japanese,n1-grammar-cloze,N1 grammar in context,20
632
+ ja,Japanese,n1-grammar,N1 grammar I,21
633
+ ja,Japanese,n1-kanji-abstract-2,Kanji: N1 abstract II,18
634
+ ja,Japanese,n1-kanji-abstract,Kanji: N1 abstract,20
635
+ ja,Japanese,n1-kanji-body-mind,"Kanji: N1 body, mind & action",18
636
+ ja,Japanese,n1-kanji-formal-2,Kanji: N1 formal & written II,18
637
+ ja,Japanese,n1-kanji-formal,Kanji: N1 formal & written,20
638
+ ja,Japanese,n1-kanji-nature-society-2,Kanji: N1 nature & society II,18
639
+ ja,Japanese,n1-kanji-nature-society,Kanji: N1 nature & society,20
640
+ ja,Japanese,n1-vocab-adjectives-2,N1 adjectives II,20
641
+ ja,Japanese,n1-vocab-adjectives,N1 adjectives,20
642
+ ja,Japanese,n1-vocab-adverbs,N1 adverbs & onomatopoeia,20
643
+ ja,Japanese,n1-vocab-nouns-2,N1 nouns II,20
644
+ ja,Japanese,n1-vocab-nouns-3,N1 nouns III,20
645
+ ja,Japanese,n1-vocab-nouns-4,N1 nouns IV,20
646
+ ja,Japanese,n1-vocab-nouns,N1 nouns I,20
647
+ ja,Japanese,n1-vocab-suru-2,N1 する-verbs & compounds II,20
648
+ ja,Japanese,n1-vocab-suru,N1 する-verbs & compounds,20
649
+ ja,Japanese,n1-vocab-verbs-2,N1 verbs II,20
650
+ ja,Japanese,n1-vocab-verbs,N1 verbs,20
651
+ ja,Japanese,n2-grammar-2,N2 grammar II,21
652
+ ja,Japanese,n2-grammar-3,N2 grammar III,21
653
+ ja,Japanese,n2-grammar-4,N2 grammar IV,20
654
+ ja,Japanese,n2-grammar-5,N2 grammar V,21
655
+ ja,Japanese,n2-grammar-6,N2 grammar VI,21
656
+ ja,Japanese,n2-grammar-7,N2 grammar VII,21
657
+ ja,Japanese,n2-grammar-cloze,N2 grammar in context,20
658
+ ja,Japanese,n2-grammar,N2 grammar I,21
659
+ ja,Japanese,n2-kanji-abstract-2,Kanji: N2 abstract II,18
660
+ ja,Japanese,n2-kanji-abstract,Kanji: N2 abstract,20
661
+ ja,Japanese,n2-kanji-everyday-2,Kanji: N2 everyday II,18
662
+ ja,Japanese,n2-kanji-everyday,Kanji: N2 advanced everyday,20
663
+ ja,Japanese,n2-kanji-society-2,Kanji: N2 society II,18
664
+ ja,Japanese,n2-kanji-society,Kanji: N2 society & news,20
665
+ ja,Japanese,n2-vocab-adjectives-2,N2 adjectives II,20
666
+ ja,Japanese,n2-vocab-adjectives,N2 adjectives,20
667
+ ja,Japanese,n2-vocab-adverbs-2,N2 adverbs II,20
668
+ ja,Japanese,n2-vocab-adverbs,N2 adverbs & connectors,20
669
+ ja,Japanese,n2-vocab-nouns-2,N2 nouns II,20
670
+ ja,Japanese,n2-vocab-nouns-3,N2 nouns III,20
671
+ ja,Japanese,n2-vocab-nouns-4,N2 nouns IV,20
672
+ ja,Japanese,n2-vocab-nouns,N2 nouns,20
673
+ ja,Japanese,n2-vocab-verbs-2,N2 verbs II,20
674
+ ja,Japanese,n2-vocab-verbs-3,N2 verbs III,20
675
+ ja,Japanese,n2-vocab-verbs,N2 verbs,20
676
+ ja,Japanese,n3-grammar-2,N3 grammar II,17
677
+ ja,Japanese,n3-grammar-3,N3 grammar III,16
678
+ ja,Japanese,n3-grammar-4,N3 grammar IV,17
679
+ ja,Japanese,n3-grammar-5,N3 grammar V,16
680
+ ja,Japanese,n3-grammar-6,N3 grammar VI,17
681
+ ja,Japanese,n3-grammar-7,N3 grammar VII,19
682
+ ja,Japanese,n3-grammar-8,N3 grammar VIII,17
683
+ ja,Japanese,n3-grammar-9,N3 grammar IX,16
684
+ ja,Japanese,n3-grammar,N3 grammar I,16
685
+ ja,Japanese,n3-kanji-abstract,Kanji: ideas & abstractions,28
686
+ ja,Japanese,n3-kanji-actions,Kanji: actions,40
687
+ ja,Japanese,n3-kanji-everyday,Kanji: everyday life,25
688
+ ja,Japanese,n3-kanji-people-society,Kanji: people & society,30
689
+ ja,Japanese,n3-vocab-adjectives-2,N3 adjectives III,19
690
+ ja,Japanese,n3-vocab-adjectives,N3 adjectives,18
691
+ ja,Japanese,n3-vocab-adverbs-2,N3 adverbs & connectors II,17
692
+ ja,Japanese,n3-vocab-adverbs,N3 adverbs & connectors,20
693
+ ja,Japanese,n3-vocab-katakana,N3 loanwords (katakana),18
694
+ ja,Japanese,n3-vocab-na-adjectives,N3 adjectives II,19
695
+ ja,Japanese,n3-vocab-nouns-2,N3 society & daily-life nouns,20
696
+ ja,Japanese,n3-vocab-nouns-3,N3 abstract & concept nouns,20
697
+ ja,Japanese,n3-vocab-nouns-4,N3 daily & concrete nouns,20
698
+ ja,Japanese,n3-vocab-nouns,N3 nouns,20
699
+ ja,Japanese,n3-vocab-verbs-2,N3 verbs II,20
700
+ ja,Japanese,n3-vocab-verbs-3,N3 verbs III,20
701
+ ja,Japanese,n3-vocab-verbs,N3 verbs,20
702
+ ja,Japanese,n4-feelings-emotions,Deeper feelings,18
703
+ ja,Japanese,n4-feelings-opinions,Opinions & ideas,20
704
+ ja,Japanese,n4-grammar-2,N4 grammar II,12
705
+ ja,Japanese,n4-grammar,N4 stepping stones,8
706
+ ja,Japanese,n4-health-clinic,At the clinic,20
707
+ ja,Japanese,n4-health-symptoms,Symptoms & how you feel,20
708
+ ja,Japanese,n4-home-items,Household items,19
709
+ ja,Japanese,n4-home-rooms,Rooms & furniture,19
710
+ ja,Japanese,n4-home-verbs,Daily-routine verbs,15
711
+ ja,Japanese,n4-work-jobs,Jobs & workplace,20
712
+ ja,Japanese,n4-work-school,School & study,20
713
+ ja,Japanese,n4-work-verbs,Getting things done,16
714
+ ja,Japanese,numbers-prices,Numbers & prices,20
715
+ ja,Japanese,particles,Particles,18
716
+ ja,Japanese,patterns,Sentence patterns,16
717
+ ja,Japanese,practice-particles,Particles — practice,14
718
+ ja,Japanese,questions,Question words,16
719
+ ja,Japanese,te-form,The て-form,12
720
+ ja,Japanese,telling-time,Telling time,17
721
+ ja,Japanese,verbs-more,More everyday verbs,12
722
+ ja,Japanese,verbs-polite,Polite forms (〜ます),16
723
+ ja,Japanese,animals,Animals,20
724
+ ja,Japanese,colors,Colors,15
725
+ ja,Japanese,family,Family,22
726
+ ja,Japanese,greetings,Greetings,22
727
+ ja,Japanese,numbers,Numbers 1–10,20
728
+ jv,Javanese,colors,Colors,12
729
+ jv,Javanese,days,Days,11
730
+ jv,Javanese,greetings,Greetings,12
731
+ jv,Javanese,adjectives,Adjectives,16
732
+ jv,Javanese,body,Body,16
733
+ jv,Javanese,feelings,Feelings,15
734
+ jv,Javanese,drinks,Drinks,15
735
+ jv,Javanese,food,Food,15
736
+ jv,Javanese,shopping,Shopping,15
737
+ jv,Javanese,time,Time,15
738
+ jv,Javanese,verbs,Verbs,16
739
+ jv,Javanese,weather,Weather,15
740
+ jv,Javanese,directions,Directions,16
741
+ jv,Javanese,places,Places,15
742
+ jv,Javanese,transport,Transport,15
743
+ jv,Javanese,nouns,Nouns,15
744
+ jv,Javanese,numbers,Numbers,15
745
+ jv,Javanese,politeness,Politeness,12
746
+ jv,Javanese,questions,Questions,12
747
+ jv,Javanese,family,Family,12
748
+ ka,Georgian,colors,Colors,12
749
+ ka,Georgian,consonants,Consonants,28
750
+ ka,Georgian,days,Days,10
751
+ ka,Georgian,greetings,Greetings,12
752
+ ka,Georgian,nouns,Nouns,15
753
+ ka,Georgian,numbers,Numbers,15
754
+ ka,Georgian,politeness,Politeness,12
755
+ ka,Georgian,questions,Questions,12
756
+ ka,Georgian,family,Family,12
757
+ ka,Georgian,vowels,Vowels,5
758
+ km,Khmer,alphabet,Alphabet,31
759
+ km,Khmer,colors,Colors,11
760
+ km,Khmer,days,Days,10
761
+ km,Khmer,family,Family,17
762
+ km,Khmer,greetings,Greetings,18
763
+ km,Khmer,nouns,Common nouns,12
764
+ km,Khmer,numbers,Numbers,13
765
+ km,Khmer,politeness,Politeness,16
766
+ km,Khmer,questions,Questions,32
767
+ kn,Kannada,colors,Colors,12
768
+ kn,Kannada,consonants,Consonants,20
769
+ kn,Kannada,days,Days,11
770
+ kn,Kannada,greetings,Greetings,12
771
+ kn,Kannada,nouns,Nouns,15
772
+ kn,Kannada,numbers,Numbers,15
773
+ kn,Kannada,politeness,Politeness,12
774
+ kn,Kannada,questions,Questions,12
775
+ kn,Kannada,family,Family,12
776
+ kn,Kannada,vowels,Vowels,13
777
+ ko,Korean,colors,Colors,10
778
+ ko,Korean,family,Family,10
779
+ ko,Korean,greetings,Greetings,10
780
+ ko,Korean,hangul-compound,Hangul — compound vowels,11
781
+ ko,Korean,hangul-consonants,Hangul — basic consonants,14
782
+ ko,Korean,hangul-double,Hangul — tense consonants,5
783
+ ko,Korean,hangul-vowels,Hangul — basic vowels,10
784
+ ko,Korean,adjectives,Adjectives,14
785
+ ko,Korean,body,Body,14
786
+ ko,Korean,feelings,Feelings,13
787
+ ko,Korean,drinks,Drinks,12
788
+ ko,Korean,food,Food,14
789
+ ko,Korean,shopping,Shopping,13
790
+ ko,Korean,time,Time,14
791
+ ko,Korean,verbs,Verbs,14
792
+ ko,Korean,weather,Weather,12
793
+ ko,Korean,directions,Directions,13
794
+ ko,Korean,places,Places,13
795
+ ko,Korean,transport,Transport,12
796
+ ko,Korean,numbers,Numbers 1–10,10
797
+ ko,Korean,questions,Questions & connectors,20
798
+ ko,Korean,topik1-grammar-2,TOPIK I grammar II,20
799
+ ko,Korean,topik1-grammar-3,TOPIK I grammar III,20
800
+ ko,Korean,topik1-grammar,TOPIK I grammar I,20
801
+ ko,Korean,topik1-vocab-adjectives,TOPIK I adjectives,22
802
+ ko,Korean,topik1-vocab-nouns,TOPIK I nouns,24
803
+ ko,Korean,topik1-vocab-time-place,TOPIK I time & place words,22
804
+ ko,Korean,topik1-vocab-verbs,TOPIK I verbs,22
805
+ la,Latin,colors,Colors,11
806
+ la,Latin,days,Days of the week,7
807
+ la,Latin,greetings,Greetings,10
808
+ la,Latin,adjectives,Adjectives,18
809
+ la,Latin,body,Body,18
810
+ la,Latin,feelings,Feelings,17
811
+ la,Latin,drinks,Drinks,15
812
+ la,Latin,food,Food,18
813
+ la,Latin,shopping,Shopping,16
814
+ la,Latin,time,Time,17
815
+ la,Latin,verbs,Verbs,18
816
+ la,Latin,weather,Weather,16
817
+ la,Latin,directions,Directions,18
818
+ la,Latin,places,Places,17
819
+ la,Latin,transport,Transport,16
820
+ la,Latin,nouns,Everyday words,10
821
+ la,Latin,numbers,Numbers 1–10,10
822
+ la,Latin,politeness,Politeness,8
823
+ la,Latin,questions,Questions & connectors,20
824
+ la,Latin,family,Family,20
825
+ lo,Lao,colors,Colors,12
826
+ lo,Lao,consonants,Consonants,22
827
+ lo,Lao,days,Days,11
828
+ lo,Lao,greetings,Greetings,12
829
+ lo,Lao,nouns,Nouns,15
830
+ lo,Lao,numbers,Numbers,15
831
+ lo,Lao,politeness,Politeness,12
832
+ lo,Lao,questions,Questions,12
833
+ lo,Lao,family,Family,12
834
+ lo,Lao,vowels,Vowels,10
835
+ lt,Lithuanian,colors,Colors,12
836
+ lt,Lithuanian,days,Days,11
837
+ lt,Lithuanian,greetings,Greetings,12
838
+ lt,Lithuanian,adjectives,Adjectives,15
839
+ lt,Lithuanian,body,Body,15
840
+ lt,Lithuanian,feelings,Feelings,15
841
+ lt,Lithuanian,drinks,Drinks,15
842
+ lt,Lithuanian,food,Food,15
843
+ lt,Lithuanian,shopping,Shopping,15
844
+ lt,Lithuanian,time,Time,15
845
+ lt,Lithuanian,verbs,Verbs,15
846
+ lt,Lithuanian,weather,Weather,15
847
+ lt,Lithuanian,directions,Directions,15
848
+ lt,Lithuanian,places,Places,15
849
+ lt,Lithuanian,transport,Transport,15
850
+ lt,Lithuanian,nouns,Nouns,15
851
+ lt,Lithuanian,numbers,Numbers,15
852
+ lt,Lithuanian,politeness,Politeness,12
853
+ lt,Lithuanian,questions,Questions,12
854
+ lt,Lithuanian,family,Family,12
855
+ mi,Maori,colors,Colours,11
856
+ mi,Maori,days,Days,11
857
+ mi,Maori,greetings,Greetings,12
858
+ mi,Maori,adjectives,Adjectives,15
859
+ mi,Maori,body,Body,15
860
+ mi,Maori,feelings,Feelings,13
861
+ mi,Maori,drinks,Drinks,13
862
+ mi,Maori,food,Food,15
863
+ mi,Maori,shopping,Shopping,13
864
+ mi,Maori,time,Time,14
865
+ mi,Maori,verbs,Verbs,15
866
+ mi,Maori,weather,Weather,13
867
+ mi,Maori,directions,Directions,13
868
+ mi,Maori,places,Places,13
869
+ mi,Maori,transport,Transport,12
870
+ mi,Maori,nouns,Everyday things,12
871
+ mi,Maori,numbers,Numbers,12
872
+ mi,Maori,politeness,Politeness,10
873
+ mi,Maori,questions,Questions & connectors,20
874
+ mi,Maori,family,Family,22
875
+ ml,Malayalam,colors,Colors,12
876
+ ml,Malayalam,consonants,Consonants,25
877
+ ml,Malayalam,days,Days,11
878
+ ml,Malayalam,greetings,Greetings,12
879
+ ml,Malayalam,nouns,Nouns,15
880
+ ml,Malayalam,numbers,Numbers,15
881
+ ml,Malayalam,politeness,Politeness,12
882
+ ml,Malayalam,questions,Questions,12
883
+ ml,Malayalam,family,Family,12
884
+ ml,Malayalam,vowels,Vowels,13
885
+ mr,Marathi,alphabet,Alphabet,37
886
+ mr,Marathi,colors,Colors,11
887
+ mr,Marathi,days,Days,10
888
+ mr,Marathi,family,Family,10
889
+ mr,Marathi,greetings,Greetings,16
890
+ mr,Marathi,nouns,Common nouns,12
891
+ mr,Marathi,numbers,Numbers,13
892
+ mr,Marathi,politeness,Politeness,16
893
+ mr,Marathi,questions,Questions,30
894
+ ms,Malay,colors,Colors,11
895
+ ms,Malay,days,Days,10
896
+ ms,Malay,family,Family,12
897
+ ms,Malay,greetings,Greetings,16
898
+ ms,Malay,adjectives,Adjectives,16
899
+ ms,Malay,body,Body,16
900
+ ms,Malay,feelings,Feelings,15
901
+ ms,Malay,drinks,Drinks,15
902
+ ms,Malay,food,Food,15
903
+ ms,Malay,shopping,Shopping,15
904
+ ms,Malay,time,Time,15
905
+ ms,Malay,verbs,Verbs,16
906
+ ms,Malay,weather,Weather,15
907
+ ms,Malay,directions,Directions,15
908
+ ms,Malay,places,Places,15
909
+ ms,Malay,transport,Transport,15
910
+ ms,Malay,nouns,Common nouns,12
911
+ ms,Malay,numbers,Numbers,13
912
+ ms,Malay,politeness,Politeness,10
913
+ ms,Malay,questions,Questions,20
914
+ my,Burmese,alphabet,Alphabet,33
915
+ my,Burmese,colors,Colors,11
916
+ my,Burmese,days,Days,12
917
+ my,Burmese,family,Family,12
918
+ my,Burmese,greetings,Greetings,24
919
+ my,Burmese,nouns,Common nouns,12
920
+ my,Burmese,numbers,Numbers,13
921
+ my,Burmese,politeness,Politeness,18
922
+ my,Burmese,questions,Questions,32
923
+ ne,Nepali,colors,Colors,12
924
+ ne,Nepali,days,Days,11
925
+ ne,Nepali,greetings,Greetings,12
926
+ ne,Nepali,adjectives,Adjectives,16
927
+ ne,Nepali,body,Body,16
928
+ ne,Nepali,feelings,Feelings,15
929
+ ne,Nepali,drinks,Drinks,15
930
+ ne,Nepali,food,Food,15
931
+ ne,Nepali,shopping,Shopping,15
932
+ ne,Nepali,time,Time,15
933
+ ne,Nepali,verbs,Verbs,16
934
+ ne,Nepali,weather,Weather,15
935
+ ne,Nepali,directions,Directions,16
936
+ ne,Nepali,places,Places,15
937
+ ne,Nepali,transport,Transport,15
938
+ ne,Nepali,nouns,Nouns,15
939
+ ne,Nepali,numbers,Numbers,15
940
+ ne,Nepali,politeness,Politeness,12
941
+ ne,Nepali,questions,Questions,12
942
+ ne,Nepali,family,Family,12
943
+ nl,Dutch,colors,Colors,11
944
+ nl,Dutch,days,Days of the week,7
945
+ nl,Dutch,greetings,Greetings,10
946
+ nl,Dutch,adjectives,Adjectives,18
947
+ nl,Dutch,body,Body,18
948
+ nl,Dutch,feelings,Feelings,17
949
+ nl,Dutch,drinks,Drinks,16
950
+ nl,Dutch,food,Food,18
951
+ nl,Dutch,shopping,Shopping,17
952
+ nl,Dutch,time,Time,18
953
+ nl,Dutch,verbs,Verbs,18
954
+ nl,Dutch,weather,Weather,16
955
+ nl,Dutch,directions,Directions,17
956
+ nl,Dutch,places,Places,17
957
+ nl,Dutch,transport,Transport,16
958
+ nl,Dutch,nouns,Common nouns,10
959
+ nl,Dutch,numbers,Numbers 1–10,10
960
+ nl,Dutch,politeness,"Yes, no & small talk",8
961
+ nl,Dutch,present-regular,Present tense,18
962
+ nl,Dutch,questions,Questions & connectors,16
963
+ nl,Dutch,family,Family,20
964
+ no,Norwegian,colors,Colors,11
965
+ no,Norwegian,days,Days,11
966
+ no,Norwegian,family,Family,8
967
+ no,Norwegian,greetings,Greetings,12
968
+ no,Norwegian,level-3-adjectives,Adjectives,17
969
+ no,Norwegian,level-3-body,Body,17
970
+ no,Norwegian,level-3-feelings,Feelings,16
971
+ no,Norwegian,level-4-drinks,Drinks,16
972
+ no,Norwegian,level-4-food,Food,17
973
+ no,Norwegian,level-4-shopping,Shopping,16
974
+ no,Norwegian,level-5-time,Time,16
975
+ no,Norwegian,level-5-verbs,Verbs,17
976
+ no,Norwegian,level-5-weather,Weather,16
977
+ no,Norwegian,level-6-directions,Directions,16
978
+ no,Norwegian,level-6-places,Places,16
979
+ no,Norwegian,level-6-transport,Transport,16
980
+ no,Norwegian,nouns,Everyday nouns,12
981
+ no,Norwegian,numbers,Numbers,11
982
+ no,Norwegian,politeness,Politeness,10
983
+ no,Norwegian,questions,Questions & connectors,18
984
+ ny,Chichewa,colors,Colors,12
985
+ ny,Chichewa,days,Days,11
986
+ ny,Chichewa,greetings,Greetings,12
987
+ ny,Chichewa,adjectives,Adjectives,15
988
+ ny,Chichewa,body,Body,16
989
+ ny,Chichewa,feelings,Feelings,15
990
+ ny,Chichewa,drinks,Drinks,15
991
+ ny,Chichewa,food,Food,15
992
+ ny,Chichewa,shopping,Shopping,15
993
+ ny,Chichewa,time,Time,15
994
+ ny,Chichewa,verbs,Verbs,15
995
+ ny,Chichewa,weather,Weather,15
996
+ ny,Chichewa,directions,Directions,15
997
+ ny,Chichewa,places,Places,15
998
+ ny,Chichewa,transport,Transport,15
999
+ ny,Chichewa,nouns,Nouns,15
1000
+ ny,Chichewa,numbers,Numbers,15
1001
+ ny,Chichewa,politeness,Politeness,12
1002
+ ny,Chichewa,questions,Questions,12
1003
+ ny,Chichewa,family,Family,12
1004
+ om,Oromo,colors,Colors,12
1005
+ om,Oromo,days,Days,11
1006
+ om,Oromo,greetings,Greetings,12
1007
+ om,Oromo,adjectives,Adjectives,15
1008
+ om,Oromo,body,Body,15
1009
+ om,Oromo,feelings,Feelings,15
1010
+ om,Oromo,drinks,Drinks,15
1011
+ om,Oromo,food,Food,15
1012
+ om,Oromo,shopping,Shopping,15
1013
+ om,Oromo,time,Time,15
1014
+ om,Oromo,verbs,Verbs,15
1015
+ om,Oromo,weather,Weather,15
1016
+ om,Oromo,directions,Directions,15
1017
+ om,Oromo,places,Places,15
1018
+ om,Oromo,transport,Transport,15
1019
+ om,Oromo,nouns,Nouns,15
1020
+ om,Oromo,numbers,Numbers,15
1021
+ om,Oromo,politeness,Politeness,12
1022
+ om,Oromo,questions,Questions,12
1023
+ om,Oromo,family,Family,12
1024
+ pa,Punjabi,alphabet,Alphabet,35
1025
+ pa,Punjabi,colors,Colors,11
1026
+ pa,Punjabi,days,Days,10
1027
+ pa,Punjabi,family,Family,10
1028
+ pa,Punjabi,greetings,Greetings,16
1029
+ pa,Punjabi,nouns,Common nouns,12
1030
+ pa,Punjabi,numbers,Numbers,13
1031
+ pa,Punjabi,politeness,Politeness,18
1032
+ pa,Punjabi,questions,Questions,22
1033
+ pl,Polish,colors,Colors,11
1034
+ pl,Polish,days,Days,11
1035
+ pl,Polish,family,Family,8
1036
+ pl,Polish,greetings,Greetings,12
1037
+ pl,Polish,level-3-adjectives,Adjectives,17
1038
+ pl,Polish,level-3-body,Body,17
1039
+ pl,Polish,level-3-feelings,Feelings,16
1040
+ pl,Polish,level-4-drinks,Drinks,16
1041
+ pl,Polish,level-4-food,Food,17
1042
+ pl,Polish,level-4-shopping,Shopping,16
1043
+ pl,Polish,level-5-time,Time,16
1044
+ pl,Polish,level-5-verbs,Verbs,17
1045
+ pl,Polish,level-5-weather,Weather,16
1046
+ pl,Polish,level-6-directions,Directions,16
1047
+ pl,Polish,level-6-places,Places,16
1048
+ pl,Polish,level-6-transport,Transport,16
1049
+ pl,Polish,nouns,Everyday nouns,12
1050
+ pl,Polish,numbers,Numbers,11
1051
+ pl,Polish,politeness,Politeness,10
1052
+ pl,Polish,present-regular,Present tense,18
1053
+ pl,Polish,questions,Questions & connectors,18
1054
+ ps,Pashto,colors,Colors,12
1055
+ ps,Pashto,consonants,Consonants,20
1056
+ ps,Pashto,days,Days,11
1057
+ ps,Pashto,greetings,Greetings,12
1058
+ ps,Pashto,nouns,Nouns,15
1059
+ ps,Pashto,numbers,Numbers,15
1060
+ ps,Pashto,politeness,Politeness,12
1061
+ ps,Pashto,questions,Questions,12
1062
+ ps,Pashto,family,Family,12
1063
+ ps,Pashto,vowels,Vowels,8
1064
+ pt,Portuguese,a2-patterns,A2 patterns,16
1065
+ pt,Portuguese,b1-patterns,B1 patterns,20
1066
+ pt,Portuguese,colors,Colors,11
1067
+ pt,Portuguese,conditional,The conditional (condicional),25
1068
+ pt,Portuguese,days,Days of the week,7
1069
+ pt,Portuguese,greetings,Greetings,10
1070
+ pt,Portuguese,adjectives,Adjectives,18
1071
+ pt,Portuguese,body,Body,18
1072
+ pt,Portuguese,feelings,Feelings,17
1073
+ pt,Portuguese,drinks,Drinks,17
1074
+ pt,Portuguese,food,Food,18
1075
+ pt,Portuguese,shopping,Shopping,17
1076
+ pt,Portuguese,time,Time,17
1077
+ pt,Portuguese,verbs,Verbs,18
1078
+ pt,Portuguese,weather,Weather,17
1079
+ pt,Portuguese,directions,Directions,17
1080
+ pt,Portuguese,places,Places,17
1081
+ pt,Portuguese,transport,Transport,17
1082
+ pt,Portuguese,nouns,Common nouns,10
1083
+ pt,Portuguese,numbers,Numbers 1–10,10
1084
+ pt,Portuguese,politeness,"Yes, no & small talk",8
1085
+ pt,Portuguese,present-regular,Present tense,18
1086
+ pt,Portuguese,present-subjunctive,The present subjunctive (presente do conjuntivo),33
1087
+ pt,Portuguese,preterito-imperfeito,The past (imperfeito),20
1088
+ pt,Portuguese,preterito-perfeito,The past (pretérito perfeito),28
1089
+ pt,Portuguese,questions,Questions & connectors,18
1090
+ pt,Portuguese,family,Family,21
1091
+ qya,Elvish,descriptors,Words of quality,12
1092
+ qya,Elvish,greetings,Greetings,10
1093
+ qya,Elvish,nature,Nature & sky,12
1094
+ qya,Elvish,people,People & beings,12
1095
+ qya,Elvish,phrases,Phrases & blessings,10
1096
+ ro,Romanian,colors,Colors,11
1097
+ ro,Romanian,days,Days,11
1098
+ ro,Romanian,family,Family,8
1099
+ ro,Romanian,greetings,Greetings,12
1100
+ ro,Romanian,level-3-adjectives,Adjectives,17
1101
+ ro,Romanian,level-3-body,Body,18
1102
+ ro,Romanian,level-3-feelings,Feelings,16
1103
+ ro,Romanian,level-4-drinks,Drinks,16
1104
+ ro,Romanian,level-4-food,Food,17
1105
+ ro,Romanian,level-4-shopping,Shopping,16
1106
+ ro,Romanian,level-5-time,Time,16
1107
+ ro,Romanian,level-5-verbs,Verbs,17
1108
+ ro,Romanian,level-5-weather,Weather,16
1109
+ ro,Romanian,level-6-directions,Directions,16
1110
+ ro,Romanian,level-6-places,Places,16
1111
+ ro,Romanian,level-6-transport,Transport,16
1112
+ ro,Romanian,nouns,Everyday nouns,12
1113
+ ro,Romanian,numbers,Numbers,11
1114
+ ro,Romanian,politeness,Politeness,10
1115
+ ro,Romanian,present-regular,Present tense,18
1116
+ ro,Romanian,questions,Questions & connectors,17
1117
+ ru,Russian,alphabet,Alphabet,33
1118
+ ru,Russian,colors,Colors,14
1119
+ ru,Russian,days,Days of the week,12
1120
+ ru,Russian,greetings,Greetings,20
1121
+ ru,Russian,level-3-adjectives,Adjectives,17
1122
+ ru,Russian,level-3-body,Body,17
1123
+ ru,Russian,level-3-feelings,Feelings,16
1124
+ ru,Russian,level-4-drinks,Drinks,16
1125
+ ru,Russian,level-4-food,Food,17
1126
+ ru,Russian,level-4-shopping,Shopping,16
1127
+ ru,Russian,level-5-time,Time,16
1128
+ ru,Russian,level-5-verbs,Verbs,17
1129
+ ru,Russian,level-5-weather,Weather,16
1130
+ ru,Russian,level-6-directions,Directions,16
1131
+ ru,Russian,level-6-places,Places,16
1132
+ ru,Russian,level-6-transport,Transport,17
1133
+ ru,Russian,nouns,Everyday nouns,24
1134
+ ru,Russian,numbers,Numbers,15
1135
+ ru,Russian,politeness,Politeness,16
1136
+ ru,Russian,present-regular,Present tense,18
1137
+ ru,Russian,questions,Questions & connectors,18
1138
+ ru,Russian,vocab-family,Family,19
1139
+ rw,Kinyarwanda,colors,Colors,12
1140
+ rw,Kinyarwanda,days,Days,11
1141
+ rw,Kinyarwanda,greetings,Greetings,12
1142
+ rw,Kinyarwanda,adjectives,Adjectives,15
1143
+ rw,Kinyarwanda,body,Body,16
1144
+ rw,Kinyarwanda,feelings,Feelings,15
1145
+ rw,Kinyarwanda,drinks,Drinks,15
1146
+ rw,Kinyarwanda,food,Food,15
1147
+ rw,Kinyarwanda,shopping,Shopping,15
1148
+ rw,Kinyarwanda,time,Time,15
1149
+ rw,Kinyarwanda,verbs,Verbs,15
1150
+ rw,Kinyarwanda,weather,Weather,15
1151
+ rw,Kinyarwanda,directions,Directions,15
1152
+ rw,Kinyarwanda,places,Places,15
1153
+ rw,Kinyarwanda,transport,Transport,15
1154
+ rw,Kinyarwanda,nouns,Nouns,15
1155
+ rw,Kinyarwanda,numbers,Numbers,15
1156
+ rw,Kinyarwanda,politeness,Politeness,12
1157
+ rw,Kinyarwanda,questions,Questions,12
1158
+ rw,Kinyarwanda,family,Family,12
1159
+ sa,Sanskrit,colors,Colors,11
1160
+ sa,Sanskrit,consonants,Consonants,33
1161
+ sa,Sanskrit,days,Days of the week,11
1162
+ sa,Sanskrit,greetings,Greetings,10
1163
+ sa,Sanskrit,nouns,Everyday nouns,12
1164
+ sa,Sanskrit,numbers,Numbers,14
1165
+ sa,Sanskrit,politeness,Politeness,10
1166
+ sa,Sanskrit,questions,Questions & connectors,12
1167
+ sa,Sanskrit,vocab-family,Family,17
1168
+ sa,Sanskrit,vowels,Vowels,14
1169
+ sg,Singlish,expressions,Expressions,12
1170
+ sg,Singlish,food,Hawker food,12
1171
+ sg,Singlish,kopi-orders,Kopi lingo,10
1172
+ sg,Singlish,particles,Particles,10
1173
+ sg,Singlish,social,Social & slang,12
1174
+ si,Sinhala,colors,Colors,12
1175
+ si,Sinhala,consonants,Consonants,19
1176
+ si,Sinhala,days,Days,11
1177
+ si,Sinhala,greetings,Greetings,11
1178
+ si,Sinhala,nouns,Nouns,15
1179
+ si,Sinhala,numbers,Numbers,15
1180
+ si,Sinhala,politeness,Politeness,12
1181
+ si,Sinhala,questions,Questions,12
1182
+ si,Sinhala,family,Family,12
1183
+ si,Sinhala,vowels,Vowels,14
1184
+ sn,Shona,colors,Colors,12
1185
+ sn,Shona,days,Days,11
1186
+ sn,Shona,greetings,Greetings,12
1187
+ sn,Shona,adjectives,Adjectives,15
1188
+ sn,Shona,body,Body,16
1189
+ sn,Shona,feelings,Feelings,15
1190
+ sn,Shona,drinks,Drinks,15
1191
+ sn,Shona,food,Food,15
1192
+ sn,Shona,shopping,Shopping,15
1193
+ sn,Shona,time,Time,15
1194
+ sn,Shona,verbs,Verbs,15
1195
+ sn,Shona,weather,Weather,15
1196
+ sn,Shona,directions,Directions,15
1197
+ sn,Shona,places,Places,15
1198
+ sn,Shona,transport,Transport,15
1199
+ sn,Shona,nouns,Nouns,15
1200
+ sn,Shona,numbers,Numbers,15
1201
+ sn,Shona,politeness,Politeness,12
1202
+ sn,Shona,questions,Questions,12
1203
+ sn,Shona,family,Family,12
1204
+ so,Somali,colors,Colors,12
1205
+ so,Somali,days,Days,11
1206
+ so,Somali,greetings,Greetings,12
1207
+ so,Somali,adjectives,Adjectives,15
1208
+ so,Somali,body,Body,16
1209
+ so,Somali,feelings,Feelings,15
1210
+ so,Somali,drinks,Drinks,15
1211
+ so,Somali,food,Food,15
1212
+ so,Somali,shopping,Shopping,15
1213
+ so,Somali,time,Time,15
1214
+ so,Somali,verbs,Verbs,15
1215
+ so,Somali,weather,Weather,15
1216
+ so,Somali,directions,Directions,15
1217
+ so,Somali,places,Places,15
1218
+ so,Somali,transport,Transport,15
1219
+ so,Somali,nouns,Nouns,15
1220
+ so,Somali,numbers,Numbers,15
1221
+ so,Somali,politeness,Politeness,12
1222
+ so,Somali,questions,Questions,12
1223
+ so,Somali,family,Family,12
1224
+ sr,Serbian,colors,Colors,12
1225
+ sr,Serbian,consonants,Consonants,25
1226
+ sr,Serbian,days,Days,11
1227
+ sr,Serbian,greetings,Greetings,12
1228
+ sr,Serbian,nouns,Nouns,15
1229
+ sr,Serbian,numbers,Numbers,15
1230
+ sr,Serbian,politeness,Politeness,12
1231
+ sr,Serbian,questions,Questions,12
1232
+ sr,Serbian,family,Family,12
1233
+ sr,Serbian,vowels,Vowels,5
1234
+ su,Sundanese,colors,Colors,12
1235
+ su,Sundanese,days,Days,11
1236
+ su,Sundanese,greetings,Greetings,12
1237
+ su,Sundanese,adjectives,Adjectives,15
1238
+ su,Sundanese,body,Body,15
1239
+ su,Sundanese,feelings,Feelings,15
1240
+ su,Sundanese,drinks,Drinks,15
1241
+ su,Sundanese,food,Food,15
1242
+ su,Sundanese,shopping,Shopping,15
1243
+ su,Sundanese,time,Time,15
1244
+ su,Sundanese,verbs,Verbs,15
1245
+ su,Sundanese,weather,Weather,15
1246
+ su,Sundanese,directions,Directions,15
1247
+ su,Sundanese,places,Places,15
1248
+ su,Sundanese,transport,Transport,15
1249
+ su,Sundanese,nouns,Nouns,15
1250
+ su,Sundanese,numbers,Numbers,15
1251
+ su,Sundanese,politeness,Politeness,12
1252
+ su,Sundanese,questions,Questions,12
1253
+ su,Sundanese,family,Family,12
1254
+ sv,Swedish,colors,Colors,11
1255
+ sv,Swedish,days,Days,11
1256
+ sv,Swedish,family,Family,10
1257
+ sv,Swedish,greetings,Greetings,12
1258
+ sv,Swedish,level-3-adjectives,Adjectives,17
1259
+ sv,Swedish,level-3-body,Body,17
1260
+ sv,Swedish,level-3-feelings,Feelings,16
1261
+ sv,Swedish,level-4-drinks,Drinks,16
1262
+ sv,Swedish,level-4-food,Food,17
1263
+ sv,Swedish,level-4-shopping,Shopping,16
1264
+ sv,Swedish,level-5-time,Time,16
1265
+ sv,Swedish,level-5-verbs,Verbs,17
1266
+ sv,Swedish,level-5-weather,Weather,16
1267
+ sv,Swedish,level-6-directions,Directions,16
1268
+ sv,Swedish,level-6-places,Places,16
1269
+ sv,Swedish,level-6-transport,Transport,16
1270
+ sv,Swedish,nouns,Everyday nouns,12
1271
+ sv,Swedish,numbers,Numbers,11
1272
+ sv,Swedish,politeness,Politeness,10
1273
+ sv,Swedish,questions,Questions & connectors,20
1274
+ sw,Swahili,colors,Colors,11
1275
+ sw,Swahili,days,Days,11
1276
+ sw,Swahili,greetings,Greetings,12
1277
+ sw,Swahili,adjectives,Adjectives,15
1278
+ sw,Swahili,body,Body,15
1279
+ sw,Swahili,feelings,Feelings,14
1280
+ sw,Swahili,drinks,Drinks,14
1281
+ sw,Swahili,food,Food,15
1282
+ sw,Swahili,shopping,Shopping,15
1283
+ sw,Swahili,time,Time,14
1284
+ sw,Swahili,verbs,Verbs,15
1285
+ sw,Swahili,weather,Weather,14
1286
+ sw,Swahili,directions,Directions,15
1287
+ sw,Swahili,places,Places,15
1288
+ sw,Swahili,transport,Transport,15
1289
+ sw,Swahili,nouns,Everyday nouns,12
1290
+ sw,Swahili,numbers,Numbers,11
1291
+ sw,Swahili,politeness,Politeness,10
1292
+ sw,Swahili,questions,Questions & connectors,18
1293
+ sw,Swahili,family,Family,24
1294
+ ta,Tamil,colors,Colors,10
1295
+ ta,Tamil,consonants,Consonants,18
1296
+ ta,Tamil,days,Days of the week,10
1297
+ ta,Tamil,greetings,Greetings,10
1298
+ ta,Tamil,level-3-adjectives,Adjectives,17
1299
+ ta,Tamil,level-3-body,Body,16
1300
+ ta,Tamil,level-3-feelings,Feelings,16
1301
+ ta,Tamil,level-4-drinks,Drinks,16
1302
+ ta,Tamil,level-4-food,Food,17
1303
+ ta,Tamil,level-4-shopping,Shopping,16
1304
+ ta,Tamil,level-5-time,Time,16
1305
+ ta,Tamil,level-5-verbs,Verbs,17
1306
+ ta,Tamil,level-5-weather,Weather,16
1307
+ ta,Tamil,level-6-directions,Directions,16
1308
+ ta,Tamil,level-6-places,Places,16
1309
+ ta,Tamil,level-6-transport,Transport,16
1310
+ ta,Tamil,nouns,Everyday nouns,13
1311
+ ta,Tamil,numbers,Numbers,14
1312
+ ta,Tamil,politeness,Politeness,10
1313
+ ta,Tamil,questions,Questions & connectors,12
1314
+ ta,Tamil,vocab-family,Family,15
1315
+ ta,Tamil,vowels,Vowels,12
1316
+ te,Telugu,colors,Colors,11
1317
+ te,Telugu,consonants,Consonants,32
1318
+ te,Telugu,days,Days of the week,11
1319
+ te,Telugu,greetings,Greetings,12
1320
+ te,Telugu,level-3-adjectives,Adjectives,17
1321
+ te,Telugu,level-3-body,Body,17
1322
+ te,Telugu,level-3-feelings,Feelings,16
1323
+ te,Telugu,level-4-drinks,Drinks,16
1324
+ te,Telugu,level-4-food,Food,17
1325
+ te,Telugu,level-4-shopping,Shopping,16
1326
+ te,Telugu,level-5-time,Time,16
1327
+ te,Telugu,level-5-verbs,Verbs,17
1328
+ te,Telugu,level-5-weather,Weather,16
1329
+ te,Telugu,level-6-directions,Directions,16
1330
+ te,Telugu,level-6-places,Places,16
1331
+ te,Telugu,level-6-transport,Transport,17
1332
+ te,Telugu,nouns,Everyday nouns,12
1333
+ te,Telugu,numbers,Numbers,14
1334
+ te,Telugu,politeness,Politeness,11
1335
+ te,Telugu,questions,Questions & connectors,12
1336
+ te,Telugu,vocab-family,Family,16
1337
+ te,Telugu,vowels,Vowels,17
1338
+ th,Thai,colors,Colors,10
1339
+ th,Thai,family,Family,10
1340
+ th,Thai,greetings,Greetings,10
1341
+ th,Thai,adjectives,Adjectives,14
1342
+ th,Thai,body,Body,14
1343
+ th,Thai,feelings,Feelings,14
1344
+ th,Thai,drinks,Drinks,13
1345
+ th,Thai,food,Food,14
1346
+ th,Thai,shopping,Shopping,14
1347
+ th,Thai,time,Time,14
1348
+ th,Thai,verbs,Verbs,14
1349
+ th,Thai,weather,Weather,13
1350
+ th,Thai,directions,Directions,14
1351
+ th,Thai,places,Places,14
1352
+ th,Thai,transport,Transport,13
1353
+ th,Thai,numbers,Numbers,12
1354
+ th,Thai,questions,Questions & connectors,19
1355
+ th,Thai,script-consonants,Key consonants,12
1356
+ th,Thai,script-vowels,Key vowels,10
1357
+ th,Thai,tones,Tones,6
1358
+ tl,Tagalog,colors,Colors,11
1359
+ tl,Tagalog,days,Days,11
1360
+ tl,Tagalog,family,Family,10
1361
+ tl,Tagalog,greetings,Greetings,12
1362
+ tl,Tagalog,level-3-adjectives,Adjectives,17
1363
+ tl,Tagalog,level-3-body,Body,17
1364
+ tl,Tagalog,level-3-feelings,Feelings,16
1365
+ tl,Tagalog,level-4-drinks,Drinks,16
1366
+ tl,Tagalog,level-4-food,Food,17
1367
+ tl,Tagalog,level-4-shopping,Shopping,16
1368
+ tl,Tagalog,level-5-time,Time,16
1369
+ tl,Tagalog,level-5-verbs,Verbs,17
1370
+ tl,Tagalog,level-5-weather,Weather,16
1371
+ tl,Tagalog,level-6-directions,Directions,16
1372
+ tl,Tagalog,level-6-places,Places,16
1373
+ tl,Tagalog,level-6-transport,Transport,16
1374
+ tl,Tagalog,nouns,Everyday nouns,12
1375
+ tl,Tagalog,numbers,Numbers,11
1376
+ tl,Tagalog,politeness,Politeness,10
1377
+ tl,Tagalog,questions,Questions & connectors,20
1378
+ tlh,Klingon,beings,Beings & things,11
1379
+ tlh,Klingon,essentials,Essentials,11
1380
+ tlh,Klingon,exclamations,Exclamations,9
1381
+ tlh,Klingon,verbs,Actions,12
1382
+ tlh,Klingon,warrior,Warrior words,11
1383
+ tok,Toki Pona,actions-verbs,Doing things,19
1384
+ tok,Toki Pona,body-and-self,Body & senses,14
1385
+ tok,Toki Pona,describe-modify,Describing things,21
1386
+ tok,Toki Pona,essentials,Essentials,18
1387
+ tok,Toki Pona,nature-world,Nature & the world,18
1388
+ tok,Toki Pona,people,People & beings,15
1389
+ tr,Turkish,colors,Colors,11
1390
+ tr,Turkish,days,Days,11
1391
+ tr,Turkish,greetings,Greetings,12
1392
+ tr,Turkish,adjectives,Adjectives,15
1393
+ tr,Turkish,body,Body,15
1394
+ tr,Turkish,feelings,Feelings,15
1395
+ tr,Turkish,drinks,Drinks,15
1396
+ tr,Turkish,food,Food,15
1397
+ tr,Turkish,shopping,Shopping,15
1398
+ tr,Turkish,time,Time,15
1399
+ tr,Turkish,verbs,Verbs,15
1400
+ tr,Turkish,weather,Weather,15
1401
+ tr,Turkish,directions,Directions,15
1402
+ tr,Turkish,places,Places,15
1403
+ tr,Turkish,transport,Transport,15
1404
+ tr,Turkish,nouns,Everyday nouns,12
1405
+ tr,Turkish,numbers,Numbers,11
1406
+ tr,Turkish,politeness,Politeness,10
1407
+ tr,Turkish,questions,Questions & connectors,19
1408
+ tr,Turkish,family,Family,24
1409
+ uk,Ukrainian,alphabet-1,Alphabet (1/2),17
1410
+ uk,Ukrainian,alphabet-2,Alphabet (2/2),16
1411
+ uk,Ukrainian,colors,Colors,11
1412
+ uk,Ukrainian,family,Family,12
1413
+ uk,Ukrainian,greetings,Greetings,12
1414
+ uk,Ukrainian,level-3-adjectives,Adjectives,17
1415
+ uk,Ukrainian,level-3-body,Body,17
1416
+ uk,Ukrainian,level-3-feelings,Feelings,16
1417
+ uk,Ukrainian,level-4-drinks,Drinks,16
1418
+ uk,Ukrainian,level-4-food,Food,17
1419
+ uk,Ukrainian,level-4-shopping,Shopping,16
1420
+ uk,Ukrainian,level-5-time,Time,16
1421
+ uk,Ukrainian,level-5-verbs,Verbs,17
1422
+ uk,Ukrainian,level-5-weather,Weather,16
1423
+ uk,Ukrainian,level-6-directions,Directions,16
1424
+ uk,Ukrainian,level-6-places,Places,16
1425
+ uk,Ukrainian,level-6-transport,Transport,17
1426
+ uk,Ukrainian,numbers,Numbers,11
1427
+ uk,Ukrainian,present-regular,Present tense,18
1428
+ uk,Ukrainian,questions,Questions & connectors,16
1429
+ ur,Urdu,colors,Colors,10
1430
+ ur,Urdu,days,Days of the week,10
1431
+ ur,Urdu,greetings,Greetings,12
1432
+ ur,Urdu,letters,Letters,39
1433
+ ur,Urdu,level-3-adjectives,Adjectives,17
1434
+ ur,Urdu,level-3-body,Body,17
1435
+ ur,Urdu,level-3-feelings,Feelings,16
1436
+ ur,Urdu,level-4-drinks,Drinks,16
1437
+ ur,Urdu,level-4-food,Food,17
1438
+ ur,Urdu,level-4-shopping,Shopping,16
1439
+ ur,Urdu,level-5-time,Time,16
1440
+ ur,Urdu,level-5-verbs,Verbs,18
1441
+ ur,Urdu,level-5-weather,Weather,16
1442
+ ur,Urdu,level-6-directions,Directions,16
1443
+ ur,Urdu,level-6-places,Places,16
1444
+ ur,Urdu,level-6-transport,Transport,16
1445
+ ur,Urdu,nouns,Everyday nouns,12
1446
+ ur,Urdu,numbers,Numbers,14
1447
+ ur,Urdu,politeness,Politeness,12
1448
+ ur,Urdu,questions,Questions & connectors,12
1449
+ ur,Urdu,vocab-family,Family,15
1450
+ uz,Uzbek,colors,Colors,12
1451
+ uz,Uzbek,days,Days,11
1452
+ uz,Uzbek,greetings,Greetings,12
1453
+ uz,Uzbek,adjectives,Adjectives,16
1454
+ uz,Uzbek,body,Body,16
1455
+ uz,Uzbek,feelings,Feelings,15
1456
+ uz,Uzbek,drinks,Drinks,15
1457
+ uz,Uzbek,food,Food,15
1458
+ uz,Uzbek,shopping,Shopping,15
1459
+ uz,Uzbek,time,Time,15
1460
+ uz,Uzbek,verbs,Verbs,15
1461
+ uz,Uzbek,weather,Weather,15
1462
+ uz,Uzbek,directions,Directions,15
1463
+ uz,Uzbek,places,Places,15
1464
+ uz,Uzbek,transport,Transport,15
1465
+ uz,Uzbek,nouns,Nouns,15
1466
+ uz,Uzbek,numbers,Numbers,15
1467
+ uz,Uzbek,politeness,Politeness,12
1468
+ uz,Uzbek,questions,Questions,12
1469
+ uz,Uzbek,family,Family,12
1470
+ vi,Vietnamese,colors,Colors,11
1471
+ vi,Vietnamese,days,Days,11
1472
+ vi,Vietnamese,greetings,Greetings,12
1473
+ vi,Vietnamese,adjectives,Adjectives,16
1474
+ vi,Vietnamese,body,Body,16
1475
+ vi,Vietnamese,feelings,Feelings,15
1476
+ vi,Vietnamese,drinks,Drinks,14
1477
+ vi,Vietnamese,food,Food,15
1478
+ vi,Vietnamese,shopping,Shopping,14
1479
+ vi,Vietnamese,time,Time,15
1480
+ vi,Vietnamese,verbs,Verbs,16
1481
+ vi,Vietnamese,weather,Weather,15
1482
+ vi,Vietnamese,directions,Directions,15
1483
+ vi,Vietnamese,places,Places,15
1484
+ vi,Vietnamese,transport,Transport,15
1485
+ vi,Vietnamese,nouns,Everyday nouns,12
1486
+ vi,Vietnamese,numbers,Numbers,11
1487
+ vi,Vietnamese,politeness,Politeness,10
1488
+ vi,Vietnamese,questions,Questions & connectors,17
1489
+ vi,Vietnamese,family,Family,24
1490
+ yo,Yoruba,colors,Colors,10
1491
+ yo,Yoruba,days,Days of the week,11
1492
+ yo,Yoruba,greetings,Greetings,12
1493
+ yo,Yoruba,level-3-adjectives,Adjectives,17
1494
+ yo,Yoruba,level-3-body,Body,17
1495
+ yo,Yoruba,level-3-feelings,Feelings,16
1496
+ yo,Yoruba,level-4-drinks,Drinks,16
1497
+ yo,Yoruba,level-4-food,Food,17
1498
+ yo,Yoruba,level-4-shopping,Shopping,16
1499
+ yo,Yoruba,level-5-time,Time,16
1500
+ yo,Yoruba,level-5-verbs,Verbs,17
1501
+ yo,Yoruba,level-5-weather,Weather,16
1502
+ yo,Yoruba,level-6-directions,Directions,16
1503
+ yo,Yoruba,level-6-places,Places,16
1504
+ yo,Yoruba,level-6-transport,Transport,16
1505
+ yo,Yoruba,nouns,Everyday nouns,16
1506
+ yo,Yoruba,numbers,Numbers,15
1507
+ yo,Yoruba,politeness,Politeness,11
1508
+ yo,Yoruba,questions,Questions & connectors,12
1509
+ yo,Yoruba,vocab-family,Family,19
1510
+ yue,Cantonese,colors,Colors,9
1511
+ yue,Cantonese,family,Family,10
1512
+ yue,Cantonese,greetings,Greetings,10
1513
+ yue,Cantonese,initials-finals,Sounds,10
1514
+ yue,Cantonese,adjectives,Adjectives,14
1515
+ yue,Cantonese,body,Body,14
1516
+ yue,Cantonese,feelings,Feelings,12
1517
+ yue,Cantonese,drinks,Drinks,12
1518
+ yue,Cantonese,food,Food,13
1519
+ yue,Cantonese,shopping,Shopping,12
1520
+ yue,Cantonese,time,Time,12
1521
+ yue,Cantonese,verbs,Verbs,14
1522
+ yue,Cantonese,weather,Weather,12
1523
+ yue,Cantonese,directions,Directions,12
1524
+ yue,Cantonese,places,Places,12
1525
+ yue,Cantonese,transport,Transport,12
1526
+ yue,Cantonese,numbers,Numbers,12
1527
+ yue,Cantonese,questions,Questions & connectors,17
1528
+ yue,Cantonese,tones,Tones,7
1529
+ zh,Mandarin,colors,Colors,10
1530
+ zh,Mandarin,family,Family,10
1531
+ zh,Mandarin,greetings,Greetings,10
1532
+ zh,Mandarin,hsk1-grammar-2,HSK 1 grammar II,20
1533
+ zh,Mandarin,hsk1-grammar,HSK 1 grammar I,20
1534
+ zh,Mandarin,hsk1-vocab-nouns,HSK 1–2 nouns,20
1535
+ zh,Mandarin,hsk1-vocab-verbs,HSK 1–2 verbs,20
1536
+ zh,Mandarin,hsk2-grammar,HSK 2 grammar,20
1537
+ zh,Mandarin,hsk2-vocab-adjectives,HSK 1–2 adjectives,20
1538
+ zh,Mandarin,hsk2-vocab-adverbs-time,HSK 1–2 adverbs & time words,20
1539
+ zh,Mandarin,adjectives,Adjectives,14
1540
+ zh,Mandarin,body,Body,14
1541
+ zh,Mandarin,feelings,Feelings,13
1542
+ zh,Mandarin,drinks,Drinks,12
1543
+ zh,Mandarin,food,Food,14
1544
+ zh,Mandarin,shopping,Shopping,13
1545
+ zh,Mandarin,time,Time,13
1546
+ zh,Mandarin,verbs,Verbs,14
1547
+ zh,Mandarin,weather,Weather,12
1548
+ zh,Mandarin,directions,Directions,13
1549
+ zh,Mandarin,places,Places,13
1550
+ zh,Mandarin,transport,Transport,12
1551
+ zh,Mandarin,numbers,Numbers 1–10,10
1552
+ zh,Mandarin,pinyin-sounds,Tricky pinyin sounds,10
1553
+ zh,Mandarin,questions,Questions & connectors,18
1554
+ zh,Mandarin,tones,The four tones,7
1555
+ zu,Zulu,colors,Colors,11
1556
+ zu,Zulu,days,Days of the week,12
1557
+ zu,Zulu,greetings,Greetings,16
1558
+ zu,Zulu,level-3-adjectives,Adjectives,17
1559
+ zu,Zulu,level-3-body,Body,17
1560
+ zu,Zulu,level-3-feelings,Feelings,16
1561
+ zu,Zulu,level-4-drinks,Drinks,16
1562
+ zu,Zulu,level-4-food,Food,17
1563
+ zu,Zulu,level-4-shopping,Shopping,16
1564
+ zu,Zulu,level-5-time,Time,16
1565
+ zu,Zulu,level-5-verbs,Verbs,17
1566
+ zu,Zulu,level-5-weather,Weather,16
1567
+ zu,Zulu,level-6-directions,Directions,16
1568
+ zu,Zulu,level-6-places,Places,16
1569
+ zu,Zulu,level-6-transport,Transport,14
1570
+ zu,Zulu,nouns,Everyday nouns,16
1571
+ zu,Zulu,numbers,Numbers,15
1572
+ zu,Zulu,politeness,Politeness,12
1573
+ zu,Zulu,questions,Questions & connectors,13
1574
+ zu,Zulu,vocab-family,Family,16
languages.csv ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ language_code,language,deck_count,card_count
2
+ af,Afrikaans,20,284
3
+ am,Amharic,9,154
4
+ ar,Arabic,21,370
5
+ az,Azerbaijani,20,283
6
+ bg,Bulgarian,10,127
7
+ bn,Bengali,19,293
8
+ bs,Bosnian,20,281
9
+ ca,Catalan,20,281
10
+ cs,Czech,21,304
11
+ cy,Welsh,20,280
12
+ da,Danish,20,303
13
+ de,German,27,451
14
+ el,Greek,19,248
15
+ eo,Esperanto,20,280
16
+ es,Spanish,29,604
17
+ eu,Basque,20,287
18
+ fa,Persian,21,322
19
+ fi,Finnish,20,307
20
+ fr,French,30,608
21
+ ga,Irish,20,280
22
+ gu,Gujarati,9,173
23
+ ha,Hausa,20,304
24
+ haw,Hawaiian,20,272
25
+ he,Hebrew,21,312
26
+ hi,Hindi,19,236
27
+ hu,Hungarian,20,305
28
+ hy,Armenian,10,138
29
+ id,Indonesian,20,305
30
+ ig,Igbo,20,282
31
+ it,Italian,27,459
32
+ ja,Japanese,134,2678
33
+ jv,Javanese,20,285
34
+ ka,Georgian,10,133
35
+ km,Khmer,9,160
36
+ kn,Kannada,10,134
37
+ ko,Korean,28,408
38
+ la,Latin,20,300
39
+ lo,Lao,10,133
40
+ lt,Lithuanian,20,281
41
+ mi,Maori,20,274
42
+ ml,Malayalam,10,139
43
+ mr,Marathi,9,155
44
+ ms,Malay,20,287
45
+ my,Burmese,9,167
46
+ ne,Nepali,20,285
47
+ nl,Dutch,21,316
48
+ no,Norwegian,20,289
49
+ ny,Chichewa,20,282
50
+ om,Oromo,20,281
51
+ pa,Punjabi,9,147
52
+ pl,Polish,21,307
53
+ ps,Pashto,10,129
54
+ pt,Portuguese,27,463
55
+ qya,Elvish,5,56
56
+ ro,Romanian,21,307
57
+ ru,Russian,22,386
58
+ rw,Kinyarwanda,20,282
59
+ sa,Sanskrit,10,144
60
+ sg,Singlish,5,56
61
+ si,Sinhala,10,133
62
+ sn,Shona,20,282
63
+ so,Somali,20,282
64
+ sr,Serbian,10,131
65
+ su,Sundanese,20,281
66
+ sv,Swedish,20,293
67
+ sw,Swahili,20,285
68
+ ta,Tamil,22,319
69
+ te,Telugu,22,345
70
+ th,Thai,20,254
71
+ tl,Tagalog,20,293
72
+ tlh,Klingon,5,54
73
+ tok,Toki Pona,6,105
74
+ tr,Turkish,20,290
75
+ uk,Ukrainian,20,310
76
+ ur,Urdu,21,333
77
+ uz,Uzbek,20,283
78
+ vi,Vietnamese,20,289
79
+ yo,Yoruba,20,302
80
+ yue,Cantonese,19,226
81
+ zh,Mandarin,26,372
82
+ zu,Zulu,20,305