-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopic.json
executable file
·1311 lines (1305 loc) · 41.5 KB
/
topic.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"data":
{
"masen.ka": {
"number": "1",
"data_cat": "N5",
"class": ["N5", "masu", "negative"],
"img": "001.png",
"symbol": "V ~ませんか",
"express": "invite",
"example": "ケーキをたべませんか?",
"video": [ "https://www.youtube.com/watch?v=zJTlKO793ZI&list=PLP6jQzrtQ718EBgJyqIum7rXtyOL7ksDn&index=3" ],
"translate": "Won't you have some cake?",
"level": "N5"
},
"ga.arimasu": {
"number": "2",
"data_cat": "N5",
"class": ["N5", "arimasu"],
"img": "001.png",
"symbol": "~があります",
"express": "there is (non living)",
"example": "つくえの上にボールがあります",
"translate": "There is a ball on the desk.",
"level": "N5"
},
"ga.imasu": {
"number": "3",
"data_cat": "N5",
"class": ["N5", "masu"],
"img": "001.png",
"symbol": "~がいます",
"express": "there is (living)",
"example": "きょうしつに田中先生がいますか",
"translate": "Is Mr. Tanaka in the classroom?",
"level": "N5"
},
"mashou": {
"number": "4",
"data_cat": "N5",
"class": ["N5", "polite", "volitional"],
"img": "001.png",
"symbol": "~ましょう",
"express": "I'll; Let's",
"example": "食べましょう。",
"translate": "Let's eat!",
"level": "N5"
},
"mashou.ka": {
"number": "5",
"data_cat": "N5",
"class": ["N5", "volitional"],
"img": "001.png",
"symbol": "~ましょうか",
"express": "advice",
"example": "食べましょうか。 ",
"translate": "How about we eat?",
"level": "N5"
},
"te.kudasai": {
"number": "6",
"data_cat": "N5",
"class": ["N5", "te"],
"img": "001.png",
"symbol": "~てください",
"express": "request",
"example": "日本語ではなしてください。",
"translate": "Please speak in Japanese.",
"level": "N5"
},
"te.mo.ii.desu": {
"number": "7",
"data_cat": "N5",
"class": ["N5", "te"],
"img": "001.png",
"symbol": "~てもいいです",
"express": "ask permission",
"example": "料理してもいいですか。",
"translate": "May I cook?",
"level": "N5"
},
"te.wa.ikemasen": {
"number": "8",
"data_cat": "N5",
"class": ["N5", "te", "negative"],
"img": "001.png",
"symbol": "~てはいけません",
"express": "disapprove",
"example": "ここに車を停めてはいけません",
"translate": "You must not park the car here.",
"level": "N5"
},
"te.iru": {
"number": "9",
"data_cat": "N5",
"class": ["N5", "te"],
"img": "001.png",
"symbol": "~ている",
"express": "state; ongoing action",
"example": "私は 読んでいます。",
"translate": "I am reading.",
"level": "N5"
},
"nai.de.kudasai": {
"number": "10",
"data_cat": "N5",
"class": ["N5", "te", "negative"],
"img": "001.png",
"symbol": "ないでください",
"express": "neg. request",
"example": "このりんごを食べないでください",
"translate": "Please don't eat this apple.",
"level": "N5"
},
"no.ga.suki.desu": {
"number": "11",
"data_cat": "N5",
"class": ["N5", "desu"],
"img": "001.png",
"symbol": "~のがすきです",
"express": "like doing",
"example": "彼女は歌うのが好きです",
"translate": "She likes singing.",
"level": "N5"
},
"no.ga.jouzu.desu": {
"number": "12",
"data_cat": "N5",
"class": ["N5", "desu"],
"img": "001.png",
"symbol": "~のがじょうずです",
"express": "to be good at smth.",
"example": "彼女は歌うのが上手です",
"translate": "She's good at singing.",
"level": "N5"
},
"no.ga.heta.desu": {
"number": "13",
"data_cat": "N5",
"class": ["N5", "desu"],
"img": "001.png",
"symbol": "~のがへたです",
"express": "to be bad at smth.",
"example": "私は踊るのが下手です",
"translate": "I'm bad at dancing.",
"level": "N5"
},
"mada.te.imasen": {
"number": "14",
"data_cat": "N5",
"class": ["N5", "masu", "negative"],
"img": "001.png",
"symbol": "まだ~ていません",
"express": "not done smth yet",
"example": "私はまだ決めていません",
"translate": "I haven't decided yet.",
"level": "N5"
},
"no.houga.yori": {
"number": "15",
"data_cat": "N5",
"class": ["N5"],
"img": "001.png",
"symbol": "~のほうが~より",
"express": "smth more ADJ than...",
"example": "図書館の方が学校より静か",
"translate": "Library is quieter than school.",
"level": "N5"
},
"no.naka.de ga.ichiban": {
"number": "16",
"data_cat": "N5",
"class": ["N5"],
"img": "001.png",
"symbol": "~のなかで~がいちばん",
"express": "the most (new,best)",
"example": "あの図書館の中でこの本がいちばん",
"translate": "This book is the best book in that library.",
"level": "N5"
},
"tsumori.desu": {
"number": "17",
"data_cat": "N5",
"class": ["N5", "desu"],
"img": "001.png",
"symbol": "つもりです",
"express": "plan; intent",
"example": "私は映画を見に行くつもりです",
"translate": "I'm going to go see a movie.",
"level": "N5"
},
"ku ni.naru": {
"number": "18",
"data_cat": "N5",
"class": ["N5", "adjective"],
"img": "001.png",
"symbol": "~く/~になる",
"express": "become (smart/tall/...)",
"example": "この自転車は古くなった",
"translate": "This bicycle became old.",
"level": "N5"
},
"V.tai.desu": {
"number": "19",
"data_cat": "N5",
"class": ["N5", "masu"],
"img": "001.png",
"symbol": "V~たいです",
"express": "want (polite)",
"example": "僕はケーキを食べたいです",
"video": [ "https://www.youtube.com/watch?v=fNj0Vm8lFPE&list=PLP6jQzrtQ718EBgJyqIum7rXtyOL7ksDn&index=7" ],
"translate": "I want to eat some cake.",
"level": "N5"
},
"tari.tari.suru": {
"number": "20",
"data_cat": "N5",
"class": ["N5", "ta"],
"img": "001.png",
"symbol": "~たり~たりする",
"express": "list (activities/attributes)",
"example": "彼女は親切だったりきれいだったりする",
"translate": "She's nice and beautiful.",
"level": "N5"
},
"ta.koto.ga.aru": {
"number": "21",
"data_cat": "N5",
"class": ["N5", "ta"],
"img": "001.png",
"symbol": "~たことがある",
"express": "experience",
"example": "私は東京へ行った<u>ことがある</u>",
"video": [ "https://www.youtube.com/watch?v=4_XMsDpRgM8&list=PLP6jQzrtQ718EBgJyqIum7rXtyOL7ksDn&index=8" ],
"translate": "I've been to Tokyo.",
"level": "N5"
},
"sugiru": {
"number": "22",
"data_cat": "N5",
"class": ["N5", "masu"],
"img": "001.png",
"symbol": "~すぎる",
"express": "too much",
"example": "山田さんは<u>食べすぎる</u>",
"examples": [
"寒<u>すぎる</u>:it's <u>too cold</u>",
"有名<u>すぎる</u>:he's <u>too famous</u>"
],
"translate": "Mr. Yamada <u>eats too much</u>.",
"level": "N5"
},
"houga.ii": {
"number": "23",
"data_cat": "N5",
"class": ["N5", "ta"],
"img": "001.png",
"symbol": "~ほうがいい",
"express": "it's better",
"example": "あなたはこの本を買ったほうがいい",
"translate": "You should buy this book.",
"level": "N5"
},
"node": {
"number": "24",
"data_cat": "N5",
"class": ["N5", "conjunction"],
"img": "001.png",
"symbol": "ので",
"express": "because",
"example": "この本は高いので買わない",
"translate": "I'm not buying this book, because it's expensive.",
"level": "N5"
},
"nakereba.ikemasen-nakya.ikemasen": {
"number": "25",
"data_cat": "N5",
"class": ["N5", "passive", "negative", "plain"],
"img": "001.png",
"symbol": "V~なければいけません",
"express": "to have to do, must do",
"example": "行<u>かなきゃ</u>,急が<U>なきゃいけません</u>",
"examples": [
"しごとに<u>いかなきゃいけない</u>:I <u>have to</u> go to work",
"予定をキャンセルし<u>なきゃいけない</u>:I <u>have to</u> cancel the plan",
"あなたは宿題を終わら<u>なくちゃいけない</u>:You have to finish your homework"
],
"video": [
"https://www.youtube.com/watch?v=FTq8tATP4lo&list=PLP6jQzrtQ718EBgJyqIum7rXtyOL7ksDn&index=5"
],
"translate": "I have to go. I have to rush.",
"level": "N5"
},
"deshou": {
"number": "26",
"data_cat": "N5",
"class": ["N5", "volitional"],
"img": "001.png",
"symbol": "でしょう",
"express": "isn't it",
"example": "あなたは七時まえに帰るでしょ?",
"translate": "You'll come back before 7 o'clock, right?",
"level": "N5"
},
"mae.ni": {
"number": "27",
"data_cat": "N5",
"class": ["N5", "dictionary"],
"img": "001.png",
"symbol": "~まえに",
"express": "before doing; ago",
"example": "私はプールで入る前に30分も待ちました",
"translate": "I waited 30 minutes before entering the pool.",
"level": "N5"
},
"V.te.kara": {
"number": "28",
"data_cat": "N5",
"class": ["N5", "te"],
"img": "001.png",
"symbol": "~てから",
"express": "after doing smth",
"example": "考えてから言ってください",
"translate": "Please speak after thinking.",
"level": "N5"
},
"sou.desu": {
"number": "29",
"data_cat": "N4",
"class": ["N4", "dictionary", "adjective","feeling"],
"img": "001.png",
"symbol": "そうです",
"express": "it seems like",
"example": "田中さんは忙し<u>そうです</u>",
"examples": [
"このケーキは美味し<u>そう</u>:this cake looks delicious",
"彼はケーキをたべそうです:It seems he eats cake"
],
"translate": "Mr. Tanaka seems busy",
"level": "N4"
},
"shi.shi.kara": {
"number": "30",
"data_cat": "N4",
"class": ["N4", "adjective"],
"img": "001.png",
"symbol": "~し~しから",
"express": "list of reasons",
"example": "優しい<u>し</u>、かっこいい<u>し</u>、面白い(<u>から</u>)",
"translate": "Because he's kind, attractive, and interesting",
"level": "N4"
},
"te.miru": {
"number": "31",
"data_cat": "N4",
"class": ["N4", "te"],
"img": "001.png",
"symbol": "てみる",
"express": "to try",
"example": "彼は彼女と話し<u>てみる<u>",
"examples": [
"これ着<u>てみて</u>もいいですか:can I try this on?"
],
"translate": "He'll try to talk to her",
"level": "N4"
},
"nara": {
"number": "32",
"data_cat": "N4",
"class": ["N4", "dictionary","plain","if","advice"],
"img": "001.png",
"symbol": "なら",
"express": "V after V; suggest",
"example": "ともだちがくる<u>なら</u>、わたしはピザをちゅうもんする",
"examples": [
"よく食べる<u>なら</u>..:If you want to eat well.."
],
"translate": "If our friends come, I will order pizza",
"level": "N4"
},
"Period.ni.Freq": {
"number": "33",
"data_cat": "N4",
"class": ["N4", "time", "frequency"],
"img": "001.png",
"symbol": "PにF",
"express": "period/frequency",
"example": "<u>一週間に一回</u>日本語を勉強します",
"translate": "I study Japanese once a week",
"level": "N4"
},
"ga.hoshii-te.hoshii": {
"number": "34",
"data_cat": "N4",
"class": ["N4","meanings", "want"],
"meanings": "②",
"img": "001.png",
"symbol": "~がほしい,~てほしい",
"express": "I want; I want others to..",
"example": "私はこの本<u>がほしい</u>",
"examples": [
"みんなに本を読<u>でほしい</u>です:I want everyone to read the book",
"(私は)父にたばこをやめてほしいです:I want my father to stop smoking"
],
"video": [
"https://www.youtube.com/watch?v=KJvrLGCbWPE&list=PLP6jQzrtQ718EBgJyqIum7rXtyOL7ksDn&index=6",
"https://www.youtube.com/watch?v=_544LGbtvd4"
],
"translate": "I want this book",
"level": "N4"
},
"garu": {
"number": "35",
"data_cat": "N4",
"class": ["N4", "ta", "te","3rd person"],
"img": "001.png",
"symbol": "~がる",
"express": "3rd person",
"example": "妹は新しいバッグをほし<u>がって</u>います",
"examples": [
"家に帰ったら、すぐパソコンを使いた<u>がる</u>:(He) acts like wanting to use computer as soon as (he) gets home"
],
"translate": "my younger sister wants a new bag",
"level": "N4"
},
"kamoshirenai": {
"number": "36",
"data_cat": "N4",
"class": ["N4", "negative","possibly","plain"],
"img": "001.png",
"symbol": "~かもしれない",
"express": "possibility (not much)",
"example": "あしたはあめがふる<u>かもしれない</u>",
"examples": [
"走れば電車に乗れる<u>かもしれない</u>:if you run you might be able to catch the train"
],
"translate": "It may rain tomorrow",
"level": "N4"
},
"tara.dou.desu.ka": {
"number": "37",
"data_cat": "N4",
"class": ["N4", "if","advice"],
"img": "001.png",
"symbol": "~たらどうですか",
"express": "giving advice",
"example": "くすりをのん<u>だらどうですか</u>",
"translate": "How about taking some medicine?",
"level": "N4"
},
"Num.mo-Num.shika.mo": {
"number": "38",
"data_cat": "N4",
"class": ["N4", "number","frequency","meanings"],
"meanings": "②",
"img": "001.png",
"symbol": "Number+も",
"express": "as many as; as few as",
"example": "昨日、電話<u>三回も</u>したよ!",
"examples": [
"きのうのパーテイーには学生が<u>二十人も</u>来ました:as many as 20 students came at the party yesterday",
"私は日本語のじしょを<u>いっさつしかも</u>っていません:I have only one Japanese dictionary"
],
"translate": " I called you like three times yesterday",
"level": "N4"
},
"shika.nai": {
"number": "39",
"data_cat": "N4",
"class": ["N4", "negative","only"],
"img": "001.png",
"symbol": "しか~ない",
"express": "only, as few as",
"example": "彼にはお金<u>しかない</u>",
"translate": "He has nothing but money",
"level": "N4"
},
"te.oku": {
"number": "40",
"data_cat": "N4",
"class": ["N4", "te","anticipation","same","meanings"],
"meanings": "②",
"img": "001.png",
"symbol": "~ておく",
"express": "in advance, leave it like it is",
"example": "この分を覚え<u>ておく</u>",
"examples": [
"そのままにし<u>ておいて</u>ください:please leave it like that"
],
"translate": "I'll memorize this part",
"level": "N4"
},
"Vol.you-Vol.ou": {
"number": "41",
"data_cat": "N4",
"class": ["N4", "masu","volitional"],
"img": "001.png",
"symbol": "~よう",
"express": "let's do (smth)",
"example": "このケーキを<u>食べよう</u>",
"examples": [
"あそこで遊ぼう:Let's play over there"
],
"translate": "Let's eat this cake",
"level": "N4"
},
"te.ageru": {
"number": "42",
"data_cat": "N4",
"class": ["N4", "te","favour"],
"img": "001.png",
"symbol": "~てあげる",
"express": "Aは does a favour to Bに",
"example": "私<u>は</u>山田さん<u>に</u>本を買っ<u>てあげました</u>",
"translate": "I bought this book for Yamada-san",
"level": "N4"
},
"te.kureru": {
"number": "43",
"data_cat": "N4",
"class": ["N4", "te","favour"],
"img": "001.png",
"symbol": "~てくれる",
"express": "Aは does a favour to meに",
"example": "山田さん<u>は</u>私<u>に</u>本を買っ<u>てくれました</u>",
"translate": "Yamada-san bought this book for me",
"level": "N4"
},
"te.morau": {
"number": "44",
"data_cat": "N4",
"class": ["N4", "te", "favour"],
"img": "001.png",
"symbol": "~てもらう",
"express": "to get someone to do smth",
"example": "彼<u>に</u>宿題を見せ<u>てもらう</u>",
"translate": "I'll make him show his homework",
"level": "N4"
},
"tara": {
"number": "45",
"data_cat": "N4",
"class": ["N4", "ta", "condition"],
"img": "001.png",
"symbol": "~たら",
"express": "A~たらB: if A then B",
"example": "てんきがよかっ<u>たら</u>、さんぽうにいきます",
"translate": "<u>If</u> the weather is good, we will go for a walk",
"level": "N4"
},
"ba.reba": {
"number": "46",
"data_cat": "N4",
"class": ["N4", "ba", "condition"],
"img": "001.png",
"symbol": "~ば/~れば",
"express": "if (smth happened)",
"example": "金があ<u>れば</u>あの車を買う",
"translate": "If I had money I would buy that car",
"level": "N4"
},
"nasai": {
"number": "47",
"data_cat": "N4",
"class": ["N4", "masu", "imperative"],
"img": "001.png",
"symbol": "~なさい",
"express": "imperative",
"example": "学校へ行き<u>なさい</i>",
"translate": "Go to school!",
"level": "N4"
},
"te.sumimasen": {
"number": "48",
"data_cat": "N4",
"class": ["N4", "te","excuse"],
"img": "001.png",
"symbol": "~てすみません",
"express": "apologize",
"example": "きたないことばをつかっ<u>てすみませんでした</u>",
"translate": "I’m sorry for using bad language",
"level": "N4"
},
"saseru,saserareru": {
"number": "49",
"data_cat": "N4",
"class": ["N4", "causative", "passive"],
"img": "001.png",
"symbol": "~させる",
"express": "make someone do smth",
"example": "この音が私をいらいら<u>させる</u>",
"examples": [
"子供に薬を飲ま<u>せました</u>:I made the child take the medicine",
"*母に勉強を<u>させられる</u>:I am <u>forced to</u> study by my mother",
"くすりを<u>飲ませられました</u>: They made me take the medicine"
],
"translate": "This sound <u>makes</u> me nervous",
"level": "N4"
},
"te.mo-no.ni": {
"number": "50",
"data_cat": "N4",
"meanings": "②",
"class": ["N4", "te", "meanings"],
"img": "001.png",
"symbol": "~ても,~のに",
"express": "even if, despite",
"example": "雨が降っ<u>ても</u>ゴルフにいきます",
"examples": [
"これ着<u>てみて</u>もいいですか:can I try this on?",
"彼女はきれいな<u>のに</u>モテない:<u>Despite</u> being beautiful she's not popular"
],
"translate": "I'll go to play golf <u>even if</u> it rains",
"level": "N4"
},
"nakutemo.ii": {
"number": "51",
"data_cat": "N4",
"class": ["N4", "te", "negative"],
"img": "001.png",
"symbol": "~なくてもいい",
"express": "it's not necessary",
"example": "君は今日学校へ行か<u>なくてもいい</i>",
"translate": "You <u>don't have to go</u> to school today",
"level": "N4"
},
"mitai": {
"number": "52",
"data_cat": "N4",
"class": ["N4", "masu", ""],
"img": "001.png",
"symbol": "~みたい",
"express": "it seems ..",
"example": "この本は難しい<u>みたい</u>",
"translate": "This book <u>seems</u> to be difficult",
"level": "N4"
},
"te.shimau": {
"number": "53",
"data_cat": "N4",
"meanings": "②",
"class": ["N4", "te", "meanings"],
"img": "001.png",
"symbol": "~てしまう",
"express": "unfortunately, end up doing",
"example": "彼はたぶんあのケーキを食べ<u>てしまう</u>",
"examples": [
"駅で財布をなくし<u>てしまいました</u>:I unfortunately lost my wallet at the station"
],
"translate": "He'll probably end up eating that cake",
"level": "N4"
},
"V.to": {
"number": "54",
"data_cat": "N4",
"class": ["N4", "dictionary", "condition"],
"img": "001.png",
"symbol": "V+と",
"express": "if (when) A then B",
"example": "あなたがこのケーキを食べる<u>と</u>私は怒るだろう",
"translate": "<u>If</u> you eat this cake, I will be angry",
"level": "N4"
},
"nagara": {
"number": "55",
"data_cat": "N4",
"class": ["N4", "masu", "time"],
"img": "001.png",
"symbol": "~ながら",
"express": "A while B",
"example": "男の子はケーキを食べ<u>ながら</u>コーヒーを飲んだ",
"translate": "The boy <u>drank coffee</u> while he ate cake",
"level": "N4"
},
"ba.yokatta": {
"number": "56",
"data_cat": "N4",
"class": ["N4", "ba", "regret"],
"img": "001.png",
"symbol": "~ばよかった",
"express": "regret, should have done",
"example": "がくせいのとき、べんきょうすれ<u>ばよかったです</u>",
"examples": [
"もう少し早く家を出でれ<u>ばよかった</u>:I <u>should have</u> left home a little earlier"
],
"translate": "I <u>should have</u> studied when I was a student",
"level": "N4"
},
"te.kurete.arigatou": {
"number": "57",
"data_cat": "N4",
"class": ["N4", "te", "gratitude"],
"img": "001.png",
"symbol": "~てくれてありがとう",
"express": "gratitude, thank you for..",
"example": "「手伝っ<u>てくれてありがとう</u>」",
"translate": "\"<u>Thank you</u> for your help.\"",
"level": "N4"
},
"te.yokatta": {
"number": "58",
"data_cat": "N4",
"class": ["N4", "te", "gratitude"],
"img": "001.png",
"symbol": "~てよかった",
"express": "express gratitude",
"example": "電車に間に合っ<u>てよかった</u>",
"translate": "<u>I'm glad</u> I was on time for the train",
"level": "N4"
},
"hazu.desu-hazu.ga.nai": {
"number": "59",
"data_cat": "N4",
"meanings": "②",
"class": ["N4", "desu", "doubt", "meanings"],
"img": "001.png",
"symbol": "~はずです",
"express": "should(n't) be, convince",
"example": "あのペンはつくえの上にある<u>はず</u>です",
"examples": [
"彼がそんなことを言うなんて信<u>はずがない</u>:I can't believe he says such things",
"彼は来<u>はずです</u>:he sould come"
],
"translate": "That pen <u>should be</u> on the desk",
"level": "N4"
},
"zu.ni-naide": {
"number": "60",
"data_cat": "N4",
"class": ["N4", "te", "negative", "meanings"],
"meanings": "②",
"img": "001.png",
"symbol": "~ないで",
"express": "without doing (smth)",
"example": "このケーキを食<u>べないで</u>",
"examples": [
"私の息子は朝食を食べ<u>ずに</u>学校に行きました:my son went to school without eating breakfast",
""
],
"translate": "Don't eat this cake",
"level": "N4"
},
"ka.dou.ka": {
"number": "61",
"data_cat": "N4",
"class": ["N4", "conjunction"],
"img": "001.png",
"symbol": "~ずに, ~かどうか",
"express": "if yes or no",
"example": "田中さんは、明日来る<u>かどうか</u>、分かりますか",
"examples": [
"彼女はくる<u>かどうか</u>:I don't know <u>if she will come or not</u>"
],
"translate": "Do (you) know whether Tanaka-san is coming tomorrow or not",
"level": "N4"
},
"to.iu": {
"number": "62",
"data_cat": "N4",
"class": ["N4", "sostantive"],
"img": "001.png",
"symbol": "~という~",
"express": "it's called",
"example": "クレヨンしんちゃん<u>という</u>漫画は面白いですよ",
"translate": "the manga <u>called</u> Crayon Shin Chan is interesting",
"level": "N4"
},
"yasui.nikui": {
"number": "63",
"data_cat": "N4",
"class": ["N4", "masu"],
"img": "001.png",
"symbol": "~やすい/~にくい",
"express": "easy/hard to do",
"example": "水を飲み<u>やすい</u>です",
"examples": [
"箸で食べ<u>にくい</u>:it's <u>hard to eat</u> with chopsticks",
"この本は読み</u>やすい</u>:this book is easy to read"
],
"video": [
"https://www.youtube.com/watch?v=xIPCbiHs-io&list=PLP6jQzrtQ718EBgJyqIum7rXtyOL7ksDn&index=2",
"https://www.youtube.com/watch?v=qKbysEzHWXw&list=PLP6jQzrtQ718EBgJyqIum7rXtyOL7ksDn&index=1"
],
"translate": "Drinking water <u>is easy</u>",
"level": "N4"
},
"reru.rareru": {
"number": "64",
"data_cat": "N4",
"class": ["N4", "passive"],
"img": "001.png",
"symbol": "~れる/~られる",
"express": "passive",
"example": "水が子供に<u>飲まれました</u>",
"translate": "the water <u>was drunk</u> by the child",
"level": "N4"
},
"te.aru": {
"number": "65",
"data_cat": "N4",
"class": ["N4", "te"],
"img": "001.png",
"symbol": "~てある",
"express": "smth is finishing",
"example": "宿題はもうやっ<u>てあります</u>",
"examples": [
"この部屋は冷房し<u>てある</u>:This room is air-conditioned",
""
],
"translate": "my homework has already <u>been finished</u>",
"level": "N4"
},
"te.iru.aida.ni": {
"number": "66",
"data_cat": "N4",
"class": ["N4", "te"],
"img": "001.png",
"symbol": "~ているあいだに",
"express": "meanwhile",
"example": "お風呂に入っ<u>ている間に</u>電話がありました",
"translate": "There was a phone call <u>while I was</u> taking a bath",
"level": "N4"
},
"ku.ni.suru": {
"number": "67",
"data_cat": "N4",
"class": ["N4", "adjective","change"],
"img": "001.png",
"symbol": "~く,~にする",
"express": "changing state/condition",
"example": "クラスの何人かがいつも私を馬鹿<u>にする</u>",
"translate": "Some of my classmate always make a fool of me",
"level": "N4"
},
"no.you.na/da": {
"number": "68",
"data_cat": "N4",
"class": ["N4", "compare"],
"meanings": "②",
"img": "001.png",
"symbol": "~のような/だ",
"express": "like, like before",
"example": "あなたは天使<u>のような</u>子だ",
"examples": [
"東京<u>のような都会に:in cities <u>like</u> Tokyo",
"今日は冬<u>のようです</u>ね:it's cold <u>like</u> winter"
],
"translate": "You are an angel of a child",
"level": "N4"
},
"no.you.na": {
"number": "69",
"data_cat": "N4",
"class": ["N4", "plain", "purpose"],
"img": "001.png",
"symbol": "~のような",
"express": "purpose, for something",
"example": "よく聞くこえる<u>ように</u>大声で話してください",
"examples": [
":"
],
"translate": "please speak loudly <u>so we can hear</u> well",
"level": "N4"
},
"you.ni.suru": {
"number": "70",
"data_cat": "N4",
"class": ["N4", "masu", "try", "plain"],
"img": "001.png",
"symbol": "~のようにしている",
"express": "trying to",
"example": "毎日たくさんの野菜を食べ<u>ようとしています</u>",
"examples": [
"これから遅れない<u>ようにする</u>:<u>I'll try</u> not to be late from now on"
],
"translate": "I'm <u>trying to</u> eat a lot of vegetables everyday",
"level": "N4"
},
"you.ni.naru": {
"number": "71",
"data_cat": "N4",
"class": ["N4", "masu", "plain", "change"],
"img": "001.png",
"symbol": "~ようになる",
"express": "changed or will change",
"example": "最近新聞を読める<u>ようになりました</u>",
"translate": "recently I have been able to read newspapers",
"level": "N4"
},
"you.da-mitai": {
"number": "72",
"data_cat": "N4",
"class": ["N4", "plain", "seems", "plain", "meanings"],
"meanings": "②",
"img": "001.png",
"symbol": "~ようです,~みたい",
"express": "it seems",
"example": "昨夜は雨が降った<u>ようです</u>",
"examples": [
"男の子が母親を探している<u>ようです</u>:it seems that the boy is searching for his mother"
],
"translate": "<u>it seems</u> that it rained last night",
"level": "N4"
},
"koto.ni.suru/naru": {
"number": "73",
"data_cat": "N4",
"class": ["N4", "dictionary", "meanings"],
"meanings": "②",
"img": "001.png",
"symbol": "~ことにする/なる",
"express": "decide/been decided",
"example": "彼は勉強する<u>ことにする</u>",
"examples": [
"1日1時間走ることにしました:I decided to run for 1 hour a day",
"大阪に出張<u>ことになりました</u>:<u>It has been decided</u> that I have to go to Osaka for work"
],
"translate": "He's deciding to study",
"level": "N4"
},
"rashii": {
"number": "74",
"data_cat": "N4",
"class": ["N4", "masu", "meanings", "plain"],
"meanings": "②",
"img": "001.png",
"symbol": "~らしい",
"express": "speculation, typical",
"example": "リサは国に帰るらしい",
"examples": [
"彼女は女性<u>らしい</u>ふくきることがある:she wears <u>typical</u> female clothes",
"昨日は秋<u>らしい</u>天気じゃなかった:yesterday it wasn't typical autumn weather",
"任天堂<u>らしい</u>ゲーム: a <u>typical</u> nintendo game"
],
"translate": "<u>I guess</u> Risa will go back to her country",
"level": "N4"
},
"?.ka-?.demo": {
"number": "75",
"data_cat": "N4",
"class": ["N4", "te", "question", "quantifier", "meanings"],
"meanings": "②",
"img": "001.png",
"symbol": "?~か,?~でも",
"express": "I wonder, whenever..",
"example": "<u>どこ</u>へ行って<u>も</u>込んでいます",
"examples": [
"<u>誰が</u>やって<u>も</u>無理です:it's impossible for anyone"
],
"translate": "<u>wherever</u> I go it's crowded",
"level": "N4"
},
"ga.suru": {
"number": "76",
"data_cat": "N4",
"class": ["N4", "senses"],
"img": "001.png",
"symbol": "~がする",
"express": "feeling with senses",
"example": "この部屋はいいにおい<u>がする</u>",
"translate": "this room <u>smells</u> good ",
"level": "N4"
},
"dasu": {
"number": "77",
"data_cat": "N4",
"class": ["N4", "masu", "starting"],
"img": "001.png",
"symbol": "~だす",
"express": "starting <u>suddenly</u>",
"example": "赤ちゃんが<u>泣き出した</u>",
"translate": "the baby <u>suddenly started</u> crying",
"level": "N4",
"note": "only for verbs that can happen suddenly"
},
"tame.ni": {
"number": "78",
"data_cat": "N4",
"class": ["N4", "purpose", "with-name", "with-verb"],
"img": "001.png",
"symbol": "~ていただけませんか",
"express": "EXPRESS",
"example": "旅行に行く<u>ために</u>お金貯めます",
"translate": "I save money <u>for travelling</u>",
"level": "N4",
"note": "Used with names or verbs but if the verb is potential or negative must use ように"
},
"darou": {
"number": "79",
"data_cat": "N4",
"class": ["N4", "possibly"],
"img": "001.png",
"symbol": "~だろう,",
"express": "possibly",
"example": "彼はきっと試験に合格する<u>だろう</u>",
"translate": "<u>I'm sure</u> that he will pass the exam",
"level": "N4",
"note": "more probable than kamoshirenai"
},
"EMPTY.5": {