@polyglot-bundles/vi-word-lists 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/src/index.ts +64 -549
- package/src/levels/a1.ts +2 -2
- package/src/levels/a2.ts +2 -2
- package/src/levels/b1.ts +2 -2
- package/src/levels/b2.ts +2 -2
- package/src/levels/pre-a1.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polyglot-bundles/vi-word-lists",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
"src"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@syllst/word-lists": "^0.
|
|
42
|
+
"@syllst/word-lists": "^0.6.0",
|
|
43
|
+
"@polyglot-bundles/word-list-base": "0.1.0"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"typescript": "^5.4.0",
|
package/src/index.ts
CHANGED
|
@@ -1,563 +1,78 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* vi word-list catalog.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
4
|
+
* @generated by `scripts/generate-word-list-indexes.mjs` — do not hand-edit.
|
|
5
|
+
* Source of truth is the JSON files under `src/json/`. To add or modify a
|
|
6
|
+
* set, edit JSON then re-run the generator.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import {
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
createPolyglotWordListCatalog,
|
|
11
|
+
polyglotJsonDescriptor,
|
|
12
12
|
type ExamGrade,
|
|
13
13
|
type WordListDifficulty,
|
|
14
|
-
type
|
|
15
|
-
type
|
|
16
|
-
} from "@
|
|
17
|
-
|
|
18
|
-
// ─── Sources ───────────────────────────────────────────────────────────────
|
|
19
|
-
|
|
20
|
-
const SUBTITLE_FREQUENCY_LIST = { name: "Subtitle frequency list", url: "https://github.com/hermitdave/FrequencyWords" };
|
|
21
|
-
const UNKNOWN_SOURCE = { name: "Unknown source" };
|
|
22
|
-
|
|
23
|
-
// ─── Descriptors ───────────────────────────────────────────────────────────
|
|
14
|
+
type PolyglotWordListItem,
|
|
15
|
+
type PolyglotWordListSet,
|
|
16
|
+
} from "@polyglot-bundles/word-list-base";
|
|
24
17
|
|
|
25
18
|
const descriptors = [
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}, () => import("./json/
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}, () => import("./json/
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}, () => import("./json/
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
}, () => import("./json/
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}, () => import("./json/
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
description: "Common colors in Vietnamese",
|
|
80
|
-
examGrade: "A1",
|
|
81
|
-
category: "colors",
|
|
82
|
-
difficulty: "beginner",
|
|
83
|
-
itemCount: 10,
|
|
84
|
-
source: UNKNOWN_SOURCE,
|
|
85
|
-
}, () => import("./json/a1/a1-colors.json")),
|
|
86
|
-
jsonDescriptor({
|
|
87
|
-
id: "a1-family",
|
|
88
|
-
name: "Family Members",
|
|
89
|
-
description: "Family member vocabulary in Vietnamese",
|
|
90
|
-
examGrade: "A1",
|
|
91
|
-
category: "family",
|
|
92
|
-
difficulty: "beginner",
|
|
93
|
-
itemCount: 8,
|
|
94
|
-
source: UNKNOWN_SOURCE,
|
|
95
|
-
}, () => import("./json/a1/a1-family.json")),
|
|
96
|
-
jsonDescriptor({
|
|
97
|
-
id: "a1-food",
|
|
98
|
-
name: "Food Basics",
|
|
99
|
-
description: "Basic food vocabulary in Vietnamese",
|
|
100
|
-
examGrade: "A1",
|
|
101
|
-
category: "food",
|
|
102
|
-
difficulty: "beginner",
|
|
103
|
-
itemCount: 10,
|
|
104
|
-
source: UNKNOWN_SOURCE,
|
|
105
|
-
}, () => import("./json/a1/a1-food.json")),
|
|
106
|
-
jsonDescriptor({
|
|
107
|
-
id: "a1-numbers",
|
|
108
|
-
name: "Numbers 1-10",
|
|
109
|
-
description: "Numbers 1-10 in Vietnamese",
|
|
110
|
-
examGrade: "A1",
|
|
111
|
-
category: "numbers",
|
|
112
|
-
difficulty: "beginner",
|
|
113
|
-
itemCount: 10,
|
|
114
|
-
source: UNKNOWN_SOURCE,
|
|
115
|
-
}, () => import("./json/a1/a1-numbers.json")),
|
|
116
|
-
jsonDescriptor({
|
|
117
|
-
id: "pre-a1-survival-phrases",
|
|
118
|
-
name: "Survival Phrases",
|
|
119
|
-
description: "Essential yes/no, greetings, and basic commands",
|
|
120
|
-
examGrade: "Pre-A1",
|
|
121
|
-
category: "survival",
|
|
122
|
-
difficulty: "beginner",
|
|
123
|
-
itemCount: 18,
|
|
124
|
-
source: { name: "Vietnamese essential phrases" },
|
|
125
|
-
}, () => import("./json/pre-a1/survival-phrases.json")),
|
|
126
|
-
jsonDescriptor({
|
|
127
|
-
id: "a2-body-parts",
|
|
128
|
-
name: "Body Parts",
|
|
129
|
-
description: "Human body parts and anatomy",
|
|
130
|
-
examGrade: "A2",
|
|
131
|
-
category: "anatomy",
|
|
132
|
-
difficulty: "intermediate",
|
|
133
|
-
itemCount: 20,
|
|
134
|
-
source: { name: "Vietnamese frequency and thematic vocabulary" },
|
|
135
|
-
}, () => import("./json/a2/a2-body-parts.json")),
|
|
136
|
-
jsonDescriptor({
|
|
137
|
-
id: "a2-clothing",
|
|
138
|
-
name: "Clothing",
|
|
139
|
-
description: "Clothing and accessories",
|
|
140
|
-
examGrade: "A2",
|
|
141
|
-
category: "clothing",
|
|
142
|
-
difficulty: "intermediate",
|
|
143
|
-
itemCount: 15,
|
|
144
|
-
source: { name: "Vietnamese frequency and thematic vocabulary" },
|
|
145
|
-
}, () => import("./json/a2/a2-clothing.json")),
|
|
146
|
-
jsonDescriptor({
|
|
147
|
-
id: "a2-places",
|
|
148
|
-
name: "Places",
|
|
149
|
-
description: "Common places and buildings",
|
|
150
|
-
examGrade: "A2",
|
|
151
|
-
category: "places",
|
|
152
|
-
difficulty: "intermediate",
|
|
153
|
-
itemCount: 15,
|
|
154
|
-
source: { name: "Vietnamese frequency and thematic vocabulary" },
|
|
155
|
-
}, () => import("./json/a2/a2-places.json")),
|
|
156
|
-
jsonDescriptor({
|
|
157
|
-
id: "b1-emotions",
|
|
158
|
-
name: "Emotions",
|
|
159
|
-
description: "Emotions and feelings",
|
|
160
|
-
examGrade: "B1",
|
|
161
|
-
category: "emotions",
|
|
162
|
-
difficulty: "intermediate",
|
|
163
|
-
itemCount: 15,
|
|
164
|
-
source: { name: "Vietnamese frequency and thematic vocabulary" },
|
|
165
|
-
}, () => import("./json/b1/b1-emotions.json")),
|
|
166
|
-
jsonDescriptor({
|
|
167
|
-
id: "b1-professions",
|
|
168
|
-
name: "Professions",
|
|
169
|
-
description: "Jobs and professions",
|
|
170
|
-
examGrade: "B1",
|
|
171
|
-
category: "work",
|
|
172
|
-
difficulty: "intermediate",
|
|
173
|
-
itemCount: 15,
|
|
174
|
-
source: { name: "Vietnamese frequency and thematic vocabulary" },
|
|
175
|
-
}, () => import("./json/b1/b1-professions.json")),
|
|
176
|
-
jsonDescriptor({
|
|
177
|
-
id: "b1-weather",
|
|
178
|
-
name: "Weather",
|
|
179
|
-
description: "Weather and climate terms",
|
|
180
|
-
examGrade: "B1",
|
|
181
|
-
category: "nature",
|
|
182
|
-
difficulty: "intermediate",
|
|
183
|
-
itemCount: 15,
|
|
184
|
-
source: { name: "Vietnamese frequency and thematic vocabulary" },
|
|
185
|
-
}, () => import("./json/b1/b1-weather.json")),
|
|
186
|
-
jsonDescriptor({
|
|
187
|
-
id: "b2-abstract-concepts",
|
|
188
|
-
name: "Abstract Concepts",
|
|
189
|
-
description: "Abstract philosophical and social concepts",
|
|
190
|
-
examGrade: "B2",
|
|
191
|
-
category: "abstract",
|
|
192
|
-
difficulty: "advanced",
|
|
193
|
-
itemCount: 15,
|
|
194
|
-
source: { name: "Vietnamese frequency and thematic vocabulary" },
|
|
195
|
-
}, () => import("./json/b2/abstract-concepts.json")),
|
|
196
|
-
jsonDescriptor({
|
|
197
|
-
id: "a2-vocabulary-01",
|
|
198
|
-
name: "A2 Frequency Band 1 (1-50)",
|
|
199
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
200
|
-
examGrade: "A2",
|
|
201
|
-
category: "general",
|
|
202
|
-
difficulty: "intermediate",
|
|
203
|
-
itemCount: 50,
|
|
204
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
205
|
-
}, () => import("./json/a2/a2-vocabulary-01.json")),
|
|
206
|
-
jsonDescriptor({
|
|
207
|
-
id: "a2-vocabulary-02",
|
|
208
|
-
name: "A2 Frequency Band 2 (51-100)",
|
|
209
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
210
|
-
examGrade: "A2",
|
|
211
|
-
category: "general",
|
|
212
|
-
difficulty: "intermediate",
|
|
213
|
-
itemCount: 50,
|
|
214
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
215
|
-
}, () => import("./json/a2/a2-vocabulary-02.json")),
|
|
216
|
-
jsonDescriptor({
|
|
217
|
-
id: "a2-vocabulary-03",
|
|
218
|
-
name: "A2 Frequency Band 3 (101-150)",
|
|
219
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
220
|
-
examGrade: "A2",
|
|
221
|
-
category: "general",
|
|
222
|
-
difficulty: "intermediate",
|
|
223
|
-
itemCount: 50,
|
|
224
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
225
|
-
}, () => import("./json/a2/a2-vocabulary-03.json")),
|
|
226
|
-
jsonDescriptor({
|
|
227
|
-
id: "a2-vocabulary-04",
|
|
228
|
-
name: "A2 Frequency Band 4 (151-200)",
|
|
229
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
230
|
-
examGrade: "A2",
|
|
231
|
-
category: "general",
|
|
232
|
-
difficulty: "intermediate",
|
|
233
|
-
itemCount: 50,
|
|
234
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
235
|
-
}, () => import("./json/a2/a2-vocabulary-04.json")),
|
|
236
|
-
jsonDescriptor({
|
|
237
|
-
id: "a2-vocabulary-05",
|
|
238
|
-
name: "A2 Frequency Band 5 (201-250)",
|
|
239
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
240
|
-
examGrade: "A2",
|
|
241
|
-
category: "general",
|
|
242
|
-
difficulty: "intermediate",
|
|
243
|
-
itemCount: 50,
|
|
244
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
245
|
-
}, () => import("./json/a2/a2-vocabulary-05.json")),
|
|
246
|
-
jsonDescriptor({
|
|
247
|
-
id: "a2-vocabulary-06",
|
|
248
|
-
name: "A2 Frequency Band 6 (251-300)",
|
|
249
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
250
|
-
examGrade: "A2",
|
|
251
|
-
category: "general",
|
|
252
|
-
difficulty: "intermediate",
|
|
253
|
-
itemCount: 50,
|
|
254
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
255
|
-
}, () => import("./json/a2/a2-vocabulary-06.json")),
|
|
256
|
-
jsonDescriptor({
|
|
257
|
-
id: "a2-vocabulary-07",
|
|
258
|
-
name: "A2 Frequency Band 7 (301-350)",
|
|
259
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
260
|
-
examGrade: "A2",
|
|
261
|
-
category: "general",
|
|
262
|
-
difficulty: "intermediate",
|
|
263
|
-
itemCount: 50,
|
|
264
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
265
|
-
}, () => import("./json/a2/a2-vocabulary-07.json")),
|
|
266
|
-
jsonDescriptor({
|
|
267
|
-
id: "a2-vocabulary-08",
|
|
268
|
-
name: "A2 Frequency Band 8 (351-400)",
|
|
269
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
270
|
-
examGrade: "A2",
|
|
271
|
-
category: "general",
|
|
272
|
-
difficulty: "intermediate",
|
|
273
|
-
itemCount: 50,
|
|
274
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
275
|
-
}, () => import("./json/a2/a2-vocabulary-08.json")),
|
|
276
|
-
jsonDescriptor({
|
|
277
|
-
id: "a2-vocabulary-09",
|
|
278
|
-
name: "A2 Frequency Band 9 (401-450)",
|
|
279
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
280
|
-
examGrade: "A2",
|
|
281
|
-
category: "general",
|
|
282
|
-
difficulty: "intermediate",
|
|
283
|
-
itemCount: 50,
|
|
284
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
285
|
-
}, () => import("./json/a2/a2-vocabulary-09.json")),
|
|
286
|
-
jsonDescriptor({
|
|
287
|
-
id: "a2-vocabulary-10",
|
|
288
|
-
name: "A2 Frequency Band 10 (451-500)",
|
|
289
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
290
|
-
examGrade: "A2",
|
|
291
|
-
category: "general",
|
|
292
|
-
difficulty: "intermediate",
|
|
293
|
-
itemCount: 50,
|
|
294
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
295
|
-
}, () => import("./json/a2/a2-vocabulary-10.json")),
|
|
296
|
-
jsonDescriptor({
|
|
297
|
-
id: "a2-vocabulary-11",
|
|
298
|
-
name: "A2 Frequency Band 11 (501-550)",
|
|
299
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
300
|
-
examGrade: "A2",
|
|
301
|
-
category: "general",
|
|
302
|
-
difficulty: "intermediate",
|
|
303
|
-
itemCount: 50,
|
|
304
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
305
|
-
}, () => import("./json/a2/a2-vocabulary-11.json")),
|
|
306
|
-
jsonDescriptor({
|
|
307
|
-
id: "a2-vocabulary-12",
|
|
308
|
-
name: "A2 Frequency Band 12 (551-600)",
|
|
309
|
-
description: "A2 level Vietnamese frequency vocabulary",
|
|
310
|
-
examGrade: "A2",
|
|
311
|
-
category: "general",
|
|
312
|
-
difficulty: "intermediate",
|
|
313
|
-
itemCount: 50,
|
|
314
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
315
|
-
}, () => import("./json/a2/a2-vocabulary-12.json")),
|
|
316
|
-
jsonDescriptor({
|
|
317
|
-
id: "b1-vocabulary-01",
|
|
318
|
-
name: "B1 Frequency Band 1 (1-50)",
|
|
319
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
320
|
-
examGrade: "B1",
|
|
321
|
-
category: "general",
|
|
322
|
-
difficulty: "intermediate",
|
|
323
|
-
itemCount: 50,
|
|
324
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
325
|
-
}, () => import("./json/b1/b1-vocabulary-01.json")),
|
|
326
|
-
jsonDescriptor({
|
|
327
|
-
id: "b1-vocabulary-02",
|
|
328
|
-
name: "B1 Frequency Band 2 (51-100)",
|
|
329
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
330
|
-
examGrade: "B1",
|
|
331
|
-
category: "general",
|
|
332
|
-
difficulty: "intermediate",
|
|
333
|
-
itemCount: 50,
|
|
334
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
335
|
-
}, () => import("./json/b1/b1-vocabulary-02.json")),
|
|
336
|
-
jsonDescriptor({
|
|
337
|
-
id: "b1-vocabulary-03",
|
|
338
|
-
name: "B1 Frequency Band 3 (101-150)",
|
|
339
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
340
|
-
examGrade: "B1",
|
|
341
|
-
category: "general",
|
|
342
|
-
difficulty: "intermediate",
|
|
343
|
-
itemCount: 50,
|
|
344
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
345
|
-
}, () => import("./json/b1/b1-vocabulary-03.json")),
|
|
346
|
-
jsonDescriptor({
|
|
347
|
-
id: "b1-vocabulary-04",
|
|
348
|
-
name: "B1 Frequency Band 4 (151-200)",
|
|
349
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
350
|
-
examGrade: "B1",
|
|
351
|
-
category: "general",
|
|
352
|
-
difficulty: "intermediate",
|
|
353
|
-
itemCount: 50,
|
|
354
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
355
|
-
}, () => import("./json/b1/b1-vocabulary-04.json")),
|
|
356
|
-
jsonDescriptor({
|
|
357
|
-
id: "b1-vocabulary-05",
|
|
358
|
-
name: "B1 Frequency Band 5 (201-250)",
|
|
359
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
360
|
-
examGrade: "B1",
|
|
361
|
-
category: "general",
|
|
362
|
-
difficulty: "intermediate",
|
|
363
|
-
itemCount: 50,
|
|
364
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
365
|
-
}, () => import("./json/b1/b1-vocabulary-05.json")),
|
|
366
|
-
jsonDescriptor({
|
|
367
|
-
id: "b1-vocabulary-06",
|
|
368
|
-
name: "B1 Frequency Band 6 (251-300)",
|
|
369
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
370
|
-
examGrade: "B1",
|
|
371
|
-
category: "general",
|
|
372
|
-
difficulty: "intermediate",
|
|
373
|
-
itemCount: 50,
|
|
374
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
375
|
-
}, () => import("./json/b1/b1-vocabulary-06.json")),
|
|
376
|
-
jsonDescriptor({
|
|
377
|
-
id: "b1-vocabulary-07",
|
|
378
|
-
name: "B1 Frequency Band 7 (301-350)",
|
|
379
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
380
|
-
examGrade: "B1",
|
|
381
|
-
category: "general",
|
|
382
|
-
difficulty: "intermediate",
|
|
383
|
-
itemCount: 50,
|
|
384
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
385
|
-
}, () => import("./json/b1/b1-vocabulary-07.json")),
|
|
386
|
-
jsonDescriptor({
|
|
387
|
-
id: "b1-vocabulary-08",
|
|
388
|
-
name: "B1 Frequency Band 8 (351-400)",
|
|
389
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
390
|
-
examGrade: "B1",
|
|
391
|
-
category: "general",
|
|
392
|
-
difficulty: "intermediate",
|
|
393
|
-
itemCount: 50,
|
|
394
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
395
|
-
}, () => import("./json/b1/b1-vocabulary-08.json")),
|
|
396
|
-
jsonDescriptor({
|
|
397
|
-
id: "b1-vocabulary-09",
|
|
398
|
-
name: "B1 Frequency Band 9 (401-450)",
|
|
399
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
400
|
-
examGrade: "B1",
|
|
401
|
-
category: "general",
|
|
402
|
-
difficulty: "intermediate",
|
|
403
|
-
itemCount: 50,
|
|
404
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
405
|
-
}, () => import("./json/b1/b1-vocabulary-09.json")),
|
|
406
|
-
jsonDescriptor({
|
|
407
|
-
id: "b1-vocabulary-10",
|
|
408
|
-
name: "B1 Frequency Band 10 (451-500)",
|
|
409
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
410
|
-
examGrade: "B1",
|
|
411
|
-
category: "general",
|
|
412
|
-
difficulty: "intermediate",
|
|
413
|
-
itemCount: 50,
|
|
414
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
415
|
-
}, () => import("./json/b1/b1-vocabulary-10.json")),
|
|
416
|
-
jsonDescriptor({
|
|
417
|
-
id: "b1-vocabulary-11",
|
|
418
|
-
name: "B1 Frequency Band 11 (501-550)",
|
|
419
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
420
|
-
examGrade: "B1",
|
|
421
|
-
category: "general",
|
|
422
|
-
difficulty: "intermediate",
|
|
423
|
-
itemCount: 50,
|
|
424
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
425
|
-
}, () => import("./json/b1/b1-vocabulary-11.json")),
|
|
426
|
-
jsonDescriptor({
|
|
427
|
-
id: "b1-vocabulary-12",
|
|
428
|
-
name: "B1 Frequency Band 12 (551-600)",
|
|
429
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
430
|
-
examGrade: "B1",
|
|
431
|
-
category: "general",
|
|
432
|
-
difficulty: "intermediate",
|
|
433
|
-
itemCount: 50,
|
|
434
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
435
|
-
}, () => import("./json/b1/b1-vocabulary-12.json")),
|
|
436
|
-
jsonDescriptor({
|
|
437
|
-
id: "b1-vocabulary-13",
|
|
438
|
-
name: "B1 Frequency Band 13 (601-650)",
|
|
439
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
440
|
-
examGrade: "B1",
|
|
441
|
-
category: "general",
|
|
442
|
-
difficulty: "intermediate",
|
|
443
|
-
itemCount: 50,
|
|
444
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
445
|
-
}, () => import("./json/b1/b1-vocabulary-13.json")),
|
|
446
|
-
jsonDescriptor({
|
|
447
|
-
id: "b1-vocabulary-14",
|
|
448
|
-
name: "B1 Frequency Band 14 (651-700)",
|
|
449
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
450
|
-
examGrade: "B1",
|
|
451
|
-
category: "general",
|
|
452
|
-
difficulty: "intermediate",
|
|
453
|
-
itemCount: 50,
|
|
454
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
455
|
-
}, () => import("./json/b1/b1-vocabulary-14.json")),
|
|
456
|
-
jsonDescriptor({
|
|
457
|
-
id: "b1-vocabulary-15",
|
|
458
|
-
name: "B1 Frequency Band 15 (701-750)",
|
|
459
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
460
|
-
examGrade: "B1",
|
|
461
|
-
category: "general",
|
|
462
|
-
difficulty: "intermediate",
|
|
463
|
-
itemCount: 50,
|
|
464
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
465
|
-
}, () => import("./json/b1/b1-vocabulary-15.json")),
|
|
466
|
-
jsonDescriptor({
|
|
467
|
-
id: "b1-vocabulary-16",
|
|
468
|
-
name: "B1 Frequency Band 16 (751-800)",
|
|
469
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
470
|
-
examGrade: "B1",
|
|
471
|
-
category: "general",
|
|
472
|
-
difficulty: "intermediate",
|
|
473
|
-
itemCount: 50,
|
|
474
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
475
|
-
}, () => import("./json/b1/b1-vocabulary-16.json")),
|
|
476
|
-
jsonDescriptor({
|
|
477
|
-
id: "b1-vocabulary-17",
|
|
478
|
-
name: "B1 Frequency Band 17 (801-850)",
|
|
479
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
480
|
-
examGrade: "B1",
|
|
481
|
-
category: "general",
|
|
482
|
-
difficulty: "intermediate",
|
|
483
|
-
itemCount: 50,
|
|
484
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
485
|
-
}, () => import("./json/b1/b1-vocabulary-17.json")),
|
|
486
|
-
jsonDescriptor({
|
|
487
|
-
id: "b1-vocabulary-18",
|
|
488
|
-
name: "B1 Frequency Band 18 (851-900)",
|
|
489
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
490
|
-
examGrade: "B1",
|
|
491
|
-
category: "general",
|
|
492
|
-
difficulty: "intermediate",
|
|
493
|
-
itemCount: 50,
|
|
494
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
495
|
-
}, () => import("./json/b1/b1-vocabulary-18.json")),
|
|
496
|
-
jsonDescriptor({
|
|
497
|
-
id: "b1-vocabulary-19",
|
|
498
|
-
name: "B1 Frequency Band 19 (901-950)",
|
|
499
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
500
|
-
examGrade: "B1",
|
|
501
|
-
category: "general",
|
|
502
|
-
difficulty: "intermediate",
|
|
503
|
-
itemCount: 50,
|
|
504
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
505
|
-
}, () => import("./json/b1/b1-vocabulary-19.json")),
|
|
506
|
-
jsonDescriptor({
|
|
507
|
-
id: "b1-vocabulary-20",
|
|
508
|
-
name: "B1 Frequency Band 20 (951-1000)",
|
|
509
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
510
|
-
examGrade: "B1",
|
|
511
|
-
category: "general",
|
|
512
|
-
difficulty: "intermediate",
|
|
513
|
-
itemCount: 50,
|
|
514
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
515
|
-
}, () => import("./json/b1/b1-vocabulary-20.json")),
|
|
516
|
-
jsonDescriptor({
|
|
517
|
-
id: "b1-vocabulary-21",
|
|
518
|
-
name: "B1 Frequency Band 21 (1001-1050)",
|
|
519
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
520
|
-
examGrade: "B1",
|
|
521
|
-
category: "general",
|
|
522
|
-
difficulty: "intermediate",
|
|
523
|
-
itemCount: 50,
|
|
524
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
525
|
-
}, () => import("./json/b1/b1-vocabulary-21.json")),
|
|
526
|
-
jsonDescriptor({
|
|
527
|
-
id: "b1-vocabulary-22",
|
|
528
|
-
name: "B1 Frequency Band 22 (1051-1100)",
|
|
529
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
530
|
-
examGrade: "B1",
|
|
531
|
-
category: "general",
|
|
532
|
-
difficulty: "intermediate",
|
|
533
|
-
itemCount: 50,
|
|
534
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
535
|
-
}, () => import("./json/b1/b1-vocabulary-22.json")),
|
|
536
|
-
jsonDescriptor({
|
|
537
|
-
id: "b1-vocabulary-23",
|
|
538
|
-
name: "B1 Frequency Band 23 (1101-1150)",
|
|
539
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
540
|
-
examGrade: "B1",
|
|
541
|
-
category: "general",
|
|
542
|
-
difficulty: "intermediate",
|
|
543
|
-
itemCount: 50,
|
|
544
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
545
|
-
}, () => import("./json/b1/b1-vocabulary-23.json")),
|
|
546
|
-
jsonDescriptor({
|
|
547
|
-
id: "b1-vocabulary-24",
|
|
548
|
-
name: "B1 Frequency Band 24 (1151-1200)",
|
|
549
|
-
description: "B1 level Vietnamese frequency vocabulary",
|
|
550
|
-
examGrade: "B1",
|
|
551
|
-
category: "general",
|
|
552
|
-
difficulty: "intermediate",
|
|
553
|
-
itemCount: 49,
|
|
554
|
-
source: SUBTITLE_FREQUENCY_LIST,
|
|
555
|
-
}, () => import("./json/b1/b1-vocabulary-24.json")),
|
|
19
|
+
polyglotJsonDescriptor({"id":"a1-colors","name":"Colors","description":"Basic color words in Vietnamese","examGrade":"A1","category":"colors","difficulty":"beginner","itemCount":10}, () => import("./json/a1/a1-colors.json")),
|
|
20
|
+
polyglotJsonDescriptor({"id":"a1-family","name":"Family Members","description":"Family member words in Vietnamese","examGrade":"A1","category":"family","difficulty":"beginner","itemCount":8}, () => import("./json/a1/a1-family.json")),
|
|
21
|
+
polyglotJsonDescriptor({"id":"a1-food","name":"Food Basics","description":"Basic food vocabulary in Vietnamese","examGrade":"A1","category":"food","difficulty":"beginner","itemCount":10}, () => import("./json/a1/a1-food.json")),
|
|
22
|
+
polyglotJsonDescriptor({"id":"a1-greetings","name":"Basic Greetings","description":"Basic greeting phrases in Vietnamese","examGrade":"A1","category":"greetings","difficulty":"beginner","itemCount":10}, () => import("./json/a1/a1-greetings.json")),
|
|
23
|
+
polyglotJsonDescriptor({"id":"a1-numbers","name":"Numbers 1-10","description":"Numbers one through ten in Vietnamese","examGrade":"A1","category":"numbers","difficulty":"beginner","itemCount":10}, () => import("./json/a1/a1-numbers.json")),
|
|
24
|
+
polyglotJsonDescriptor({"id":"a1-vocabulary-01","name":"A1 Frequency Band 1 (1-50)","description":"A1 level Vietnamese frequency vocabulary","examGrade":"A1","category":"general","difficulty":"beginner","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a1/a1-vocabulary-01.json")),
|
|
25
|
+
polyglotJsonDescriptor({"id":"a1-vocabulary-02","name":"A1 Frequency Band 2 (51-100)","description":"A1 level Vietnamese frequency vocabulary","examGrade":"A1","category":"general","difficulty":"beginner","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a1/a1-vocabulary-02.json")),
|
|
26
|
+
polyglotJsonDescriptor({"id":"a1-vocabulary-03","name":"A1 Frequency Band 3 (101-150)","description":"A1 level Vietnamese frequency vocabulary","examGrade":"A1","category":"general","difficulty":"beginner","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a1/a1-vocabulary-03.json")),
|
|
27
|
+
polyglotJsonDescriptor({"id":"a1-vocabulary-04","name":"A1 Frequency Band 4 (151-200)","description":"A1 level Vietnamese frequency vocabulary","examGrade":"A1","category":"general","difficulty":"beginner","itemCount":51,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a1/a1-vocabulary-04.json")),
|
|
28
|
+
polyglotJsonDescriptor({"id":"a2-body-parts","name":"Body Parts","description":"Human body parts and anatomy","examGrade":"A2","category":"anatomy","difficulty":"intermediate","itemCount":20}, () => import("./json/a2/a2-body-parts.json")),
|
|
29
|
+
polyglotJsonDescriptor({"id":"a2-clothing","name":"Clothing","description":"Clothing and accessories","examGrade":"A2","category":"clothing","difficulty":"intermediate","itemCount":15}, () => import("./json/a2/a2-clothing.json")),
|
|
30
|
+
polyglotJsonDescriptor({"id":"a2-places","name":"Places","description":"Common places and buildings","examGrade":"A2","category":"places","difficulty":"intermediate","itemCount":15}, () => import("./json/a2/a2-places.json")),
|
|
31
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-01","name":"A2 Frequency Band 1 (1-50)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-01.json")),
|
|
32
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-02","name":"A2 Frequency Band 2 (51-100)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-02.json")),
|
|
33
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-03","name":"A2 Frequency Band 3 (101-150)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-03.json")),
|
|
34
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-04","name":"A2 Frequency Band 4 (151-200)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-04.json")),
|
|
35
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-05","name":"A2 Frequency Band 5 (201-250)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-05.json")),
|
|
36
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-06","name":"A2 Frequency Band 6 (251-300)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-06.json")),
|
|
37
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-07","name":"A2 Frequency Band 7 (301-350)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-07.json")),
|
|
38
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-08","name":"A2 Frequency Band 8 (351-400)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-08.json")),
|
|
39
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-09","name":"A2 Frequency Band 9 (401-450)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-09.json")),
|
|
40
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-10","name":"A2 Frequency Band 10 (451-500)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-10.json")),
|
|
41
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-11","name":"A2 Frequency Band 11 (501-550)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-11.json")),
|
|
42
|
+
polyglotJsonDescriptor({"id":"a2-vocabulary-12","name":"A2 Frequency Band 12 (551-600)","description":"A2 level Vietnamese frequency vocabulary","examGrade":"A2","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/a2/a2-vocabulary-12.json")),
|
|
43
|
+
polyglotJsonDescriptor({"id":"b1-emotions","name":"Emotions","description":"Emotions and feelings","examGrade":"B1","category":"emotions","difficulty":"intermediate","itemCount":15}, () => import("./json/b1/b1-emotions.json")),
|
|
44
|
+
polyglotJsonDescriptor({"id":"b1-professions","name":"Professions","description":"Jobs and professions","examGrade":"B1","category":"work","difficulty":"intermediate","itemCount":15}, () => import("./json/b1/b1-professions.json")),
|
|
45
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-01","name":"B1 Frequency Band 1 (1-50)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-01.json")),
|
|
46
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-02","name":"B1 Frequency Band 2 (51-100)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-02.json")),
|
|
47
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-03","name":"B1 Frequency Band 3 (101-150)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-03.json")),
|
|
48
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-04","name":"B1 Frequency Band 4 (151-200)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-04.json")),
|
|
49
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-05","name":"B1 Frequency Band 5 (201-250)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-05.json")),
|
|
50
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-06","name":"B1 Frequency Band 6 (251-300)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-06.json")),
|
|
51
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-07","name":"B1 Frequency Band 7 (301-350)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-07.json")),
|
|
52
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-08","name":"B1 Frequency Band 8 (351-400)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-08.json")),
|
|
53
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-09","name":"B1 Frequency Band 9 (401-450)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-09.json")),
|
|
54
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-10","name":"B1 Frequency Band 10 (451-500)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-10.json")),
|
|
55
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-11","name":"B1 Frequency Band 11 (501-550)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-11.json")),
|
|
56
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-12","name":"B1 Frequency Band 12 (551-600)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-12.json")),
|
|
57
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-13","name":"B1 Frequency Band 13 (601-650)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-13.json")),
|
|
58
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-14","name":"B1 Frequency Band 14 (651-700)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-14.json")),
|
|
59
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-15","name":"B1 Frequency Band 15 (701-750)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-15.json")),
|
|
60
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-16","name":"B1 Frequency Band 16 (751-800)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-16.json")),
|
|
61
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-17","name":"B1 Frequency Band 17 (801-850)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-17.json")),
|
|
62
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-18","name":"B1 Frequency Band 18 (851-900)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-18.json")),
|
|
63
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-19","name":"B1 Frequency Band 19 (901-950)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-19.json")),
|
|
64
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-20","name":"B1 Frequency Band 20 (951-1000)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-20.json")),
|
|
65
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-21","name":"B1 Frequency Band 21 (1001-1050)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-21.json")),
|
|
66
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-22","name":"B1 Frequency Band 22 (1051-1100)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-22.json")),
|
|
67
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-23","name":"B1 Frequency Band 23 (1101-1150)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":50,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-23.json")),
|
|
68
|
+
polyglotJsonDescriptor({"id":"b1-vocabulary-24","name":"B1 Frequency Band 24 (1151-1200)","description":"B1 level Vietnamese frequency vocabulary","examGrade":"B1","category":"general","difficulty":"intermediate","itemCount":49,"source":{"name":"Vietnamese subtitle frequency list (HermitDave/FrequencyWords)","url":"https://github.com/hermitdave/FrequencyWords"}}, () => import("./json/b1/b1-vocabulary-24.json")),
|
|
69
|
+
polyglotJsonDescriptor({"id":"b1-weather","name":"Weather","description":"Weather and climate terms","examGrade":"B1","category":"nature","difficulty":"intermediate","itemCount":15}, () => import("./json/b1/b1-weather.json")),
|
|
70
|
+
polyglotJsonDescriptor({"id":"b2-abstract-concepts","name":"Abstract Concepts","description":"Abstract philosophical and social concepts","examGrade":"B2","category":"abstract","difficulty":"advanced","itemCount":15}, () => import("./json/b2/abstract-concepts.json")),
|
|
71
|
+
polyglotJsonDescriptor({"id":"pre-a1-survival-phrases","name":"Survival Phrases","description":"Essential yes/no, greetings, and basic commands","examGrade":"Pre-A1","category":"survival","difficulty":"beginner","itemCount":18}, () => import("./json/pre-a1/survival-phrases.json")),
|
|
556
72
|
] as const;
|
|
557
73
|
|
|
558
|
-
export const vietnameseWordListCatalog =
|
|
74
|
+
export const vietnameseWordListCatalog = createPolyglotWordListCatalog([...descriptors]);
|
|
559
75
|
|
|
560
|
-
// Backward-compatible re-exports (deprecated — prefer catalog API)
|
|
561
76
|
export const {
|
|
562
77
|
getDescriptorById,
|
|
563
78
|
getDescriptorsByExamGrade,
|
|
@@ -566,4 +81,4 @@ export const {
|
|
|
566
81
|
getCategories,
|
|
567
82
|
} = vietnameseWordListCatalog;
|
|
568
83
|
|
|
569
|
-
export type { ExamGrade, WordListDifficulty,
|
|
84
|
+
export type { ExamGrade, WordListDifficulty, PolyglotWordListItem, PolyglotWordListSet };
|
package/src/levels/a1.ts
CHANGED
package/src/levels/a2.ts
CHANGED
package/src/levels/b1.ts
CHANGED
package/src/levels/b2.ts
CHANGED
package/src/levels/pre-a1.ts
CHANGED