forked from microbit-foundation/python-editor-v3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui.nl.json
1173 lines (1173 loc) · 46.1 KB
/
ui.nl.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
{
"about": {
"defaultMessage": "Over",
"description": "About action"
},
"about-comic": {
"defaultMessage": "Drie panel comics getiteld \"MicroPython Rocks\" door Mike Rowbit. Een cartoon slang introduceert Damien en zegt: \"Maak kennis met Damien... Hij creëerde MicroPython.” Twee slangen bespreken MicroPython. De gele slang zegt: \"MicroPython is ontworpen om te werken op zeer kleine computers.\" “Zoals jouw BBC micro:bit” antwoordt de paarse slang. De gele slang gaat verder: \"Maar Python kan overal draaien.\" De paarse slang is het ermee eens en zegt: \"Zoals op dit rack van servers die enorme websites runnen\". De achtergrond achter de slangen toont een server rack.",
"description": "Alt text for comic in the about dialog"
},
"about-microbit": {
"defaultMessage": "Met liefde gemaakt door de <link>Micro:bit Educational Foundation en bijdragers</link>",
"description": "Text in about dialog"
},
"about-micropython": {
"defaultMessage": "De editor is afhankelijk van <link>MicroPython</link> die wordt gemaakt door Damien George en een gemeenschap van ontwikkelaars over de hele wereld.",
"description": "Text in about dialog"
},
"about-read-less-micropython": {
"defaultMessage": "Lees minder over MicroPython",
"description": "Aria label to collapse an expanded section about MicroPython"
},
"about-read-more-micropython": {
"defaultMessage": "Lees meer over MicroPython",
"description": "Aria label to expand a collapsed section about MicroPython"
},
"about-tutorials": {
"defaultMessage": "<link>About tutorials</link>",
"description": "Link to info about tutorials (currently goes to google) at the end of the tutorials section"
},
"added-change": {
"defaultMessage": "Toegevoegd bestand {changeName}",
"description": "Change made to file"
},
"api-description": {
"defaultMessage": "Voor gebruik en voorbeelden, zie <link>Referentie</link>",
"description": "Extended description at the top of the API tab"
},
"api-tab": {
"defaultMessage": "API",
"description": "API tab button text"
},
"apidocs-baseclass": {
"defaultMessage": "{baseClassCount, plural, one {base class} other {base classes: }}",
"description": "Prefix for a single base class or a list of base classes. Uses ICU syntax for pluralisation: https://formatjs.io/docs/core-concepts/icu-syntax/#plural-format."
},
"apidocs-classes": {
"defaultMessage": "Klassen",
"description": "Heading in API documentation for the classes in a Python module"
},
"apidocs-fields": {
"defaultMessage": "Velden",
"description": "Heading in API documentation for the fields in a Python module"
},
"apidocs-functions": {
"defaultMessage": "Functies",
"description": "Heading in API documentation for the functions in a Python module"
},
"apidocs-methods": {
"defaultMessage": "Methoden",
"description": "Heading in API documentation for the methods in a Python class"
},
"back-action": {
"defaultMessage": "Terug",
"description": "Back button text"
},
"back-to-main": {
"defaultMessage": "terug naar de hoofdcode",
"description": "Text button, takes back to main code"
},
"cancel-action": {
"defaultMessage": "Annuleren",
"description": "Cancel button text"
},
"change-files": {
"defaultMessage": "Bestanden wijzigen?",
"description": "Header for dialog of confirmation of files changed"
},
"choose-main-add-file": {
"defaultMessage": "Voeg bestand {name} toe",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-add-module": {
"defaultMessage": "Module {name} toevoegen",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-replace-file": {
"defaultMessage": "Vervang bestand {name}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-replace-module": {
"defaultMessage": "Vervang module {name}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-add-file": {
"defaultMessage": "Bestand {target} van {source} toevoegen",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-add-main-code": {
"defaultMessage": "Voeg hoofdcode toe van {source}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-replace-file": {
"defaultMessage": "Vervang bestand {target} door {source}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-replace-main-code": {
"defaultMessage": "Vervang hoofdcode door {source}",
"description": "Shown in load dialog to confirm actions"
},
"clear": {
"defaultMessage": "Verwijderen",
"description": "Aria label for the search input"
},
"close-action": {
"defaultMessage": "Afsluiten",
"description": "Close button text"
},
"code-editor": {
"defaultMessage": "Code editor",
"description": "Aria label for the code editor"
},
"code-example": {
"defaultMessage": "Code voorbeeld:",
"description": "Visually hidden text to announce code examples in the toolkit documentation"
},
"confirm-action": {
"defaultMessage": "Bevestig",
"description": "Confirm action label"
},
"confirm-delete": {
"defaultMessage": "Verwijderen bevestigen",
"description": "Confirmation header of deletion of a file"
},
"confirm-replace-body": {
"defaultMessage": "Alle bestanden vervangen door bestanden in de hex?",
"description": "Confirmation message body for replacing project dialog"
},
"confirm-replace-reset": {
"defaultMessage": "Alle bestanden vervangen door de standaard startcode?",
"description": "Confirmation message for the reset action"
},
"confirm-replace-title": {
"defaultMessage": "Vervanging bevestigen",
"description": "Confirmation message title for replacing project dialog"
},
"confirm-replace-with-idea": {
"defaultMessage": "Alle bestanden vervangen door {ideaName}?",
"description": "Confirmation message body for replacing project dialog with an idea"
},
"confirm-save-action": {
"defaultMessage": "Bevestigen en opslaan",
"description": "Confirm and save action label"
},
"confirm-save-hint": {
"defaultMessage": "Annuleer dan Opslaan om een kopie van je project te bewaren.",
"description": "Hint shown when the user has unsaved changes that they might lose if they continue with an action"
},
"connect-action": {
"defaultMessage": "Verbinden ",
"description": "Connect button text"
},
"connect-cable-title": {
"defaultMessage": "Verbinden met kabel",
"description": "Title for the connect cable dialog"
},
"connect-help-alt": {
"defaultMessage": "WebUSB verbinding dialoogvenster met BBC micro:bit item gelabeld 1 en Connect knop gelabeld 2",
"description": "Alt text for image in connect help dialog"
},
"connect-help-message": {
"defaultMessage": "In volgende pop-up:",
"description": "Text in the connect help dialog"
},
"connect-help-one": {
"defaultMessage": "Kies je micro:bit",
"description": "Legend text for the connect help dialog image"
},
"connect-help-title": {
"defaultMessage": "Selecteer een micro:bit",
"description": "Title for the connect help dialog"
},
"connect-help-two": {
"defaultMessage": "Selecteer ‘Connect’",
"description": "Legend text for the connect help dialog image"
},
"connect-hover": {
"defaultMessage": "Verbind met je micro:bit via WebUSB",
"description": "Connect button hover text"
},
"connect-microbit": {
"defaultMessage": "Verbind met je micro:bit om de seriële uitvoer hier te zien",
"description": "Text in serial area"
},
"connect-troubleshoot": {
"defaultMessage": "Problemen met het verbinden met je micro:bit",
"description": "Text in no the micro:bit found and firmware update dialogs"
},
"content-load-error": {
"defaultMessage": "Er is iets fout gegaan. Download je hexadecimale bestand voor een veilige bewaring, ververs daarna de pagina om te herladen.",
"description": "Text displayed when content fails to load"
},
"copied": {
"defaultMessage": "Gekopieerd",
"description": "Text shown after copy to clipboard"
},
"copy-action": {
"defaultMessage": "Kopiëer",
"description": "Copy to clipboard action text"
},
"copy-code-action": {
"defaultMessage": "Kopieer code",
"description": "Copy code to clipboard action text"
},
"create-action": {
"defaultMessage": "Maak",
"description": "Create action label (e.g. in create file dialog)"
},
"create-file-action": {
"defaultMessage": "Bestand aanmaken",
"description": "Button text for action that creates a new blank Python file in the current project"
},
"create-python": {
"defaultMessage": "Maak een nieuw Python bestand aan in dit project",
"description": "Hover and dialog title when creating a new Python file"
},
"created-file": {
"defaultMessage": "Aangemaakt {filename}",
"description": "Action feedback for creating a file"
},
"delete-action": {
"defaultMessage": "Verwijderen",
"description": "Button text for delete action"
},
"delete-file-action": {
"defaultMessage": "Wissen {name}",
"description": "Menu option to delete file"
},
"deleted-file": {
"defaultMessage": "Verwijderd {filename}",
"description": "Confirmation message that file got deleted"
},
"disconnect-action": {
"defaultMessage": "Loskoppelen",
"description": "Disconnect button text"
},
"disconnect-hover": {
"defaultMessage": "Ontkoppel de micro:bit",
"description": "Disconnect button hover text"
},
"dont-show-again": {
"defaultMessage": "Deze melding niet opnieuw weergeven",
"description": "Text to never show a dialog again"
},
"drag-hover": {
"defaultMessage": "Slepen en neerzetten",
"description": "Draggable code hover text"
},
"edit-file-action": {
"defaultMessage": "{name} bewerken",
"description": "Menu option to edit file"
},
"edit-name-project-hover": {
"defaultMessage": "Wijzig de naam van je project",
"description": "Text for user to edit the name of the project"
},
"edit-project-name-action": {
"defaultMessage": "Project naam bewerken",
"description": "Text for user to edit the name of the project"
},
"failed-to-build-hex": {
"defaultMessage": "Het maken van het hex bestand is mislukt",
"description": "Error title when we cannot build the hex file, for example because no storage space. Additional detail is shown separately."
},
"feedback": {
"defaultMessage": "Feedback",
"description": "Feedback action"
},
"file-actions": {
"defaultMessage": "{name} bestand acties",
"description": "Header of file actions for file"
},
"file-already-exists": {
"defaultMessage": "Dit bestand bestaat al",
"description": "File already exists notification text"
},
"file-name-invalid-character": {
"defaultMessage": "De naam bevat een ongeldig teken: {invalid}",
"description": "Warning text for new Python file name with an invalid character"
},
"file-name-length": {
"defaultMessage": "De naam is te lang",
"description": "Warning text for overly long file names (file system limitation)"
},
"file-name-lowercase-only": {
"defaultMessage": "De naam moet in kleine letters zijn",
"description": "Warning text for new Python file with uppercase"
},
"file-name-not-empty": {
"defaultMessage": "De naam kan niet leeg zijn",
"description": "Warning text for new Python file with empty name"
},
"file-name-start-number": {
"defaultMessage": "De naam kan niet beginnen met een getal",
"description": "Warning text for new Python file names starting with a number"
},
"file-name-whitespace": {
"defaultMessage": "De naam mag geen spaties bevatten",
"description": "Warning text for new Python file name with whitespace"
},
"firmware-update-link": {
"defaultMessage": "Je moet <link>firmware updaten</link> voordat je verbinding kan maken met deze micro:bit.",
"description": "Text in the firmware update dialog"
},
"firmware-update-message": {
"defaultMessage": "Het verbinden met de micro:bit is mislukt omdat de firmware op je micro:bit te oud is.",
"description": "Text in the firmware update dialog"
},
"firmware-update-title": {
"defaultMessage": "Firmware update vereist",
"description": "Title for the firmware update dialog"
},
"flash-action": {
"defaultMessage": "Flash",
"description": "Text for flash button"
},
"flash-hover": {
"defaultMessage": "Schrijf het project rechtstreeks naar je mico:bit",
"description": "Hover text over flash button"
},
"flashing-code": {
"defaultMessage": "Code verzenden (flashen)",
"description": "Progress dialog text for partial flashes (quick)"
},
"flashing-full-flash-detail": {
"defaultMessage": "Je code wordt verzonden (flashen) naar je micro:bit. Dit kan een tijdje duren, maar daarna zal het sneller gaan.",
"description": "Message shown after the title in the progress dialog for a full flash"
},
"flashing-micropython": {
"defaultMessage": "MicroPython flashen",
"description": "Progress dialog text for full flashes (slower)"
},
"font-size": {
"defaultMessage": "Lettertype grootte",
"description": "Font size option text"
},
"guide-link": {
"defaultMessage": "Voor meer ondersteuning, zie de <link>Python Editor gids</link>",
"description": "Text with an external link to support/help content"
},
"help": {
"defaultMessage": "Help",
"description": "Help menu label"
},
"help-support": {
"defaultMessage": "Hulp & Ondersteuning",
"description": "Menu item for link to support site"
},
"help-translate": {
"defaultMessage": "Hulp met vertalen",
"description": "Help translate menu option text"
},
"highlight-code-structure": {
"defaultMessage": "Code structuur markeren",
"description": "Code structure setting label"
},
"highlight-code-structure-full": {
"defaultMessage": "Vol",
"description": "Highlight code structure option"
},
"highlight-code-structure-none": {
"defaultMessage": "Geen",
"description": "Highlight code structure option"
},
"highlight-code-structure-simple": {
"defaultMessage": "Eenvoudig",
"description": "Highlight code structure option"
},
"ideas-tab": {
"defaultMessage": "Ideeën",
"description": "Ideas tab button text. Tab shows programs to give students ideas."
},
"ideas-tab-description": {
"defaultMessage": "Probeer deze projecten uit, verander ze en laat je inspireren",
"description": "Ideas tab description text. Tab shows programs to give students ideas."
},
"insert-code-action": {
"defaultMessage": "Code invoegen"
},
"language": {
"defaultMessage": "Taal",
"description": "Language option text"
},
"less-action": {
"defaultMessage": "Minder",
"description": "Less button text (showing less content)"
},
"load-error-makecode-info": {
"defaultMessage": "Dit hexadecimale bestand kan niet in de Python Editor geladen worden. De Python Editor kan geen hex-bestanden openen die gemaakt zijn met Microsoft MakeCode.",
"description": "Load error message"
},
"load-error-makecode-link": {
"defaultMessage": "Bezoek <link>https://makecode.microbit.org/</link> om dit hex-bestand te gebruiken.",
"description": "Load error message"
},
"load-error-mixed": {
"defaultMessage": "Een hex bestand maar een keer tegelijk worden geladen. Alle bestanden in het project worden vervangen.",
"description": "Load error message"
},
"load-error-mpy": {
"defaultMessage": "Deze versie van de Python Editor ondersteunt momenteel geen .mpy bestanden.",
"description": "Load error message"
},
"load-error-title": {
"defaultMessage": "Kan {fileCount, plural, one {bestand} other {bestanden}} niet laden",
"description": "Title of error dialog when we cannot load files. Uses ICU syntax for pluralisation: https://formatjs.io/docs/core-concepts/icu-syntax/#plural-format."
},
"loaded-file-feedback": {
"defaultMessage": "Geladen {filename}",
"description": "Success feedback for loading file"
},
"loading": {
"defaultMessage": "Laden…",
"description": "Shown on loading indicators"
},
"microbit-hearts-alt": {
"defaultMessage": "micro:bit bord met het 5 bij 5 LED raster dat een hart toont",
"description": "Alt text for micro:bit image in About dialog"
},
"micropython-documentation": {
"defaultMessage": "MicroPython documentatie",
"description": "MicroPython documentation menu option text"
},
"micropython-history": {
"defaultMessage": "Leer hoe MicroPython op de micro:bit kwam",
"description": "Links to MicroPython history in the about dialog"
},
"micropython-source-code": {
"defaultMessage": "MicroPython <linkV1>broncode voor de micro:bit V1</linkV1> en <linkV2>micro:bit V2</linkV2>",
"description": "Links to the MicroPython source code in the about dialog"
},
"more-action": {
"defaultMessage": "Meer",
"description": "More button text (showing more/further content)"
},
"more-connect-options": {
"defaultMessage": "Meer verbindings opties",
"description": "Aria label for the additional actions menu to the right of the Send to micro:bit button"
},
"more-ideas": {
"defaultMessage": "<link>Meer ideeën</link>",
"description": "Link to more ideas on the microbit.org website at the end of the ideas section"
},
"more-save-options": {
"defaultMessage": "Meer opslagopties",
"description": "Aria label for the additional actions menu to the right of the Save button"
},
"multiple-files-message-one": {
"defaultMessage": "Dit project bevat {fileCount, plural, one {} other {{fileCount} bestanden}} maar alleen <strong>main.py</strong> is gedownload.",
"description": "Message in dialog shown when multiple files are available for download. Uses ICU syntax for pluralisation: https://formatjs.io/docs/core-concepts/icu-syntax/#plural-format. In practice, fileCount will always be two or more."
},
"multiple-files-message-two": {
"defaultMessage": "Gebruik de knop <strong>Opslaan</strong> om je hele project te downloaden als een hex bestand. Je kunt <strong>het hex-bestand</strong> openen om je project te herstellen. Als je liever afzonderlijke Python bestanden downloadt, gebruik dan het <strong>Project</strong> tabblad.",
"description": "Message in dialog shown when multiple files are available for download"
},
"multiple-files-title": {
"defaultMessage": "Waarschuwing: Alleen main.py gedownload",
"description": "Title of dialog shown when multiple files are available for download but only the main file downloaded."
},
"name-project": {
"defaultMessage": "Geef een naam aan je project",
"description": "Name your project header"
},
"name-text": {
"defaultMessage": "Naam",
"description": "Header for name field"
},
"name-used-when": {
"defaultMessage": "De naam wordt gebruikt wanneer je een hex-bestand opslaat.",
"description": "Text under project name field"
},
"new-file-hint": {
"defaultMessage": "We zullen de <code>.py</code> extensie voor je toevoegen.",
"description": "Hint shown in the new Python file dialog"
},
"next-action": {
"defaultMessage": "Volgende",
"description": "Next button text"
},
"not-found-checklist-one": {
"defaultMessage": "Is je <strong>micro:bit aangesloten</strong>? Heb je <link>deze stappen gevolgd</link>?",
"description": "Checklist text in the no micro:bit found dialog"
},
"not-found-checklist-two": {
"defaultMessage": "Als je een <strong>micro:bit V1</strong> hebt, moet je mogelijk <link>firmware updaten</link>",
"description": "Checklist text in the no micro:bit found dialog"
},
"not-found-message": {
"defaultMessage": "Je hebt geen micro:bit geselecteerd, of er was een probleem met de verbinding.",
"description": "Text in the no micro:bit found dialog"
},
"not-found-save-message": {
"defaultMessage": "Alternatieve methode: kies Opslaan en volg dan stappen om over te dragen",
"description": "Save prompt in the no micro:bit found dialog"
},
"not-found-title": {
"defaultMessage": "Geen micro:bit gevonden",
"description": "Title for the micro:bit found dialog"
},
"not-found-update-link": {
"defaultMessage": "Je moet <link>firmware updaten voordat</link> je verbinding kan maken met deze micro:bit.",
"description": "Text in the no micro:bit found dialog"
},
"open-action": {
"defaultMessage": "Open",
"description": "Open button text"
},
"open-file-action": {
"defaultMessage": "Open…",
"description": "Open file button text"
},
"open-file-dropped": {
"defaultMessage": "Open bestand wanneer gedropt",
"description": "Aria label for file drop target"
},
"open-hover": {
"defaultMessage": "Open een hex of Python bestand of voeg andere bestanden toe",
"description": "Hover text over load button"
},
"options": {
"defaultMessage": "Opties",
"description": "Label for an options menu"
},
"parameter-help": {
"defaultMessage": "Hulp parameter",
"description": "Setting label to control whether pop-up documentation for function/method parameters is automatically shown."
},
"parameter-help-automatic": {
"defaultMessage": "Automatisch",
"description": "Parameter help setting for when the parameter documentation is shown automatically"
},
"parameter-help-manual": {
"defaultMessage": "Handleiding ({shortcut})",
"description": "Parameter help setting for when the user must press a key combination to open the parameter documentation"
},
"permanently-delete": {
"defaultMessage": "Definitief verwijderen {filename}?",
"description": "Confirmation question to permanently delete file"
},
"post-save-message-files": {
"defaultMessage": "Dit bevat alle bestanden in dit project (inclusief eventuele extra bestanden, bijvoorbeeld om accessoires uit te voeren, weergegeven in het <strong>Project</strong> tabblad).",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"post-save-message-one": {
"defaultMessage": "Je vindt je hex bestand in de map <strong>Downloads</strong> van deze computer.",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"post-save-message-two": {
"defaultMessage": "Je kunt het verplaatsen naar een andere map voor opslag en <strong>Open</strong> gebruiken om later verder te gaan met bewerken.",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"post-save-title": {
"defaultMessage": "Project opgeslagen",
"description": "Title of dialog shown after the user saves the project as a hex file."
},
"post-save-transfer-hex": {
"defaultMessage": "Om dit hexadecimale bestand uit te voeren op je micro:bit <link>volg deze stappen</link>.",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"project-actions": {
"defaultMessage": "Project acties",
"description": "Aria label for the bar with project actions"
},
"project-header": {
"defaultMessage": "Project koptekst",
"description": "Aria label for the project header area"
},
"project-name": {
"defaultMessage": "Projectnaam",
"description": "Text used to indicate the project name"
},
"project-name-not-empty": {
"defaultMessage": "De projectnaam kan niet leeg zijn",
"description": "Validation message for project name"
},
"project-tab": {
"defaultMessage": "Project",
"description": "Project tab button text"
},
"project-tab-description": {
"defaultMessage": "Bekijk, aanmaken, toevoegen en bewerken van de bestanden in je project",
"description": "Project tab description"
},
"python-powered": {
"defaultMessage": "Python actief",
"description": "Python powered logo alt text"
},
"python-tab": {
"defaultMessage": "Python",
"description": "Python tab text"
},
"quit-anyway": {
"defaultMessage": "Sommige van je wijzigingen zijn niet opgeslagen. Toch afsluiten?",
"description": "Quit anyway text"
},
"read-less": {
"defaultMessage": "Minder lezen",
"description": "Action text to collapse an expanded section"
},
"read-more": {
"defaultMessage": "Lees meer",
"description": "Action text to expand a collapsed section"
},
"redo": {
"defaultMessage": "Opnieuw",
"description": "Aria label for the redo button"
},
"reference-tab": {
"defaultMessage": "Referentie",
"description": "Reference tab button text"
},
"replace-action-label": {
"defaultMessage": "Vervangen",
"description": "Action label for replacing project dialog"
},
"reset-project-action": {
"defaultMessage": "Reset project",
"description": "Action to reset the project to its default state"
},
"reset-project-feedback": {
"defaultMessage": "Project opnieuw instellen op de standaard startcode",
"description": "Confirmation message after resetting the project"
},
"reset-project-hover": {
"defaultMessage": "Reset het project naar de standaard start code, waarmee je jouw werk weggooit",
"description": "Reset action hover text"
},
"results-count": {
"defaultMessage": "{count, plural, =0{# results} one{# result} other{# results}}",
"description": "Number of results from a search. Uses ICU syntax for pluralisation: https://formatjs.io/docs/core-concepts/icu-syntax/#plural-format."
},
"save-action": {
"defaultMessage": "Opslaan",
"description": "Save button text"
},
"save-file-action": {
"defaultMessage": "Opslaan {name}",
"description": "Menu option to save a file"
},
"save-hex-action": {
"defaultMessage": "Project hex opslaan",
"description": "Text for menu item for saving a project hex file"
},
"save-hover": {
"defaultMessage": "Sla het project hex bestand op je computer op",
"description": "Hover text over save button"
},
"save-python-action": {
"defaultMessage": "Python script opslaan",
"description": "Save button menu option to save the Python script"
},
"search": {
"defaultMessage": "Zoeken",
"description": "Aria label for searching documentation"
},
"send-action": {
"defaultMessage": "Stuur naar micro:bit",
"description": "Send to micro:bit button text"
},
"send-hover": {
"defaultMessage": "Maak verbinding via WebUSB en schrijf code vervolgens naar micro:bit",
"description": "Send button hover text"
},
"serial-collapse": {
"defaultMessage": "Serieel verbergen",
"description": "Action label to collapse the serial console/REPL area"
},
"serial-ctrl-c-action": {
"defaultMessage": "Verstuur Ctrl+C voor REPL",
"description": "Button to trigger the Python REPL from the serial area"
},
"serial-ctrl-d-action": {
"defaultMessage": "Verstuur Ctrl+D om te resetten",
"description": "Button to reset the micro:bit from the serial area"
},
"serial-expand": {
"defaultMessage": "Serieel weergeven",
"description": "Action label to expand the serial console/REPL area"
},
"serial-flashed": {
"defaultMessage": "Micro:bit geflasht",
"description": "Shown when your program is in sync with the micro:bit"
},
"serial-help-ctrl-c": {
"defaultMessage": "Gebruik de sneltoets <kbd>Ctrl</kbd> + <kbd>C</kbd> om je programma te onderbreken. Vervolgens kun je Python commando's typen om MicroPython te laten werken. Het is een geweldige manier om met iets nieuws te experimenteren.",
"description": "Text from the serial hints and tips dialog. kbd tag shows a keyboard key style."
},
"serial-help-ctrl-d": {
"defaultMessage": "Gebruik <kbd>Ctrl</kbd> + <kbd>D</kbd> om je programma weer uit te voeren.",
"description": "Text from the serial hints and tips dialog. kbd tag shows a keyboard key style."
},
"serial-help-intro": {
"defaultMessage": "De seriële terminal toont fouten en andere uitvoer van het programma dat wordt uitgevoerd op je micro:bit. Standaard toont het de meest recente fout van het programma. Klap het uit om alle uitvoer te zien.",
"description": "Text from the serial hints and tips dialog"
},
"serial-help-print": {
"defaultMessage": "Je programma kan berichten printen met de <code>print</code> functie. Probeer <code>print('micro:bit is awesome')</code> toe te voegen aan je programma.",
"description": "Text from the serial hints and tips dialog. code tag shows monospaced font."
},
"serial-help-title": {
"defaultMessage": "Seriële hints en tips",
"description": "Title for the serial hints and tips dialog"
},
"serial-hints-and-tips": {
"defaultMessage": "Seriële hints en tips",
"description": "Link/button to open the serial hints and tips dialog"
},
"serial-menu": {
"defaultMessage": "Seriële menu",
"description": "Aria label for serial area menu"
},
"serial-ready-to-flash": {
"defaultMessage": "Micro:bit klaar om te flashen",
"description": "Shown when your program is out of sync with the micro:bit"
},
"serial-running": {
"defaultMessage": "Uitvoeren…",
"description": "Indicator text when the micro:bit is running a program"
},
"serial-terminal": {
"defaultMessage": "Seriële terminal",
"description": "Aria label for the serial terminal"
},
"setting-allow-editing-third-party": {
"defaultMessage": "Sta modules van derden toe",
"description": "Checkbox setting label"
},
"setting-allow-editing-third-party-info": {
"defaultMessage": "Wijzigen van modules van derden kan betekenen dat ze niet werken zoals bedoeld.",
"description": "Checkbox setting label"
},
"settings": {
"defaultMessage": "Instellingen",
"description": "Settings text"
},
"show-api-documentation": {
"defaultMessage": "Toon API-documentatie",
"description": "Shown on link from editor autocomplete and signature help to the API docs."
},
"show-less": {
"defaultMessage": "Minder weergeven",
"description": "Show less for general progressive disclosure"
},
"show-less-for": {
"defaultMessage": "Toon minder voor {item}",
"description": "Show less with item usually for aria label"
},
"show-more": {
"defaultMessage": "Toon meer",
"description": "Show more for general progressive disclosure"
},
"show-more-for": {
"defaultMessage": "Toon meer voor {item}",
"description": "Show more with item usually for aria label"
},
"sidebar": {
"defaultMessage": "Zijbalk",
"description": "Aria label for the area on the left"
},
"sidebar-collapse": {
"defaultMessage": "Zijbalk inklappen",
"description": "Aria label for the collapse sidebar button"
},
"sidebar-expand": {
"defaultMessage": "Zijbalk uitvouwen",
"description": "Aria label for the expand sidebar button"
},
"simulator-accelerometer": {
"defaultMessage": "Acceleratiemeter",
"description": "Simulator Accelerometer panel title"
},
"simulator-actions": {
"defaultMessage": "Simulator acties",
"description": "Aria label for the bar with simulator actions (stop, mute etc)"
},
"simulator-button-a": {
"defaultMessage": "Knop A",
"description": "Button A aria label on the simulator board"
},
"simulator-button-b": {
"defaultMessage": "Knop B",
"description": "Button B aria label on the simulator board"
},
"simulator-button-hold-label": {
"defaultMessage": "Houd knop {button} ingedrukt",
"description": "Aria label for simulator toggle button"
},
"simulator-button-press-label": {
"defaultMessage": "Druk op knop {button}",
"description": "Aria label for simulator push button"
},
"simulator-buttons": {
"defaultMessage": "Knoppen",
"description": "Buttons simulator panel title"
},
"simulator-collapse": {
"defaultMessage": "Simulator inklappen",
"description": "Aria label for the collapse simulator button"
},
"simulator-collapse-module": {
"defaultMessage": "Module {title} inklappen",
"description": "Aria label for collapse simulator module button"
},
"simulator-compass": {
"defaultMessage": "Kompas",
"description": "Compass simulator panel title"
},
"simulator-compass-heading-one": {
"defaultMessage": "Richting",
"description": "Sub heading for simulator Compass panel"
},
"simulator-compass-heading-two": {
"defaultMessage": "Magnetische veldsterkte",
"description": "Sub heading for simulator Compass panel"
},
"simulator-data-logging-empty": {
"defaultMessage": "Geen log vermeldingen.",
"description": "Shown in the simulator Data logging table when there are no rows"
},
"simulator-data-logging-full": {
"defaultMessage": "Log vol",
"description": "Shown below the simulator Data logging table to warn that the log is full"
},
"simulator-data-logging-rows": {
"defaultMessage": "{count, plural, =0 {Geen rijen gelogd} one {# rij gelogd} other {# rijen gelogd}}",
"description": "Indicator of the number of rows logged in the simulator Data logging table. Uses ICU syntax for pluralisation: https://formatjs.io/docs/core-concepts/icu-syntax/#plural-format."
},
"simulator-data-logging-save-log": {
"defaultMessage": "Logboek opslaan",
"description": "Action label to save the data log as a file from the Data logging simulator panel"
},
"simulator-data-logging-truncated": {
"defaultMessage": "Oudere rijen worden niet weergegeven",
"description": "Text shown in the simulator Data logging table to indicate that old rows have been omitted"
},
"simulator-expand": {
"defaultMessage": "Simulator uitvouwen",
"description": "Aria label for the expand simulator button"
},
"simulator-expand-module": {
"defaultMessage": "Uitklappen {title} module",
"description": "Aria label for expand simulator module button"
},
"simulator-gesture-3g": {
"defaultMessage": "3g",
"description": "Simulator gesture option"
},
"simulator-gesture-6g": {
"defaultMessage": "6g",
"description": "Simulator gesture option"
},
"simulator-gesture-8g": {
"defaultMessage": "8g",
"description": "Simulator gesture option"
},
"simulator-gesture-down": {
"defaultMessage": "omlaag",
"description": "Simulator gesture option"
},
"simulator-gesture-face-down": {
"defaultMessage": "beeld onder",
"description": "Simulator gesture option"
},
"simulator-gesture-face-up": {
"defaultMessage": "beeld boven",
"description": "Simulator gesture option"
},
"simulator-gesture-freefall": {
"defaultMessage": "vrije val",
"description": "Simulator gesture option"
},
"simulator-gesture-left": {
"defaultMessage": "links",
"description": "Simulator gesture option"
},
"simulator-gesture-right": {
"defaultMessage": "rechts",
"description": "Simulator gesture option"
},
"simulator-gesture-select": {
"defaultMessage": "Selecteer gebaar",
"description": "Aria label for the simulator gesture select input"
},
"simulator-gesture-send": {
"defaultMessage": "Verstuur gebaar",
"description": "Aria label for the simulator gesture send button"
},
"simulator-gesture-shake": {
"defaultMessage": "schudden",
"description": "Simulator gesture option"
},
"simulator-gesture-up": {
"defaultMessage": "omhoog",
"description": "Simulator gesture option"
},
"simulator-hide": {
"defaultMessage": "Verberg simulator",
"description": "Hide simulator action"
},
"simulator-input-hold": {
"defaultMessage": "Ingedrukt houden",
"description": "Label for UI toggles to hold simulator buttons or pins"
},
"simulator-input-press": {
"defaultMessage": "Druk",
"description": "Label for UI buttons to press simulator buttons or pins"
},
"simulator-light-level": {
"defaultMessage": "Verlichtingsniveau",
"description": "Light level simulator panel title"
},
"simulator-log": {
"defaultMessage": "Data log",
"description": "Data log simulator panel title"
},
"simulator-loud": {
"defaultMessage": "Luid",
"description": "Simulator sound level high threshold marker hover text. This should match the translation of microbit.SoundEvent.LOUD in the api.en.json file but with differing case."
},
"simulator-mute": {
"defaultMessage": "Dempen",
"description": "Aria label for the mute simulator button"
},
"simulator-pin-hold-label": {
"defaultMessage": "Houd pin {pin} vast",
"description": "Aria label for simulator pin control"
},
"simulator-pin-press-label": {
"defaultMessage": "Druk op pin {pin}",
"description": "Aria label for simulator pin control"
},
"simulator-pins": {
"defaultMessage": "Pinnen",
"description": "Pins simulator panel title"
},
"simulator-quiet": {
"defaultMessage": "Stil",
"description": "Simulator sound level low threshold marker hover text. This should match the translation of microbit.SoundEvent.QUIET in the api.en.json file but with differing case."
},
"simulator-radio": {
"defaultMessage": "Radio",
"description": "Radio simulator panel title"
},
"simulator-radio-code": {
"defaultMessage": "micro:bit verzend:",
"description": "Visually hidden text for a radio message sent from the simulated micro:bit. Text of the message follows."
},
"simulator-radio-group-notice": {
"defaultMessage": "Radiogroep ingesteld op {groupNumber}",
"description": "Message in radio simulator area when the radio group changes"
},
"simulator-radio-message": {
"defaultMessage": "Radiobericht",
"description": "Label and placeholder for the simulator radio message input field"
},
"simulator-radio-message-limit-notice": {
"defaultMessage": "Oudere berichten worden niet weergegeven",
"description": "Text shown when the number of radio messages has been capped in the simulator user interface"
},
"simulator-radio-no-messages": {
"defaultMessage": "Geen berichten om weer te geven",
"description": "Text shown when there are no radio messages to display in the simulator user interface"
},
"simulator-radio-off": {
"defaultMessage": "De radio staat uit",
"description": "Text shown when there are no radio messages because the radio is off in the simulator user interface"
},
"simulator-radio-send": {
"defaultMessage": "Stuur bericht",
"description": "Aria label for the simulator radio send button"
},
"simulator-radio-user": {
"defaultMessage": "Je verzendt",
"description": "Visually hidden text for a radio message sent from the user to the simulated micro:bit. Text of the message follows."
},
"simulator-reference-link": {
"defaultMessage": "Link naar Referentie sectie",
"description": "Aria label for simulator Reference link button"
},
"simulator-reset": {
"defaultMessage": "Resetten",
"description": "Aria label for the reset simulator button"
},
"simulator-serial-terminal": {
"defaultMessage": "Simulator seriële terminal",
"description": "Aria label for the simulator serial terminal"
},
"simulator-sound-level": {
"defaultMessage": "Geluidsniveau",
"description": "Sound level simulator panel title"
},