@polyglot-bundles/ms-word-lists 0.1.1
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/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +471 -0
- package/dist/index.js.map +1 -0
- package/dist/levels/a1.d.ts +10 -0
- package/dist/levels/a1.d.ts.map +1 -0
- package/dist/levels/a1.js +7 -0
- package/dist/levels/a1.js.map +1 -0
- package/package.json +51 -0
- package/src/index.ts +499 -0
- package/src/json/a1/a1-vocabulary-01.json +412 -0
- package/src/json/a1/a1-vocabulary-02.json +412 -0
- package/src/json/a1/a1-vocabulary-03.json +412 -0
- package/src/json/a1/a1-vocabulary-04.json +412 -0
- package/src/json/a1/a1-vocabulary-05.json +20 -0
- package/src/json/a1/basic-greetings.json +60 -0
- package/src/json/a1/colors.json +60 -0
- package/src/json/a1/family-members.json +50 -0
- package/src/json/a1/food-basics.json +60 -0
- package/src/json/a1/numbers-1-10.json +60 -0
- package/src/json/a2/a2-vocabulary-01.json +412 -0
- package/src/json/a2/a2-vocabulary-02.json +412 -0
- package/src/json/a2/a2-vocabulary-03.json +412 -0
- package/src/json/a2/a2-vocabulary-04.json +412 -0
- package/src/json/a2/a2-vocabulary-05.json +412 -0
- package/src/json/a2/a2-vocabulary-06.json +412 -0
- package/src/json/a2/a2-vocabulary-07.json +412 -0
- package/src/json/a2/a2-vocabulary-08.json +412 -0
- package/src/json/a2/a2-vocabulary-09.json +412 -0
- package/src/json/a2/a2-vocabulary-10.json +412 -0
- package/src/json/a2/a2-vocabulary-11.json +412 -0
- package/src/json/a2/a2-vocabulary-12.json +412 -0
- package/src/json/b1/b1-vocabulary-01.json +412 -0
- package/src/json/b1/b1-vocabulary-02.json +412 -0
- package/src/json/b1/b1-vocabulary-03.json +412 -0
- package/src/json/b1/b1-vocabulary-04.json +412 -0
- package/src/json/b1/b1-vocabulary-05.json +412 -0
- package/src/json/b1/b1-vocabulary-06.json +412 -0
- package/src/json/b1/b1-vocabulary-07.json +412 -0
- package/src/json/b1/b1-vocabulary-08.json +412 -0
- package/src/json/b1/b1-vocabulary-09.json +412 -0
- package/src/json/b1/b1-vocabulary-10.json +412 -0
- package/src/json/b1/b1-vocabulary-11.json +412 -0
- package/src/json/b1/b1-vocabulary-12.json +412 -0
- package/src/json/b1/b1-vocabulary-13.json +412 -0
- package/src/json/b1/b1-vocabulary-14.json +412 -0
- package/src/json/b1/b1-vocabulary-15.json +412 -0
- package/src/json/b1/b1-vocabulary-16.json +412 -0
- package/src/json/b1/b1-vocabulary-17.json +412 -0
- package/src/json/b1/b1-vocabulary-18.json +412 -0
- package/src/json/b1/b1-vocabulary-19.json +412 -0
- package/src/json/b1/b1-vocabulary-20.json +412 -0
- package/src/json/b1/b1-vocabulary-21.json +412 -0
- package/src/json/b1/b1-vocabulary-22.json +412 -0
- package/src/json/b1/b1-vocabulary-23.json +412 -0
- package/src/json/b1/b1-vocabulary-24.json +404 -0
- package/src/levels/a1.ts +23 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a1-numbers-1-10",
|
|
3
|
+
"name": "Numbers 1-10",
|
|
4
|
+
"desc": "Numbers one through ten in Malay",
|
|
5
|
+
"cat": "numbers",
|
|
6
|
+
"level": "A1",
|
|
7
|
+
"difficulty": "beginner",
|
|
8
|
+
"words": [
|
|
9
|
+
{
|
|
10
|
+
"word": "satu",
|
|
11
|
+
"translation": "one",
|
|
12
|
+
"partOfSpeech": "number"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"word": "dua",
|
|
16
|
+
"translation": "two",
|
|
17
|
+
"partOfSpeech": "number"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"word": "tiga",
|
|
21
|
+
"translation": "three",
|
|
22
|
+
"partOfSpeech": "number"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"word": "empat",
|
|
26
|
+
"translation": "four",
|
|
27
|
+
"partOfSpeech": "number"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"word": "lima",
|
|
31
|
+
"translation": "five",
|
|
32
|
+
"partOfSpeech": "number"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"word": "enam",
|
|
36
|
+
"translation": "six",
|
|
37
|
+
"partOfSpeech": "number"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"word": "tujuh",
|
|
41
|
+
"translation": "seven",
|
|
42
|
+
"partOfSpeech": "number"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"word": "lapan",
|
|
46
|
+
"translation": "eight",
|
|
47
|
+
"partOfSpeech": "number"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"word": "sembilan",
|
|
51
|
+
"translation": "nine",
|
|
52
|
+
"partOfSpeech": "number"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"word": "sepuluh",
|
|
56
|
+
"translation": "ten",
|
|
57
|
+
"partOfSpeech": "number"
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "a2-vocabulary-01",
|
|
3
|
+
"name": "A2 Vocabulary 01",
|
|
4
|
+
"description": "A2 level Malay frequency vocabulary (50 words)",
|
|
5
|
+
"examGrade": "A2",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"source": "Malay subtitle frequency list (HermitDave/FrequencyWords)",
|
|
8
|
+
"sourceUrl": "https://github.com/hermitdave/FrequencyWords",
|
|
9
|
+
"category": "general",
|
|
10
|
+
"words": [
|
|
11
|
+
{
|
|
12
|
+
"id": "ms:vocab:202:luar",
|
|
13
|
+
"word": "luar",
|
|
14
|
+
"translation": "",
|
|
15
|
+
"partOfSpeech": "",
|
|
16
|
+
"examGrade": "A2",
|
|
17
|
+
"frequency": 7619
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "ms:vocab:203:sedikit",
|
|
21
|
+
"word": "sedikit",
|
|
22
|
+
"translation": "",
|
|
23
|
+
"partOfSpeech": "",
|
|
24
|
+
"examGrade": "A2",
|
|
25
|
+
"frequency": 7576
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "ms:vocab:204:yeah",
|
|
29
|
+
"word": "yeah",
|
|
30
|
+
"translation": "",
|
|
31
|
+
"partOfSpeech": "",
|
|
32
|
+
"examGrade": "A2",
|
|
33
|
+
"frequency": 7568
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "ms:vocab:205:membunuh",
|
|
37
|
+
"word": "membunuh",
|
|
38
|
+
"translation": "",
|
|
39
|
+
"partOfSpeech": "",
|
|
40
|
+
"examGrade": "A2",
|
|
41
|
+
"frequency": 7538
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "ms:vocab:206:mencari",
|
|
45
|
+
"word": "mencari",
|
|
46
|
+
"translation": "",
|
|
47
|
+
"partOfSpeech": "",
|
|
48
|
+
"examGrade": "A2",
|
|
49
|
+
"frequency": 7516
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "ms:vocab:207:cari",
|
|
53
|
+
"word": "cari",
|
|
54
|
+
"translation": "",
|
|
55
|
+
"partOfSpeech": "",
|
|
56
|
+
"examGrade": "A2",
|
|
57
|
+
"frequency": 7501
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "ms:vocab:208:hebat",
|
|
61
|
+
"word": "hebat",
|
|
62
|
+
"translation": "",
|
|
63
|
+
"partOfSpeech": "",
|
|
64
|
+
"examGrade": "A2",
|
|
65
|
+
"frequency": 7469
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": "ms:vocab:209:polis",
|
|
69
|
+
"word": "polis",
|
|
70
|
+
"translation": "",
|
|
71
|
+
"partOfSpeech": "",
|
|
72
|
+
"examGrade": "A2",
|
|
73
|
+
"frequency": 7445
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "ms:vocab:210:terlalu",
|
|
77
|
+
"word": "terlalu",
|
|
78
|
+
"translation": "",
|
|
79
|
+
"partOfSpeech": "",
|
|
80
|
+
"examGrade": "A2",
|
|
81
|
+
"frequency": 7363
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "ms:vocab:211:katakan",
|
|
85
|
+
"word": "katakan",
|
|
86
|
+
"translation": "",
|
|
87
|
+
"partOfSpeech": "",
|
|
88
|
+
"examGrade": "A2",
|
|
89
|
+
"frequency": 7311
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "ms:vocab:212:ketika",
|
|
93
|
+
"word": "ketika",
|
|
94
|
+
"translation": "",
|
|
95
|
+
"partOfSpeech": "",
|
|
96
|
+
"examGrade": "A2",
|
|
97
|
+
"frequency": 7286
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "ms:vocab:213:apakah",
|
|
101
|
+
"word": "apakah",
|
|
102
|
+
"translation": "",
|
|
103
|
+
"partOfSpeech": "",
|
|
104
|
+
"examGrade": "A2",
|
|
105
|
+
"frequency": 7215
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "ms:vocab:214:cukup",
|
|
109
|
+
"word": "cukup",
|
|
110
|
+
"translation": "",
|
|
111
|
+
"partOfSpeech": "",
|
|
112
|
+
"examGrade": "A2",
|
|
113
|
+
"frequency": 7208
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "ms:vocab:215:maksud",
|
|
117
|
+
"word": "maksud",
|
|
118
|
+
"translation": "",
|
|
119
|
+
"partOfSpeech": "",
|
|
120
|
+
"examGrade": "A2",
|
|
121
|
+
"frequency": 7200
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"id": "ms:vocab:216:tengok",
|
|
125
|
+
"word": "tengok",
|
|
126
|
+
"translation": "",
|
|
127
|
+
"partOfSpeech": "",
|
|
128
|
+
"examGrade": "A2",
|
|
129
|
+
"frequency": 7162
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "ms:vocab:217:ok",
|
|
133
|
+
"word": "ok",
|
|
134
|
+
"translation": "",
|
|
135
|
+
"partOfSpeech": "",
|
|
136
|
+
"examGrade": "A2",
|
|
137
|
+
"frequency": 7142
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": "ms:vocab:218:lalu",
|
|
141
|
+
"word": "lalu",
|
|
142
|
+
"translation": "",
|
|
143
|
+
"partOfSpeech": "",
|
|
144
|
+
"examGrade": "A2",
|
|
145
|
+
"frequency": 7071
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "ms:vocab:219:sebenarnya",
|
|
149
|
+
"word": "sebenarnya",
|
|
150
|
+
"translation": "",
|
|
151
|
+
"partOfSpeech": "",
|
|
152
|
+
"examGrade": "A2",
|
|
153
|
+
"frequency": 7044
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "ms:vocab:220:tentu",
|
|
157
|
+
"word": "tentu",
|
|
158
|
+
"translation": "",
|
|
159
|
+
"partOfSpeech": "",
|
|
160
|
+
"examGrade": "A2",
|
|
161
|
+
"frequency": 7026
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": "ms:vocab:221:ianya",
|
|
165
|
+
"word": "ianya",
|
|
166
|
+
"translation": "",
|
|
167
|
+
"partOfSpeech": "",
|
|
168
|
+
"examGrade": "A2",
|
|
169
|
+
"frequency": 6992
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": "ms:vocab:222:tangan",
|
|
173
|
+
"word": "tangan",
|
|
174
|
+
"translation": "",
|
|
175
|
+
"partOfSpeech": "",
|
|
176
|
+
"examGrade": "A2",
|
|
177
|
+
"frequency": 6964
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"id": "ms:vocab:223:mesti",
|
|
181
|
+
"word": "mesti",
|
|
182
|
+
"translation": "",
|
|
183
|
+
"partOfSpeech": "",
|
|
184
|
+
"examGrade": "A2",
|
|
185
|
+
"frequency": 6920
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "ms:vocab:224:mengambil",
|
|
189
|
+
"word": "mengambil",
|
|
190
|
+
"translation": "",
|
|
191
|
+
"partOfSpeech": "",
|
|
192
|
+
"examGrade": "A2",
|
|
193
|
+
"frequency": 6871
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "ms:vocab:225:kecil",
|
|
197
|
+
"word": "kecil",
|
|
198
|
+
"translation": "",
|
|
199
|
+
"partOfSpeech": "",
|
|
200
|
+
"examGrade": "A2",
|
|
201
|
+
"frequency": 6775
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": "ms:vocab:226:manusia",
|
|
205
|
+
"word": "manusia",
|
|
206
|
+
"translation": "",
|
|
207
|
+
"partOfSpeech": "",
|
|
208
|
+
"examGrade": "A2",
|
|
209
|
+
"frequency": 6751
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "ms:vocab:227:nanti",
|
|
213
|
+
"word": "nanti",
|
|
214
|
+
"translation": "",
|
|
215
|
+
"partOfSpeech": "",
|
|
216
|
+
"examGrade": "A2",
|
|
217
|
+
"frequency": 6742
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": "ms:vocab:228:tanpa",
|
|
221
|
+
"word": "tanpa",
|
|
222
|
+
"translation": "",
|
|
223
|
+
"partOfSpeech": "",
|
|
224
|
+
"examGrade": "A2",
|
|
225
|
+
"frequency": 6740
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": "ms:vocab:229:berapa",
|
|
229
|
+
"word": "berapa",
|
|
230
|
+
"translation": "",
|
|
231
|
+
"partOfSpeech": "",
|
|
232
|
+
"examGrade": "A2",
|
|
233
|
+
"frequency": 6694
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "ms:vocab:230:sebuah",
|
|
237
|
+
"word": "sebuah",
|
|
238
|
+
"translation": "",
|
|
239
|
+
"partOfSpeech": "",
|
|
240
|
+
"examGrade": "A2",
|
|
241
|
+
"frequency": 6661
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"id": "ms:vocab:231:bisa",
|
|
245
|
+
"word": "bisa",
|
|
246
|
+
"translation": "",
|
|
247
|
+
"partOfSpeech": "",
|
|
248
|
+
"examGrade": "A2",
|
|
249
|
+
"frequency": 6656
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "ms:vocab:232:benda",
|
|
253
|
+
"word": "benda",
|
|
254
|
+
"translation": "",
|
|
255
|
+
"partOfSpeech": "",
|
|
256
|
+
"examGrade": "A2",
|
|
257
|
+
"frequency": 6544
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"id": "ms:vocab:233:ikut",
|
|
261
|
+
"word": "ikut",
|
|
262
|
+
"translation": "",
|
|
263
|
+
"partOfSpeech": "",
|
|
264
|
+
"examGrade": "A2",
|
|
265
|
+
"frequency": 6541
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": "ms:vocab:234:balik",
|
|
269
|
+
"word": "balik",
|
|
270
|
+
"translation": "",
|
|
271
|
+
"partOfSpeech": "",
|
|
272
|
+
"examGrade": "A2",
|
|
273
|
+
"frequency": 6497
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"id": "ms:vocab:235:selalu",
|
|
277
|
+
"word": "selalu",
|
|
278
|
+
"translation": "",
|
|
279
|
+
"partOfSpeech": "",
|
|
280
|
+
"examGrade": "A2",
|
|
281
|
+
"frequency": 6459
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"id": "ms:vocab:236:mendapat",
|
|
285
|
+
"word": "mendapat",
|
|
286
|
+
"translation": "",
|
|
287
|
+
"partOfSpeech": "",
|
|
288
|
+
"examGrade": "A2",
|
|
289
|
+
"frequency": 6434
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": "ms:vocab:237:maafkan",
|
|
293
|
+
"word": "maafkan",
|
|
294
|
+
"translation": "",
|
|
295
|
+
"partOfSpeech": "",
|
|
296
|
+
"examGrade": "A2",
|
|
297
|
+
"frequency": 6411
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "ms:vocab:238:berikan",
|
|
301
|
+
"word": "berikan",
|
|
302
|
+
"translation": "",
|
|
303
|
+
"partOfSpeech": "",
|
|
304
|
+
"examGrade": "A2",
|
|
305
|
+
"frequency": 6395
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"id": "ms:vocab:239:bawah",
|
|
309
|
+
"word": "bawah",
|
|
310
|
+
"translation": "",
|
|
311
|
+
"partOfSpeech": "",
|
|
312
|
+
"examGrade": "A2",
|
|
313
|
+
"frequency": 6358
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"id": "ms:vocab:240:benar",
|
|
317
|
+
"word": "benar",
|
|
318
|
+
"translation": "",
|
|
319
|
+
"partOfSpeech": "",
|
|
320
|
+
"examGrade": "A2",
|
|
321
|
+
"frequency": 6354
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "ms:vocab:241:terus",
|
|
325
|
+
"word": "terus",
|
|
326
|
+
"translation": "",
|
|
327
|
+
"partOfSpeech": "",
|
|
328
|
+
"examGrade": "A2",
|
|
329
|
+
"frequency": 6348
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "ms:vocab:242:bodoh",
|
|
333
|
+
"word": "bodoh",
|
|
334
|
+
"translation": "",
|
|
335
|
+
"partOfSpeech": "",
|
|
336
|
+
"examGrade": "A2",
|
|
337
|
+
"frequency": 6315
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "ms:vocab:243:gila",
|
|
341
|
+
"word": "gila",
|
|
342
|
+
"translation": "",
|
|
343
|
+
"partOfSpeech": "",
|
|
344
|
+
"examGrade": "A2",
|
|
345
|
+
"frequency": 6312
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"id": "ms:vocab:244:budak",
|
|
349
|
+
"word": "budak",
|
|
350
|
+
"translation": "",
|
|
351
|
+
"partOfSpeech": "",
|
|
352
|
+
"examGrade": "A2",
|
|
353
|
+
"frequency": 6263
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"id": "ms:vocab:245:patut",
|
|
357
|
+
"word": "patut",
|
|
358
|
+
"translation": "",
|
|
359
|
+
"partOfSpeech": "",
|
|
360
|
+
"examGrade": "A2",
|
|
361
|
+
"frequency": 6248
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": "ms:vocab:246:hal",
|
|
365
|
+
"word": "hal",
|
|
366
|
+
"translation": "",
|
|
367
|
+
"partOfSpeech": "",
|
|
368
|
+
"examGrade": "A2",
|
|
369
|
+
"frequency": 6184
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": "ms:vocab:247:keluarga",
|
|
373
|
+
"word": "keluarga",
|
|
374
|
+
"translation": "",
|
|
375
|
+
"partOfSpeech": "",
|
|
376
|
+
"examGrade": "A2",
|
|
377
|
+
"frequency": 6123
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"id": "ms:vocab:248:perempuan",
|
|
381
|
+
"word": "perempuan",
|
|
382
|
+
"translation": "",
|
|
383
|
+
"partOfSpeech": "",
|
|
384
|
+
"examGrade": "A2",
|
|
385
|
+
"frequency": 6005
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"id": "ms:vocab:249:takut",
|
|
389
|
+
"word": "takut",
|
|
390
|
+
"translation": "",
|
|
391
|
+
"partOfSpeech": "",
|
|
392
|
+
"examGrade": "A2",
|
|
393
|
+
"frequency": 5941
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"id": "ms:vocab:250:wanita",
|
|
397
|
+
"word": "wanita",
|
|
398
|
+
"translation": "",
|
|
399
|
+
"partOfSpeech": "",
|
|
400
|
+
"examGrade": "A2",
|
|
401
|
+
"frequency": 5857
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"id": "ms:vocab:251:selepas",
|
|
405
|
+
"word": "selepas",
|
|
406
|
+
"translation": "",
|
|
407
|
+
"partOfSpeech": "",
|
|
408
|
+
"examGrade": "A2",
|
|
409
|
+
"frequency": 5842
|
|
410
|
+
}
|
|
411
|
+
]
|
|
412
|
+
}
|