@polyglot-bundles/vi-word-lists 0.2.11 → 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 +23 -2
- package/src/index.ts +64 -549
- package/src/json/a1/a1-colors.json +80 -0
- package/src/json/a1/a1-family.json +66 -0
- package/src/json/a1/a1-food.json +80 -0
- package/src/json/a1/a1-greetings.json +80 -0
- package/src/json/a1/a1-numbers.json +80 -0
- package/src/json/a2/a2-body-parts.json +150 -0
- package/src/json/a2/a2-clothing.json +115 -0
- package/src/json/a2/a2-places.json +115 -0
- package/src/json/b1/b1-emotions.json +115 -0
- package/src/json/b1/b1-professions.json +115 -0
- package/src/json/b1/b1-weather.json +115 -0
- package/src/json/b2/abstract-concepts.json +48 -18
- package/src/json/pre-a1/survival-phrases.json +57 -21
- package/src/levels/a1.ts +2 -2
- package/src/levels/a2.ts +16 -0
- package/src/levels/b1.ts +16 -0
- package/src/levels/b2.ts +16 -0
- package/src/levels/pre-a1.ts +16 -0
- package/src/vocab.ts +28 -0
- package/src/json/a1/basic-greetings.json +0 -60
- package/src/json/a1/colors.json +0 -60
- package/src/json/a1/family-members.json +0 -50
- package/src/json/a1/food-basics.json +0 -60
- package/src/json/a1/numbers-1-10.json +0 -60
- package/src/json/a2/body-parts.json +0 -110
- package/src/json/a2/clothing.json +0 -85
- package/src/json/a2/places.json +0 -85
- package/src/json/b1/emotions.json +0 -85
- package/src/json/b1/professions.json +0 -85
- package/src/json/b1/weather.json +0 -85
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a1-colors",
|
|
3
|
+
"name": "Colors",
|
|
4
|
+
"description": "Basic color words in Vietnamese",
|
|
5
|
+
"examGrade": "A1",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"category": "colors",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"id": "vi:vocab:a1:colors:1",
|
|
11
|
+
"word": "đỏ",
|
|
12
|
+
"translation": "red",
|
|
13
|
+
"partOfSpeech": "adjective",
|
|
14
|
+
"examGrade": "A1"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "vi:vocab:a1:colors:2",
|
|
18
|
+
"word": "xanh dương",
|
|
19
|
+
"translation": "blue",
|
|
20
|
+
"partOfSpeech": "adjective",
|
|
21
|
+
"examGrade": "A1"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "vi:vocab:a1:colors:3",
|
|
25
|
+
"word": "xanh lá",
|
|
26
|
+
"translation": "green",
|
|
27
|
+
"partOfSpeech": "adjective",
|
|
28
|
+
"examGrade": "A1"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "vi:vocab:a1:colors:4",
|
|
32
|
+
"word": "vàng",
|
|
33
|
+
"translation": "yellow",
|
|
34
|
+
"partOfSpeech": "adjective",
|
|
35
|
+
"examGrade": "A1"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "vi:vocab:a1:colors:5",
|
|
39
|
+
"word": "đen",
|
|
40
|
+
"translation": "black",
|
|
41
|
+
"partOfSpeech": "adjective",
|
|
42
|
+
"examGrade": "A1"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "vi:vocab:a1:colors:6",
|
|
46
|
+
"word": "trắng",
|
|
47
|
+
"translation": "white",
|
|
48
|
+
"partOfSpeech": "adjective",
|
|
49
|
+
"examGrade": "A1"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "vi:vocab:a1:colors:7",
|
|
53
|
+
"word": "cam",
|
|
54
|
+
"translation": "orange",
|
|
55
|
+
"partOfSpeech": "adjective",
|
|
56
|
+
"examGrade": "A1"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "vi:vocab:a1:colors:8",
|
|
60
|
+
"word": "tím",
|
|
61
|
+
"translation": "purple",
|
|
62
|
+
"partOfSpeech": "adjective",
|
|
63
|
+
"examGrade": "A1"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "vi:vocab:a1:colors:9",
|
|
67
|
+
"word": "hồng",
|
|
68
|
+
"translation": "pink",
|
|
69
|
+
"partOfSpeech": "adjective",
|
|
70
|
+
"examGrade": "A1"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "vi:vocab:a1:colors:10",
|
|
74
|
+
"word": "nâu",
|
|
75
|
+
"translation": "brown",
|
|
76
|
+
"partOfSpeech": "adjective",
|
|
77
|
+
"examGrade": "A1"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a1-family",
|
|
3
|
+
"name": "Family Members",
|
|
4
|
+
"description": "Family member words in Vietnamese",
|
|
5
|
+
"examGrade": "A1",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"category": "family",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"id": "vi:vocab:a1:family-members:1",
|
|
11
|
+
"word": "mẹ",
|
|
12
|
+
"translation": "mother",
|
|
13
|
+
"partOfSpeech": "noun",
|
|
14
|
+
"examGrade": "A1"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "vi:vocab:a1:family-members:2",
|
|
18
|
+
"word": "bố",
|
|
19
|
+
"translation": "father",
|
|
20
|
+
"partOfSpeech": "noun",
|
|
21
|
+
"examGrade": "A1"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "vi:vocab:a1:family-members:3",
|
|
25
|
+
"word": "chị gái",
|
|
26
|
+
"translation": "older sister",
|
|
27
|
+
"partOfSpeech": "noun",
|
|
28
|
+
"examGrade": "A1"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "vi:vocab:a1:family-members:4",
|
|
32
|
+
"word": "anh trai",
|
|
33
|
+
"translation": "older brother",
|
|
34
|
+
"partOfSpeech": "noun",
|
|
35
|
+
"examGrade": "A1"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "vi:vocab:a1:family-members:5",
|
|
39
|
+
"word": "con gái",
|
|
40
|
+
"translation": "daughter",
|
|
41
|
+
"partOfSpeech": "noun",
|
|
42
|
+
"examGrade": "A1"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "vi:vocab:a1:family-members:6",
|
|
46
|
+
"word": "con trai",
|
|
47
|
+
"translation": "son",
|
|
48
|
+
"partOfSpeech": "noun",
|
|
49
|
+
"examGrade": "A1"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "vi:vocab:a1:family-members:7",
|
|
53
|
+
"word": "bà",
|
|
54
|
+
"translation": "grandmother",
|
|
55
|
+
"partOfSpeech": "noun",
|
|
56
|
+
"examGrade": "A1"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "vi:vocab:a1:family-members:8",
|
|
60
|
+
"word": "ông",
|
|
61
|
+
"translation": "grandfather",
|
|
62
|
+
"partOfSpeech": "noun",
|
|
63
|
+
"examGrade": "A1"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a1-food",
|
|
3
|
+
"name": "Food Basics",
|
|
4
|
+
"description": "Basic food vocabulary in Vietnamese",
|
|
5
|
+
"examGrade": "A1",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"category": "food",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"id": "vi:vocab:a1:food-basics:1",
|
|
11
|
+
"word": "nước",
|
|
12
|
+
"translation": "water",
|
|
13
|
+
"partOfSpeech": "noun",
|
|
14
|
+
"examGrade": "A1"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "vi:vocab:a1:food-basics:2",
|
|
18
|
+
"word": "bánh mì",
|
|
19
|
+
"translation": "bread",
|
|
20
|
+
"partOfSpeech": "noun",
|
|
21
|
+
"examGrade": "A1"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "vi:vocab:a1:food-basics:3",
|
|
25
|
+
"word": "sữa",
|
|
26
|
+
"translation": "milk",
|
|
27
|
+
"partOfSpeech": "noun",
|
|
28
|
+
"examGrade": "A1"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "vi:vocab:a1:food-basics:4",
|
|
32
|
+
"word": "táo",
|
|
33
|
+
"translation": "apple",
|
|
34
|
+
"partOfSpeech": "noun",
|
|
35
|
+
"examGrade": "A1"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "vi:vocab:a1:food-basics:5",
|
|
39
|
+
"word": "cà phê",
|
|
40
|
+
"translation": "coffee",
|
|
41
|
+
"partOfSpeech": "noun",
|
|
42
|
+
"examGrade": "A1"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "vi:vocab:a1:food-basics:6",
|
|
46
|
+
"word": "trà",
|
|
47
|
+
"translation": "tea",
|
|
48
|
+
"partOfSpeech": "noun",
|
|
49
|
+
"examGrade": "A1"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "vi:vocab:a1:food-basics:7",
|
|
53
|
+
"word": "cơm",
|
|
54
|
+
"translation": "rice",
|
|
55
|
+
"partOfSpeech": "noun",
|
|
56
|
+
"examGrade": "A1"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "vi:vocab:a1:food-basics:8",
|
|
60
|
+
"word": "thịt",
|
|
61
|
+
"translation": "meat",
|
|
62
|
+
"partOfSpeech": "noun",
|
|
63
|
+
"examGrade": "A1"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "vi:vocab:a1:food-basics:9",
|
|
67
|
+
"word": "cá",
|
|
68
|
+
"translation": "fish",
|
|
69
|
+
"partOfSpeech": "noun",
|
|
70
|
+
"examGrade": "A1"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "vi:vocab:a1:food-basics:10",
|
|
74
|
+
"word": "rau",
|
|
75
|
+
"translation": "vegetables",
|
|
76
|
+
"partOfSpeech": "noun",
|
|
77
|
+
"examGrade": "A1"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a1-greetings",
|
|
3
|
+
"name": "Basic Greetings",
|
|
4
|
+
"description": "Basic greeting phrases in Vietnamese",
|
|
5
|
+
"examGrade": "A1",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"category": "greetings",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"id": "vi:vocab:a1:greetings:1",
|
|
11
|
+
"word": "xin chào",
|
|
12
|
+
"translation": "hello",
|
|
13
|
+
"partOfSpeech": "phrase",
|
|
14
|
+
"examGrade": "A1"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "vi:vocab:a1:greetings:2",
|
|
18
|
+
"word": "chào buổi sáng",
|
|
19
|
+
"translation": "good morning",
|
|
20
|
+
"partOfSpeech": "phrase",
|
|
21
|
+
"examGrade": "A1"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "vi:vocab:a1:greetings:3",
|
|
25
|
+
"word": "chào buổi tối",
|
|
26
|
+
"translation": "good evening",
|
|
27
|
+
"partOfSpeech": "phrase",
|
|
28
|
+
"examGrade": "A1"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "vi:vocab:a1:greetings:4",
|
|
32
|
+
"word": "chúc ngủ ngon",
|
|
33
|
+
"translation": "good night",
|
|
34
|
+
"partOfSpeech": "phrase",
|
|
35
|
+
"examGrade": "A1"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "vi:vocab:a1:greetings:5",
|
|
39
|
+
"word": "tạm biệt",
|
|
40
|
+
"translation": "goodbye",
|
|
41
|
+
"partOfSpeech": "phrase",
|
|
42
|
+
"examGrade": "A1"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "vi:vocab:a1:greetings:6",
|
|
46
|
+
"word": "hẹn gặp lại",
|
|
47
|
+
"translation": "see you again",
|
|
48
|
+
"partOfSpeech": "phrase",
|
|
49
|
+
"examGrade": "A1"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "vi:vocab:a1:greetings:7",
|
|
53
|
+
"word": "cảm ơn",
|
|
54
|
+
"translation": "thank you",
|
|
55
|
+
"partOfSpeech": "phrase",
|
|
56
|
+
"examGrade": "A1"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "vi:vocab:a1:greetings:8",
|
|
60
|
+
"word": "làm ơn",
|
|
61
|
+
"translation": "please",
|
|
62
|
+
"partOfSpeech": "phrase",
|
|
63
|
+
"examGrade": "A1"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "vi:vocab:a1:greetings:9",
|
|
67
|
+
"word": "xin lỗi",
|
|
68
|
+
"translation": "sorry",
|
|
69
|
+
"partOfSpeech": "phrase",
|
|
70
|
+
"examGrade": "A1"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "vi:vocab:a1:greetings:10",
|
|
74
|
+
"word": "vâng",
|
|
75
|
+
"translation": "yes",
|
|
76
|
+
"partOfSpeech": "interjection",
|
|
77
|
+
"examGrade": "A1"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a1-numbers",
|
|
3
|
+
"name": "Numbers 1-10",
|
|
4
|
+
"description": "Numbers one through ten in Vietnamese",
|
|
5
|
+
"examGrade": "A1",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"category": "numbers",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"id": "vi:vocab:a1:numbers-1-10:1",
|
|
11
|
+
"word": "một",
|
|
12
|
+
"translation": "one",
|
|
13
|
+
"partOfSpeech": "number",
|
|
14
|
+
"examGrade": "A1"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "vi:vocab:a1:numbers-1-10:2",
|
|
18
|
+
"word": "hai",
|
|
19
|
+
"translation": "two",
|
|
20
|
+
"partOfSpeech": "number",
|
|
21
|
+
"examGrade": "A1"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "vi:vocab:a1:numbers-1-10:3",
|
|
25
|
+
"word": "ba",
|
|
26
|
+
"translation": "three",
|
|
27
|
+
"partOfSpeech": "number",
|
|
28
|
+
"examGrade": "A1"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "vi:vocab:a1:numbers-1-10:4",
|
|
32
|
+
"word": "bốn",
|
|
33
|
+
"translation": "four",
|
|
34
|
+
"partOfSpeech": "number",
|
|
35
|
+
"examGrade": "A1"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "vi:vocab:a1:numbers-1-10:5",
|
|
39
|
+
"word": "năm",
|
|
40
|
+
"translation": "five",
|
|
41
|
+
"partOfSpeech": "number",
|
|
42
|
+
"examGrade": "A1"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "vi:vocab:a1:numbers-1-10:6",
|
|
46
|
+
"word": "sáu",
|
|
47
|
+
"translation": "six",
|
|
48
|
+
"partOfSpeech": "number",
|
|
49
|
+
"examGrade": "A1"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "vi:vocab:a1:numbers-1-10:7",
|
|
53
|
+
"word": "bảy",
|
|
54
|
+
"translation": "seven",
|
|
55
|
+
"partOfSpeech": "number",
|
|
56
|
+
"examGrade": "A1"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "vi:vocab:a1:numbers-1-10:8",
|
|
60
|
+
"word": "tám",
|
|
61
|
+
"translation": "eight",
|
|
62
|
+
"partOfSpeech": "number",
|
|
63
|
+
"examGrade": "A1"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "vi:vocab:a1:numbers-1-10:9",
|
|
67
|
+
"word": "chín",
|
|
68
|
+
"translation": "nine",
|
|
69
|
+
"partOfSpeech": "number",
|
|
70
|
+
"examGrade": "A1"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "vi:vocab:a1:numbers-1-10:10",
|
|
74
|
+
"word": "mười",
|
|
75
|
+
"translation": "ten",
|
|
76
|
+
"partOfSpeech": "number",
|
|
77
|
+
"examGrade": "A1"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a2-body-parts",
|
|
3
|
+
"name": "Body Parts",
|
|
4
|
+
"description": "Human body parts and anatomy",
|
|
5
|
+
"examGrade": "A2",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"category": "anatomy",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"id": "vi:vocab:a2:body-parts:1",
|
|
11
|
+
"word": "đầu",
|
|
12
|
+
"translation": "head",
|
|
13
|
+
"partOfSpeech": "noun",
|
|
14
|
+
"examGrade": "A2"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "vi:vocab:a2:body-parts:2",
|
|
18
|
+
"word": "tóc",
|
|
19
|
+
"translation": "hair",
|
|
20
|
+
"partOfSpeech": "noun",
|
|
21
|
+
"examGrade": "A2"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "vi:vocab:a2:body-parts:3",
|
|
25
|
+
"word": "mắt",
|
|
26
|
+
"translation": "eye",
|
|
27
|
+
"partOfSpeech": "noun",
|
|
28
|
+
"examGrade": "A2"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "vi:vocab:a2:body-parts:4",
|
|
32
|
+
"word": "mũi",
|
|
33
|
+
"translation": "nose",
|
|
34
|
+
"partOfSpeech": "noun",
|
|
35
|
+
"examGrade": "A2"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "vi:vocab:a2:body-parts:5",
|
|
39
|
+
"word": "miệng",
|
|
40
|
+
"translation": "mouth",
|
|
41
|
+
"partOfSpeech": "noun",
|
|
42
|
+
"examGrade": "A2"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "vi:vocab:a2:body-parts:6",
|
|
46
|
+
"word": "răng",
|
|
47
|
+
"translation": "tooth",
|
|
48
|
+
"partOfSpeech": "noun",
|
|
49
|
+
"examGrade": "A2"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "vi:vocab:a2:body-parts:7",
|
|
53
|
+
"word": "lưỡi",
|
|
54
|
+
"translation": "tongue",
|
|
55
|
+
"partOfSpeech": "noun",
|
|
56
|
+
"examGrade": "A2"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "vi:vocab:a2:body-parts:8",
|
|
60
|
+
"word": "tai",
|
|
61
|
+
"translation": "ear",
|
|
62
|
+
"partOfSpeech": "noun",
|
|
63
|
+
"examGrade": "A2"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "vi:vocab:a2:body-parts:9",
|
|
67
|
+
"word": "cổ",
|
|
68
|
+
"translation": "neck",
|
|
69
|
+
"partOfSpeech": "noun",
|
|
70
|
+
"examGrade": "A2"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "vi:vocab:a2:body-parts:10",
|
|
74
|
+
"word": "vai",
|
|
75
|
+
"translation": "shoulder",
|
|
76
|
+
"partOfSpeech": "noun",
|
|
77
|
+
"examGrade": "A2"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "vi:vocab:a2:body-parts:11",
|
|
81
|
+
"word": "tay",
|
|
82
|
+
"translation": "arm / hand",
|
|
83
|
+
"partOfSpeech": "noun",
|
|
84
|
+
"examGrade": "A2"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "vi:vocab:a2:body-parts:12",
|
|
88
|
+
"word": "khuỷu tay",
|
|
89
|
+
"translation": "elbow",
|
|
90
|
+
"partOfSpeech": "noun",
|
|
91
|
+
"examGrade": "A2"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "vi:vocab:a2:body-parts:13",
|
|
95
|
+
"word": "ngón tay",
|
|
96
|
+
"translation": "finger",
|
|
97
|
+
"partOfSpeech": "noun",
|
|
98
|
+
"examGrade": "A2"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "vi:vocab:a2:body-parts:14",
|
|
102
|
+
"word": "bụng",
|
|
103
|
+
"translation": "stomach / belly",
|
|
104
|
+
"partOfSpeech": "noun",
|
|
105
|
+
"examGrade": "A2"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "vi:vocab:a2:body-parts:15",
|
|
109
|
+
"word": "chân",
|
|
110
|
+
"translation": "leg / foot",
|
|
111
|
+
"partOfSpeech": "noun",
|
|
112
|
+
"examGrade": "A2"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "vi:vocab:a2:body-parts:16",
|
|
116
|
+
"word": "đầu gối",
|
|
117
|
+
"translation": "knee",
|
|
118
|
+
"partOfSpeech": "noun",
|
|
119
|
+
"examGrade": "A2"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "vi:vocab:a2:body-parts:17",
|
|
123
|
+
"word": "bàn chân",
|
|
124
|
+
"translation": "foot",
|
|
125
|
+
"partOfSpeech": "noun",
|
|
126
|
+
"examGrade": "A2"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "vi:vocab:a2:body-parts:18",
|
|
130
|
+
"word": "ngón chân",
|
|
131
|
+
"translation": "toe",
|
|
132
|
+
"partOfSpeech": "noun",
|
|
133
|
+
"examGrade": "A2"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "vi:vocab:a2:body-parts:19",
|
|
137
|
+
"word": "da",
|
|
138
|
+
"translation": "skin",
|
|
139
|
+
"partOfSpeech": "noun",
|
|
140
|
+
"examGrade": "A2"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "vi:vocab:a2:body-parts:20",
|
|
144
|
+
"word": "xương",
|
|
145
|
+
"translation": "bone",
|
|
146
|
+
"partOfSpeech": "noun",
|
|
147
|
+
"examGrade": "A2"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a2-clothing",
|
|
3
|
+
"name": "Clothing",
|
|
4
|
+
"description": "Clothing and accessories",
|
|
5
|
+
"examGrade": "A2",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"category": "clothing",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"id": "vi:vocab:a2:clothing:1",
|
|
11
|
+
"word": "áo",
|
|
12
|
+
"translation": "shirt / clothing",
|
|
13
|
+
"partOfSpeech": "noun",
|
|
14
|
+
"examGrade": "A2"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "vi:vocab:a2:clothing:2",
|
|
18
|
+
"word": "áo sơ mi",
|
|
19
|
+
"translation": "shirt",
|
|
20
|
+
"partOfSpeech": "noun",
|
|
21
|
+
"examGrade": "A2"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "vi:vocab:a2:clothing:3",
|
|
25
|
+
"word": "áo thun",
|
|
26
|
+
"translation": "T-shirt",
|
|
27
|
+
"partOfSpeech": "noun",
|
|
28
|
+
"examGrade": "A2"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "vi:vocab:a2:clothing:4",
|
|
32
|
+
"word": "quần",
|
|
33
|
+
"translation": "pants / trousers",
|
|
34
|
+
"partOfSpeech": "noun",
|
|
35
|
+
"examGrade": "A2"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "vi:vocab:a2:clothing:5",
|
|
39
|
+
"word": "quần jeans",
|
|
40
|
+
"translation": "jeans",
|
|
41
|
+
"partOfSpeech": "noun",
|
|
42
|
+
"examGrade": "A2"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "vi:vocab:a2:clothing:6",
|
|
46
|
+
"word": "váy",
|
|
47
|
+
"translation": "dress / skirt",
|
|
48
|
+
"partOfSpeech": "noun",
|
|
49
|
+
"examGrade": "A2"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "vi:vocab:a2:clothing:7",
|
|
53
|
+
"word": "giày",
|
|
54
|
+
"translation": "shoes",
|
|
55
|
+
"partOfSpeech": "noun",
|
|
56
|
+
"examGrade": "A2"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "vi:vocab:a2:clothing:8",
|
|
60
|
+
"word": "dép",
|
|
61
|
+
"translation": "sandals / flip-flops",
|
|
62
|
+
"partOfSpeech": "noun",
|
|
63
|
+
"examGrade": "A2"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "vi:vocab:a2:clothing:9",
|
|
67
|
+
"word": "mũ",
|
|
68
|
+
"translation": "hat / cap",
|
|
69
|
+
"partOfSpeech": "noun",
|
|
70
|
+
"examGrade": "A2"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "vi:vocab:a2:clothing:10",
|
|
74
|
+
"word": "khăn",
|
|
75
|
+
"translation": "scarf / towel",
|
|
76
|
+
"partOfSpeech": "noun",
|
|
77
|
+
"examGrade": "A2"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "vi:vocab:a2:clothing:11",
|
|
81
|
+
"word": "găng tay",
|
|
82
|
+
"translation": "gloves",
|
|
83
|
+
"partOfSpeech": "noun",
|
|
84
|
+
"examGrade": "A2"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "vi:vocab:a2:clothing:12",
|
|
88
|
+
"word": "tất",
|
|
89
|
+
"translation": "socks",
|
|
90
|
+
"partOfSpeech": "noun",
|
|
91
|
+
"examGrade": "A2"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "vi:vocab:a2:clothing:13",
|
|
95
|
+
"word": "áo khoác",
|
|
96
|
+
"translation": "jacket / coat",
|
|
97
|
+
"partOfSpeech": "noun",
|
|
98
|
+
"examGrade": "A2"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "vi:vocab:a2:clothing:14",
|
|
102
|
+
"word": "áo len",
|
|
103
|
+
"translation": "sweater",
|
|
104
|
+
"partOfSpeech": "noun",
|
|
105
|
+
"examGrade": "A2"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "vi:vocab:a2:clothing:15",
|
|
109
|
+
"word": "đồng hồ",
|
|
110
|
+
"translation": "watch",
|
|
111
|
+
"partOfSpeech": "noun",
|
|
112
|
+
"examGrade": "A2"
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
}
|