-
Notifications
You must be signed in to change notification settings - Fork 0
/
sets.json
executable file
·1258 lines (1258 loc) · 38.9 KB
/
sets.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
{
"Sets": [
{
"Name": "test set 2",
"Terms": [
{
"Key": "hallo",
"Value": "hello"
}
]
},
{
"Name": "test set 3",
"Terms": [
{
"Key": "hallo",
"Value": "hello"
}
]
},
{
"Name": "Verben mit praepositionen",
"Terms": [
{
"Key": "abbringen von ",
"Value": "to argue out of"
},
{
"Key": "abhängen von ",
"Value": "to depend on"
},
{
"Key": "achten auf ",
"Value": "to watch smth."
},
{
"Key": "adressieren an ",
"Value": "to address smth."
},
{
"Key": "anfangen mit ",
"Value": "to begin with"
},
{
"Key": "anregen zu ",
"Value": "to encourage"
},
{
"Key": "anrufen bei ",
"Value": "to call"
},
{
"Key": "ansehen als ",
"Value": "to regard as"
},
{
"Key": "antworten auf ",
"Value": "to answer"
},
{
"Key": "arbeiten an,bei ",
"Value": "to work on"
},
{
"Key": "auffordern zu ",
"Value": "to ask for,invite"
},
{
"Key": "aufhören mit ",
"Value": "to give up on"
},
{
"Key": "aufpassen auf ",
"Value": "to pay attention on"
},
{
"Key": "ausgehen von ",
"Value": "to come out of"
},
{
"Key": "basieren auf ",
"Value": "to be based upon"
},
{
"Key": "befördern zu ",
"Value": "to carry to"
},
{
"Key": "beginnen mit ",
"Value": "to begin with"
},
{
"Key": "beglückswünschen zu ",
"Value": "to congratulate on smth."
},
{
"Key": "beharren auf ",
"Value": "to insist upon"
},
{
"Key": "beitragen zu ",
"Value": "to contribute to"
},
{
"Key": "berichten von ",
"Value": "to refer to smth."
},
{
"Key": "berichten über ",
"Value": "to tell about"
},
{
"Key": "beschreiben als ",
"Value": "to describe as"
},
{
"Key": "bestehen auf ",
"Value": "to insist on"
},
{
"Key": "bestehen aus ",
"Value": "to consist of"
},
{
"Key": "bezeichnen als ",
"Value": "to call smth. as"
},
{
"Key": "bitten um ",
"Value": "to ask for"
},
{
"Key": "bringen zu ",
"Value": "to bring to"
},
{
"Key": "danken für ",
"Value": "to thank for"
},
{
"Key": "debattieren mit ",
"Value": "to debate with"
},
{
"Key": "debattieren über ",
"Value": "to debate over"
},
{
"Key": "demonstrieren für ",
"Value": "to demonstrate for"
},
{
"Key": "demonstrieren gegen ",
"Value": "to demonstrate against"
},
{
"Key": "denken an ",
"Value": "to think about"
},
{
"Key": "dienen als ",
"Value": "to serve as smth."
},
{
"Key": "diskutieren mit ",
"Value": "to discuss with"
},
{
"Key": "diskutieren über ",
"Value": "to discuss about"
},
{
"Key": "duften nach ",
"Value": "to be sweet with"
},
{
"Key": "einladen zu ",
"Value": "to invite,ask"
},
{
"Key": "enden mit ",
"Value": "to end with"
},
{
"Key": "entstehen aus ",
"Value": "to emerge from smth."
},
{
"Key": "erkranken an ",
"Value": "to get ill with"
},
{
"Key": "ernennen zu ",
"Value": "to nominate as"
},
{
"Key": "erschrecken vor ",
"Value": "to fear (danger)"
},
{
"Key": "erschrecken über ",
"Value": "to fear (situation)"
},
{
"Key": "erwarten von ",
"Value": "to want smth. from"
},
{
"Key": "erziehen zu ",
"Value": "to raise"
},
{
"Key": "erzählen von ",
"Value": "to tell about smth."
},
{
"Key": "es geht um ",
"Value": "it's about ..."
},
{
"Key": "es handelt sich um ",
"Value": "it's a question of ..."
},
{
"Key": "es kommt ... an auf ",
"Value": "it is ..."
},
{
"Key": "fliehen vor ",
"Value": "to escape from smth."
},
{
"Key": "flüchten vor ",
"Value": "to escape from smth."
},
{
"Key": "fordern von ",
"Value": "to demand from"
},
{
"Key": "fragen nach ",
"Value": "to ask for smth."
},
{
"Key": "fußen auf ",
"Value": "to be based off"
},
{
"Key": "führen zu ",
"Value": "to bring as smth, to lead to"
},
{
"Key": "gehören zu ",
"Value": "to belong to"
},
{
"Key": "gelten als ",
"Value": "to be regarded as"
},
{
"Key": "geraten in ",
"Value": "to get into smth."
},
{
"Key": "glauben an ",
"Value": "to believe in"
},
{
"Key": "gliedern in ",
"Value": "to be composed of"
},
{
"Key": "halten für ",
"Value": "to consider as"
},
{
"Key": "halten von ",
"Value": "to think smth. of smth."
},
{
"Key": "handeln mit ",
"Value": "to act,deal with (goods)"
},
{
"Key": "handeln von ",
"Value": "to act,deal with (substance,matter)"
},
{
"Key": "hoffen auf ",
"Value": "to hope for"
},
{
"Key": "hören auf ",
"Value": "to listen to"
},
{
"Key": "klagen über ",
"Value": "to complain over"
},
{
"Key": "kämpfen für ",
"Value": "to fight for (ideas)"
},
{
"Key": "kämpfen gegen ",
"Value": "to fight against"
},
{
"Key": "kämpfen mit ",
"Value": "to fight with (partner)"
},
{
"Key": "kämpfen um ",
"Value": "to fight with (object)"
},
{
"Key": "lachen über ",
"Value": "to laugh over"
},
{
"Key": "leben von ",
"Value": "to live on"
},
{
"Key": "leiden an ",
"Value": "to suffer (illness)"
},
{
"Key": "leiden unter ",
"Value": "to be affected by (situation)"
},
{
"Key": "liegen an ",
"Value": "to be located"
},
{
"Key": "nachdenken über ",
"Value": "to reflect,think on"
},
{
"Key": "neigen zu ",
"Value": "to tend to smth."
},
{
"Key": "passen zu ",
"Value": "to match smth."
},
{
"Key": "protestieren gegen ",
"Value": "to protest against"
},
{
"Key": "raten zu ",
"Value": "to advise to do smth."
},
{
"Key": "reagieren auf ",
"Value": "to respond,react to"
},
{
"Key": "reden mit ",
"Value": "to speak with"
},
{
"Key": "reden über ",
"Value": "to speak about"
},
{
"Key": "riechen nach ",
"Value": "to smell of smth."
},
{
"Key": "rufen nach ",
"Value": "to cry for"
},
{
"Key": "schicken an ",
"Value": "to send"
},
{
"Key": "schießen auf ",
"Value": "to fire at"
},
{
"Key": "schimpfen auf ",
"Value": "to grumble (someone)"
},
{
"Key": "schimpfen mit ",
"Value": "to grumble with"
},
{
"Key": "schimpfen über ",
"Value": "to grumble (theme)"
},
{
"Key": "schmecken nach ",
"Value": "to taste of smth."
},
{
"Key": "senden an ",
"Value": "to send"
},
{
"Key": "sich anpassen an ",
"Value": "to adapt to"
},
{
"Key": "sich auseinandersetzen mit ",
"Value": "to argue with someone"
},
{
"Key": "sich bedanken bei ",
"Value": "to thank (person)"
},
{
"Key": "sich bedanken für ",
"Value": "to thank (object)"
},
{
"Key": "sich beeilen mit ",
"Value": "to hurry up with smth."
},
{
"Key": "sich befreien von ",
"Value": "to free from smth."
},
{
"Key": "sich beklagen bei ",
"Value": "to moan about (person)"
},
{
"Key": "sich beklagen über ",
"Value": "to moan about (thing)"
},
{
"Key": "sich bewerben um,auf ",
"Value": "to apply for (job)"
},
{
"Key": "sich beziehen auf ",
"Value": "to refer to smth."
},
{
"Key": "sich eignen für ",
"Value": "to be suitable for"
},
{
"Key": "sich eignen zu ",
"Value": "to qualify for"
},
{
"Key": "sich einigen auf ",
"Value": "to agree on smth."
},
{
"Key": "sich einsetzen für ",
"Value": "to plead for smth."
},
{
"Key": "sich einstellen auf ",
"Value": "to be prepared for"
},
{
"Key": "sich ekeln vor ",
"Value": "to sicken at"
},
{
"Key": "sich engagieren für ",
"Value": "to engage with"
},
{
"Key": "sich entscheiden für ",
"Value": "to decide for"
},
{
"Key": "sich entscheiden gegen ",
"Value": "to decide against"
},
{
"Key": "sich entschließen zu ",
"Value": "to determine to do smth."
},
{
"Key": "sich entschuldigungen bei ",
"Value": "to apologise to someone"
},
{
"Key": "sich entschuldigungen für ",
"Value": "to apologise for"
},
{
"Key": "sich entwickeln zu ",
"Value": "to develop into"
},
{
"Key": "sich ergeben aus ",
"Value": "to result from smth."
},
{
"Key": "sich erholen von ",
"Value": "to recover from smth."
},
{
"Key": "sich erinnern an ",
"Value": "to remember smth."
},
{
"Key": "sich erkundigen bei ",
"Value": "to inquire (person)"
},
{
"Key": "sich erkundigen nach ",
"Value": "to inquire (topic)"
},
{
"Key": "sich ernähren von ",
"Value": "to eat,diet"
},
{
"Key": "sich freuen auf ",
"Value": "to look forward to (future)"
},
{
"Key": "sich freuen über ",
"Value": "to look forward to (event)"
},
{
"Key": "sich fürchten vor ",
"Value": "to fear"
},
{
"Key": "sich gewöhnen an ",
"Value": "to be used to"
},
{
"Key": "sich informieren bei ",
"Value": "to inform over (person)"
},
{
"Key": "sich informieren über ",
"Value": "to inform over (theme)"
},
{
"Key": "sich interessieren für ",
"Value": "to be interested in"
},
{
"Key": "sich irren in ",
"Value": "to fool"
},
{
"Key": "sich konzentrieren auf ",
"Value": "to concentrate on"
},
{
"Key": "sich kümmern um ",
"Value": "to take care of, look after"
},
{
"Key": "sich orientieren an ",
"Value": "to be based on,similar to"
},
{
"Key": "sich richten nach ",
"Value": "to comply with smth."
},
{
"Key": "sich rächen an ",
"Value": "to take revenge on (person)"
},
{
"Key": "sich rächen für ",
"Value": "to take revenge on (reason)"
},
{
"Key": "sich schützen vor ",
"Value": "to protect from smth."
},
{
"Key": "sich sehnen nach ",
"Value": "to long for"
},
{
"Key": "sich sorgen um ",
"Value": "to worry over"
},
{
"Key": "sich täuschen in ",
"Value": "to be mistaken over smth."
},
{
"Key": "sich umstellen auf ",
"Value": "to change to smth."
},
{
"Key": "sich unterhalten mit ",
"Value": "to entertain with (person)"
},
{
"Key": "sich unterhalten über ",
"Value": "to entertain over (theme)"
},
{
"Key": "sich unterscheiden in ",
"Value": "to differ in"
},
{
"Key": "sich verlassen auf ",
"Value": "to rely on"
},
{
"Key": "sich verlieben in ",
"Value": "to fall in love with"
},
{
"Key": "sich versetzen in ",
"Value": "to move in"
},
{
"Key": "sich verteidigen gegen ",
"Value": "to defend someone against smth."
},
{
"Key": "sich vertragen mit ",
"Value": "to get along with someone"
},
{
"Key": "sich verwandeln in ",
"Value": "to transform into"
},
{
"Key": "sich vorbereiten auf ",
"Value": "to prepare for"
},
{
"Key": "sich wehren gegen ",
"Value": "to defend against"
},
{
"Key": "sich wundern über ",
"Value": "to wonder at smth."
},
{
"Key": "sich zusammensetzen aus ",
"Value": "to be made up of smth."
},
{
"Key": "sich ängstigen um ",
"Value": "to be scared over (object)"
},
{
"Key": "sich ängstigen vor ",
"Value": "to be scared over (danger)"
},
{
"Key": "sich ärgern über ",
"Value": "to get angry over"
},
{
"Key": "sorgen für ",
"Value": "to long for"
},
{
"Key": "spielen mit ",
"Value": "to play with (person)"
},
{
"Key": "spielen um ",
"Value": "to play with (object)"
},
{
"Key": "spotten über ",
"Value": "to scoff at"
},
{
"Key": "sprechen mit ",
"Value": "to speak with (person)"
},
{
"Key": "sprechen über,von ",
"Value": "to speak about (theme)"
},
{
"Key": "stammen aus ",
"Value": "to date back to"
},
{
"Key": "staunen über ",
"Value": "to marvel at"
},
{
"Key": "sterben an ",
"Value": "to die of"
},
{
"Key": "stimmen für ",
"Value": "to vote for"
},
{
"Key": "stinken nach ",
"Value": "to stink of"
},
{
"Key": "streiten mit ",
"Value": "to argue with (person)"
},
{
"Key": "streiten um ",
"Value": "to argue over (object)"
},
{
"Key": "streiten über ",
"Value": "to argue over (theme)"
},
{
"Key": "suchen nach ",
"Value": "to look for smth."
},
{
"Key": "teilnehmen an ",
"Value": "to take part in smth."
},
{
"Key": "telefonieren mit ",
"Value": "talk over the phone"
},
{
"Key": "träumen von ",
"Value": "to dream about smth."
},
{
"Key": "verheimlichen vor ",
"Value": "to hide smth. from someone"
},
{
"Key": "verlangen nach ",
"Value": "to want smth."
},
{
"Key": "verleiten zu ",
"Value": "to lead someone to"
},
{
"Key": "verstoßen gegen ",
"Value": "to be in breach of smth."
},
{
"Key": "vertrauen in,auf ",
"Value": "to trust,rely on"
},
{
"Key": "verzichten auf ",
"Value": "to abstain from smth."
},
{
"Key": "warnen vor ",
"Value": "to warn over smth."
},
{
"Key": "warten auf ",
"Value": "to wait for"
},
{
"Key": "weinen über ",
"Value": "to cry over"
},
{
"Key": "werben für ",
"Value": "to advertise smth."
},
{
"Key": "werden zu ",
"Value": "to turn into smth."
},
{
"Key": "wetten mit ",
"Value": "to bet with (person)"
},
{
"Key": "wetten um ",
"Value": "to bet over (object)"
},
{
"Key": "wirken auf ",
"Value": "to affect"
},
{
"Key": "wissen von,über ",
"Value": "to know about smth."
},
{
"Key": "wählen zu ",
"Value": "to elect smth."
},
{
"Key": "zielen auf ",
"Value": "to aim for"
},
{
"Key": "zweifeln an ",
"Value": "to doubt"
},
{
"Key": "zwingen zu ",
"Value": "to force into smth."
},
{
"Key": "zählen zu ",
"Value": "to reckon smth."
},
{
"Key": "zögern mit ",
"Value": "to hesitate"
},
{
"Key": "ändern an ",
"Value": "to change to"
},
{
"Key": "überreden zu ",
"Value": "to talk smth. into someone"
},
{
"Key": "übersetzen aus ",
"Value": "to translate from"
},
{
"Key": "übersetzen in ",
"Value": "to translate into"
},
{
"Key": "überzeugen von ",
"Value": "to convince smth."
}
]
},
{
"Name": "Set 2",
"Terms": [
{
"Key": "ausschliessen ",
"Value": " separate, outcast"
},
{
"Key": "bisher ",
"Value": " for now"
},
{
"Key": "darauf achten ",
"Value": " be careful"
},
{
"Key": "das Gewicht ",
"Value": " weight"
},
{
"Key": "das Lob ",
"Value": " praise"
},
{
"Key": "der Becher ",
"Value": " cup"
},
{
"Key": "der Bettler ",
"Value": " beggar"
},
{
"Key": "der Draht ",
"Value": " wire"
},
{
"Key": "der Eigentümer ",
"Value": " owner"
},
{
"Key": "der Lotsen ",
"Value": " pilot"
},
{
"Key": "der Rand ",
"Value": " edge"
},
{
"Key": "der Schaden ",
"Value": " danger"
},
{
"Key": "die Einnahme ",
"Value": " revenue"
},
{
"Key": "die Ermittlung ",
"Value": " ascertainment"
},
{
"Key": "die Gepflogenheit ",
"Value": " ancient traditions"
},
{
"Key": "die Ladung ",
"Value": " freight"
},
{
"Key": "die Ursache ",
"Value": " reason"
},
{
"Key": "die Vermutung ",
"Value": " guess"
},
{
"Key": "entwickeln ",
"Value": " to develop"
},
{
"Key": "erheblich ",
"Value": " serious"
},
{
"Key": "etw. acc entdecken ",
"Value": " to discover"
},
{
"Key": "kündigen ",
"Value": " to cancel,fire"
},
{
"Key": "sich +acc els etw +nom erwiesen ",
"Value": " to prove to be something"
},
{
"Key": "sich auf etw. verzichten ",
"Value": " decline somethign"
},
{
"Key": "stur ",
"Value": " stubborn"
},
{
"Key": "verbreiteten ",
"Value": " widespread"
},
{
"Key": "wohlauf ",
"Value": " well"
}
]
},
{
"Name": "01",
"Terms": [
{
"Key": "an etw. herantreten",
"Value": " to approach smth."
},
{
"Key": "andauern ",
"Value": "to continue"
},
{
"Key": "ausbreiten ",
"Value": " to spread"
},
{
"Key": "auseinander ",
"Value": " apart"
},
{
"Key": "blödsinning ",
"Value": "idiotic"
},
{
"Key": "bogenförmig ",
"Value": "arched"
},
{
"Key": "das Blech ",
"Value": "Steel sheet"
},
{
"Key": "das Gold ",
"Value": " gold"
},
{
"Key": "das Jucken ",
"Value": "itch"
},
{
"Key": "das Pult",
"Value": " desk"
},
{
"Key": "das Ungeziefer ",
"Value": " bug"
},
{
"Key": "der ",
"Value": "Schmerz pain"