-
Notifications
You must be signed in to change notification settings - Fork 0
/
vocab.txt
2482 lines (2482 loc) · 77.9 KB
/
vocab.txt
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
[
la puce
Un sous-traitant de Lockheed Martin visé par des pirates chinois ?
{
"Status": "NeverReviewed",
"Item": {
"French": "Palo Alto Networks dépense 800M$ pour le rachat d'Expanse",
"English": "Palo Alto Networks spends $800 million to acquire Expanse"
}
},
{
"Status": "NeverReviewed",
"Item": {
"French": "Le CERN propose des cours gratuits sur l'informatique quantique",
"English": "CERN offers free courses in quantum computing"
}
},
{
"Status": "NeverReviewed",
"Item": {
"French": "Avec Eventarc, vous pouvez répondre à des cas d'utilisation clés tels que l'analyse vidéo, la conversion de fichiers, l'inscription d'un nouvel utilisate",
"English": "With Eventarc you can address key use cases like video analytics, file conversion, new user registration"
}
},
{
"Status": "NeverReviewed",
"Item": {
"French": "Micron livre sa NAND flash TLC à 176 couches",
"English": "Micron delivers 176-layer TLC NAND flash"
}
},
{
"Status" : "Never Reviewed",
"Item" : { "French" : "Méthode Agile: la justice rappelle l'importance du cahier des charges",
"English" : "Agile method: justice recalls the importance of the specifications"
}
{
"Status" : "Never Reviewed",
"Item" : { "French" : "Remédier à l'écran noir de Windows 10 - Le phénomène de « l'écran noir » de Windows 10 est là pour rappeler que les petites choses ont parfois",
"English" : "Replace the black screen of Windows 10 - The phenomenon of the "black screen" of Windows 10 is there to remind you that little things sometimes have"
}
{
"Status" : "Never Reviewed",
"Item" : { "French" : "Que ce soit Thierry Breton ou Emmanuel Macron, ils se rejoignent au moins sur un point : allier transition numérique et transition écologique",
"English" : "Thierry Breton or Emmanuel Macron, they meet at least on one point: combining digital transition and ecological transition"
}
{
"Status": "NeverReviewed",
"Item": {
"French": "Apple corrige 3 failles zero day sur iOS et macOS",
"English": "Apple fixes 3 zero day flaws on iOS and macOS"
}
},
{
"Status": "NeverReviewed",
"Item": {
"French": "Le recrutement IT ne s'est pas écroulé en France selon Linkedin",
"English": "IT recruitment has not collapsed in France according to Linkedin"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-10-02T16:20:47.5601239Z",
"PreviousCorrectDate": "2020-09-26T04:47:56.5663265Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Le confinement a révélé des écarts de maturité numérique très fort entre les entreprises.",
"English": "The quarantine revealed differences very strong in digital maturity between companies"
}
},
{
"Status": [
"PreviouslyIncorrect",
{
"ReviewDate": "2020-10-02T16:20:56.0262559Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "Suivez notre web conférence",
"English": "Follow our web conference"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-10-02T16:21:05.8355279Z",
"PreviousCorrectDate": "2020-09-26T04:47:04.1131283Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Le télétravail dynamise le marché des PC portables",
"English": "Telework energizes the PC laptop market"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-10-02T16:21:12.3612618Z",
"PreviousCorrectDate": "2020-09-26T04:46:39.6263515Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Mais j'avais la flemme de le regarder",
"English": "But I was too lazy to watch it"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-10-02T16:21:29.5577611Z",
"PreviousCorrectDate": "2020-09-26T04:45:14.7949897Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "Si elle reprend les éléments de design de l'iPad Pro, la dernière tablette iPad Air 2020 gagne grandement en vélocité grâce au processeur A14.",
"English": "If it takes the design elements of the iPad Pro, the latest iPad Air 2020 tablet greatly gains in speed thanks to the A14 processor."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-10-02T16:21:35.0199455Z",
"PreviousCorrectDate": "2020-09-26T04:44:33.5215977Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "quels retours d'expérience",
"English": "what feedback"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-10-02T16:21:42.6642617Z",
"PreviousCorrectDate": "2020-09-26T04:44:25.9403671Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "7 choses à savoir sur la dernière tablette d'Apple",
"English": "7 things to know about Apple's latest tablet"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-10-02T16:22:01.6773704Z",
"PreviousCorrectDate": "2020-09-26T04:42:56.1047513Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "Nous avons vu la pleine puissance de l’outil digital",
"English": "We have seen the full power of the digital tool"
}
},
{
"Status": [
"PreviouslyIncorrect",
{
"ReviewDate": "2020-10-02T16:22:12.2022454Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "Google Pixel 5: moins haut de gamme, plus abordable",
"English": "Google Pixel 5: less upscale, more affordable"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:39.0571517Z",
"PreviousCorrectDate": "2020-09-24T05:42:49.2588857Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "Sortie il y a près de 7 ans, la version 11 du navigateur Internet Explorer va tirer sa révérence.",
"English": "Released almost 7 years ago, the version 11 of browser IE will be retired."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:40.5363881Z",
"PreviousCorrectDate": "2020-09-24T05:42:57.4560781Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "Je vais très bien",
"English": "I am doing well"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:44.6505763Z",
"PreviousCorrectDate": "2020-09-22T19:02:59.6570213Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "et après",
"English": "and next"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:48.9663765Z",
"PreviousCorrectDate": "2020-09-13T16:54:22.1217857Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "Avec sa plateforme de gestion des containers, Robin accompagne les opérateurs dans le déploiement,",
"English": "With its platform for container management, Robin supports operators in the deployment"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:50.5977572Z",
"PreviousCorrectDate": "2020-09-18T00:53:00.7784126Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "Google ouvre une certification IT courte et économique",
"English": "Google opens a short and economical certification"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:52.9457110Z",
"PreviousCorrectDate": "2020-09-18T00:52:47.7929127Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "un été 2020",
"English": "summer 2020"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:55.5843774Z",
"PreviousCorrectDate": "2020-09-22T19:10:22.2776597Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "vmware et dell continuent de tailler dans leurs effectifs",
"English": "vmware and dell continue to cut into their workforce"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-30T18:06:57.8991869Z",
"PreviousCorrectDate": "2020-09-22T19:09:55.3324973Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Microsoft France veut accélérer la transformation digitale des PME",
"English": "Microsoft France wants to accelerate digital transformation of SMEs"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2020-09-30T18:07:01.1146938Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "Le Louvre en direct sur Alibaba.",
"English": "THe Louvre live on Alibaba"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:25:31.3639749Z",
"PreviousCorrectDate": "2020-09-08T18:54:15.8822739Z",
"DifficultyRating": [
"DifficultyRating",
72
]
}
],
"Item": {
"French": "Test Adata Falcon NVMe 1 To : encore trop cher en Europe",
"English": "Adata Falcon NVMe 1TB test: again too much expensive in Europe"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:25:56.6889819Z",
"PreviousCorrectDate": "2020-09-08T18:54:54.4836397Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "Si tu es le Fils de Dieu, jettes-toi en bas, dit Satan. Sa Parole dit que les anges de Dieu te sauveront",
"English": "If you are the Son of God, throw yourself down, says Satan. His Word says the angels of God will save you"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:26:30.7880697Z",
"PreviousCorrectDate": "2020-09-17T03:23:56.4332474Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "tu vas bien, mon pote ?",
"English": "are you ok, my friend?"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:27:24.6059288Z",
"PreviousCorrectDate": "2020-09-17T03:22:58.9030621Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "Selon Strategy Analytics, les ventes de PC portables ont augmenté de 27% au second trimestre 2020. Avec le télétravail, c'est le segment grand public qui a porté la demande.",
"English": "According to Strategy Analytics, laptop PC sales increased 27% in the second quarter of 2020. With telecommuting, the consumer segment has (carried) driven demand."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:28:11.0052151Z",
"PreviousCorrectDate": "2020-09-17T03:22:30.3837022Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "Bien qu'il soit lent en écriture selon les normes NVMe, l'Adata Falcon 1 To peut s'avérer un bon compagnon au quotidien.",
"English": "Even though it is slow in write by NVMe standards, the Adata Falcon 1TB can be a good companion daily."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:28:24.0469405Z",
"PreviousCorrectDate": "2020-09-17T03:21:01.9024190Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Le gouvernement veut accélérer la couverture numérique du Gard",
"English": "The government wants to speed up digital coverage of the Gard"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:28:39.1133982Z",
"PreviousCorrectDate": "2020-09-17T03:20:30.4813883Z",
"DifficultyRating": [
"DifficultyRating",
75
]
}
],
"Item": {
"French": "Piégée début juin par le rançongiciel Netwalker,",
"English": "Trapped since June by the ransomware Netwalker."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:29:24.7447797Z",
"PreviousCorrectDate": "2020-09-17T03:19:15.1879378Z",
"DifficultyRating": [
"DifficultyRating",
75
]
}
],
"Item": {
"French": "Le prochaine mise a niveau de Java",
"English": "Next update of java"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:29:41.5174617Z",
"PreviousCorrectDate": "2020-09-17T03:18:57.9495838Z",
"DifficultyRating": [
"DifficultyRating",
84
]
}
],
"Item": {
"French": "Qui ne sera disponible avant Mars 2021",
"English": "which will not be available until March 2021"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:30:20.4245337Z",
"PreviousCorrectDate": "2020-09-20T04:32:09.0749155Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "Les mises à jours Windows 10 jugées inutiles par les administrateurs",
"English": "Windows 10 updates deemed unnecessary by administrators"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:30:58.2603415Z",
"PreviousCorrectDate": "2020-09-20T04:31:20.0282141Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "où j'habite il est 12h23 du matin",
"English": "where i live it is 12:23 am"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:31:56.4801401Z",
"PreviousCorrectDate": "2020-09-20T04:31:11.0926071Z",
"DifficultyRating": [
"DifficultyRating",
75
]
}
],
"Item": {
"French": "Ensuite Satan emmena Jésus dans la grande ville de Jérusalem, au temple où les gens adoraient Dieu",
"English": "Then Satan took Jesus to the great city of Jerusalem, to a temple where people worshipped God"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-27T23:33:30.6892147Z",
"PreviousCorrectDate": "2020-09-20T04:30:26.6058292Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Un article du Canard Enchâiné révèle un appel d'offres lancé en août par le ministère de l'Education Nationale pour s'équiper d'une centaine de solutions Microsoft",
"English": "An article in Le Canard Enchaine reveals a call for offers launch in August for the Ministry of National Education to equip itself with 100 Microsoft solutions"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2020-09-27T23:33:54.2770140Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Portabilité applicative, un défi trop dur à relever pour Kubernetes ?",
"English": "Application portability, too much of a challenge for Kubernetes?"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2020-09-27T23:34:23.8713095Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Une rentrée offensive sur le cloud pour SAP France",
"English": "An offensive return to the cloud for SAP France"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2020-09-27T23:34:42.6318675Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "SAP France a dépassé les 21% de croissance enregistrés au niveau mondial par l'éditeur allemand sur les revenus de ses solutions cloud",
"English": "SAP France exceeded the 21% growth recorded worldwide by the German publisher on revenues from cloud solutions"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2020-09-27T23:35:16.2333148Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Depuis quelques années, Alibaba Cloud monte en puissance à l'international.",
"English": "In recent years, Alibaba Cloud has been gaining momentum internationally"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2020-09-27T23:36:17.1553553Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Un leaker aurait mis en ligne sur un forum 4Chan les codes source de très nombreux anciens systèmes d'exploitation Windows, incluant XP et MS DOS 6.0.",
"English": "A leaker allegedly uploaded to 4Chan the code to many older Windows systems including XP and MS DOS 6.0"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-24T05:39:21.9223246Z",
"PreviousCorrectDate": "2020-09-17T03:29:03.9355193Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Ionis group retenu pour racheter Supinfo",
"English": "Ionis group selected to buy Supinfo"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-24T05:41:28.6034629Z",
"PreviousCorrectDate": "2020-09-08T18:54:41.5067787Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Mon ami a le même livre que moi",
"English": "My friend has same book as me"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-24T05:41:50.5426013Z",
"PreviousCorrectDate": "2020-09-08T18:43:50.6096689Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "n'aie pas peur ! parle donc",
"English": "do not have fear! speak then."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-22T19:01:31.9208983Z",
"PreviousCorrectDate": "2020-09-08T18:43:36.8593857Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "Cette fois-ci, c'est parti.",
"English": "This time, it's gone"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-22T19:02:12.6969710Z",
"PreviousCorrectDate": "2020-09-08T18:42:52.4567161Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "A travers la version beta du dernier OS de l'Apple Watch, plusieurs fonctionnalités dévoilent leur évolution ou leur innovation.",
"English": "Through the beta version of the latest OS of Apple Watch, several features revealed their evolution or their innovation"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-22T19:02:18.4285790Z",
"PreviousCorrectDate": "2020-09-08T18:42:25.5245983Z",
"DifficultyRating": [
"DifficultyRating",
82
]
}
],
"Item": {
"French": "j'ai vu",
"English": "I saw"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-19T04:48:01.2871718Z",
"PreviousCorrectDate": "2020-09-08T18:51:50.8638795Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "Microsoft vante le ROI de Search et Edge en entreprise",
"English": "Microsoft boasted the return of Search and Edge in business"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:54:32.3536734Z",
"PreviousCorrectDate": "2020-08-30T18:11:24.4375150Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "En France, l'emploi IT résiste aux effets de la crise",
"English": "In France, IT work resist effects of the crisis"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:55:05.6979714Z",
"PreviousCorrectDate": "2020-08-30T18:08:12.8158046Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "Qu'allait donc faire le diable maintenant?",
"English": "What was the Devil going to do now?"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:56:03.7659174Z",
"PreviousCorrectDate": "2020-08-30T18:07:18.3293835Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "leur non reconduction amène de facto à exclure le constructeur chinois des projets 5G en France.",
"English": "Their non renewal leads to de facto exclusion of Chinese manufacturer of 5G projects in France."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:56:25.4232464Z",
"PreviousCorrectDate": "2020-08-30T18:07:05.9463203Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "Mitchell Baker, co-fondatrice et présidente de Mozilla, et son équipe de direction ont envisagé l'option des licenciements depuis le printemps.",
"English": "Mitchell Baker, co-founder and president of Mozilla, and her management team have been considering the option of layoffs since the spring."
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:56:32.7993932Z",
"PreviousCorrectDate": "2020-08-30T18:06:24.8970897Z",
"DifficultyRating": [
"DifficultyRating",
64
]
}
],
"Item": {
"French": "Mozilla va licencier 250 employés",
"English": "Mozilla to layoff 250 employees"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:56:53.9937825Z",
"PreviousCorrectDate": "2020-08-30T18:06:16.6952014Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "Fondée en 2013 à San José, la start-up Robin affiche pour objectif d’apporter les bénéfices du cloud natif aux applications data et réseau.",
"English": "Founded in 2013 in San Jose, the startup Robin aims to bring the benefits of cloud native to data and network applications"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:57:04.4919622Z",
"PreviousCorrectDate": "2020-08-30T18:05:55.1188678Z",
"DifficultyRating": [
"DifficultyRating",
64
]
}
],
"Item": {
"French": "Décès de la pionnière Frances Allen",
"English": "Pioneer Frances Allen passes away"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-13T16:57:12.2674205Z",
"PreviousCorrectDate": "2020-08-30T18:05:49.4085355Z",
"DifficultyRating": [
"DifficultyRating",
73
]
}
],
"Item": {
"French": "WatchOS 7 : les prochaines fonctionnalités de l'Apple Watch se dévoilent",
"English": "Watch OS 7 : the next features of the Apple Watch are revealed"
}
},
{
"Status": [
"PreviouslyCorrect",
{
"ReviewDate": "2020-09-08T18:55:06.1140095Z",
"PreviousCorrectDate": "2020-08-22T16:59:50.5110729Z",
"DifficultyRating": [
"DifficultyRating",
64
]
}
],
"Item": {
"French": "Des faux supports techniques à détecter pour mieux les éviter",
"English": "Fake technical support detected for better to avoid."
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2021-01-19T18:50:40.3550819Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "",
"English": ""
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2021-01-19T18:53:00.6876911Z",
"DifficultyRating": [
"DifficultyRating",
100
]
}
],
"Item": {
"French": "5 façons pour Apple d'ouvrir ses produits avec iOS 14 et macOS Big Sur",
"English": "5 ways Apple is opening up its products with iOS 14 and macOS Big Sur"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2021-01-19T18:53:24.1050631Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "mais reste à savoir si pour ce prix serré Netflix sera ou pas inclus",
"English": "but it remains to be seen whether Netflix will be included for this tight price"
}
},
{
"Status": [
"PreviouslyFirstCorrect",
{
"ReviewDate": "2021-01-16T00:55:05.8575124Z",
"DifficultyRating": [
"DifficultyRating",
91
]
}
],
"Item": {
"French": "Satan pouvait bien essayé de tenter le Fils de Dieu, Jésus",
"English": "Satan could possibly try to tempt the Son of God, Jesus"
}
},