-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathui.en.json
1194 lines (1194 loc) · 45.6 KB
/
ui.en.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": "About",
"description": "About action"
},
"about-comic": {
"defaultMessage": "Three panel comic titled \"MicroPython Rocks\" by Mike Rowbit. A cartoon snake introduces Damien, saying \"Meet Damien... He created MicroPython.\". Two snakes discuss MicroPython. The yellow snake says \"MicroPython is designed to work on very small computers.\" \"Like your BBC micro:bit\" the purple snake replies.\" The yellows snake continues \"But Python can run anywhere.\". The purple snake agrees, saying \"Like on this rack of servers that run huge websites\". The background behind the snakes shows a server rack.",
"description": "Alt text for comic in the about dialog"
},
"about-microbit": {
"defaultMessage": "Made with love by the <link>Micro:bit Educational Foundation and contributors</link>",
"description": "Text in about dialog"
},
"about-micropython": {
"defaultMessage": "The editor depends on <link>MicroPython</link> which is made by Damien George and a community of developers around the world.",
"description": "Text in about dialog"
},
"about-read-less-micropython": {
"defaultMessage": "Read less about MicroPython",
"description": "Aria label to collapse an expanded section about MicroPython"
},
"about-read-more-micropython": {
"defaultMessage": "Read more about MicroPython",
"description": "Aria label to expand a collapsed section about MicroPython"
},
"accessibility": {
"defaultMessage": "Accessibility",
"description": "Menu item for link to accessibility site"
},
"added-change": {
"defaultMessage": "Added file {changeName}",
"description": "Change made to file"
},
"api-description": {
"defaultMessage": "For usage and examples, see <link>Reference</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": "Classes",
"description": "Heading in API documentation for the classes in a Python module"
},
"apidocs-fields": {
"defaultMessage": "Fields",
"description": "Heading in API documentation for the fields in a Python module"
},
"apidocs-functions": {
"defaultMessage": "Functions",
"description": "Heading in API documentation for the functions in a Python module"
},
"apidocs-methods": {
"defaultMessage": "Methods",
"description": "Heading in API documentation for the methods in a Python class"
},
"back-action": {
"defaultMessage": "Back",
"description": "Back button text"
},
"back-to-main": {
"defaultMessage": "back to the main code",
"description": "Text button, takes back to main code"
},
"cancel-action": {
"defaultMessage": "Cancel",
"description": "Cancel button text"
},
"change-files": {
"defaultMessage": "Change files?",
"description": "Header for dialog of confirmation of files changed"
},
"choose-main-add-file": {
"defaultMessage": "Add file {name}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-add-module": {
"defaultMessage": "Add module {name}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-replace-file": {
"defaultMessage": "Replace file {name}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-replace-module": {
"defaultMessage": "Replace module {name}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-add-file": {
"defaultMessage": "Add file {target} from {source}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-add-main-code": {
"defaultMessage": "Add main code from {source}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-replace-file": {
"defaultMessage": "Replace file {target} with {source}",
"description": "Shown in load dialog to confirm actions"
},
"choose-main-source-replace-main-code": {
"defaultMessage": "Replace main code with {source}",
"description": "Shown in load dialog to confirm actions"
},
"clear": {
"defaultMessage": "Clear",
"description": "Aria label for the search input"
},
"close-action": {
"defaultMessage": "Close",
"description": "Close button text"
},
"code-editor": {
"defaultMessage": "Code editor",
"description": "Aria label for the code editor"
},
"code-example": {
"defaultMessage": "Code example:",
"description": "Visually hidden text to announce code examples in the toolkit documentation"
},
"confirm-action": {
"defaultMessage": "Confirm",
"description": "Confirm action label"
},
"confirm-delete": {
"defaultMessage": "Confirm delete",
"description": "Confirmation header of deletion of a file"
},
"confirm-replace-body": {
"defaultMessage": "Replace all files with those in the hex?",
"description": "Confirmation message body for replacing project dialog"
},
"confirm-replace-reset": {
"defaultMessage": "Replace all files with the default starter code?",
"description": "Confirmation message for the reset action"
},
"confirm-replace-title": {
"defaultMessage": "Confirm replace project",
"description": "Confirmation message title for replacing project dialog"
},
"confirm-replace-with-idea": {
"defaultMessage": "Replace all files with {ideaName}?",
"description": "Confirmation message body for replacing project dialog with an idea"
},
"confirm-save-action": {
"defaultMessage": "Confirm and save",
"description": "Confirm and save action label"
},
"confirm-save-hint": {
"defaultMessage": "Cancel then use Save to keep a copy of your project.",
"description": "Hint shown when the user has unsaved changes that they might lose if they continue with an action"
},
"connect-action": {
"defaultMessage": "Connect",
"description": "Connect button text"
},
"connect-cable-title": {
"defaultMessage": "Connect cable",
"description": "Title for the connect cable dialog"
},
"connect-help-alt": {
"defaultMessage": "WebUSB connection dialog with BBC micro:bit entry labelled 1 and Connect button labelled 2",
"description": "Alt text for image in connect help dialog"
},
"connect-help-message": {
"defaultMessage": "In next popup:",
"description": "Text in the connect help dialog"
},
"connect-help-one": {
"defaultMessage": "Choose your micro:bit",
"description": "Legend text for the connect help dialog image"
},
"connect-help-title": {
"defaultMessage": "Select micro:bit",
"description": "Title for the connect help dialog"
},
"connect-help-two": {
"defaultMessage": "Select ‘Connect’",
"description": "Legend text for the connect help dialog image"
},
"connect-hover": {
"defaultMessage": "Connect to your micro:bit over WebUSB",
"description": "Connect button hover text"
},
"connect-microbit": {
"defaultMessage": "Connect to your micro:bit to see serial output here",
"description": "Text in serial area"
},
"connect-troubleshoot": {
"defaultMessage": "Troubleshoot problems with connecting to your micro:bit",
"description": "Text in no the micro:bit found and firmware update dialogs"
},
"content-load-error": {
"defaultMessage": "Something went wrong. Download your hex file for safe keeping, then refresh the page to reload.",
"description": "Text displayed when content fails to load"
},
"cookies-action": {
"defaultMessage": "Cookies",
"description": "Action to show dialog to choose website cookie preferences"
},
"copied": {
"defaultMessage": "Copied",
"description": "Text shown after copy to clipboard"
},
"copy-action": {
"defaultMessage": "Copy",
"description": "Copy to clipboard action text"
},
"copy-code-action": {
"defaultMessage": "Copy code",
"description": "Copy code to clipboard action text"
},
"copy-snippet-advice": {
"defaultMessage": "Code copied, use paste to insert it.",
"description": "Toast shown when you copy from API or Reference snippets"
},
"create-action": {
"defaultMessage": "Create",
"description": "Create action label (e.g. in create file dialog)"
},
"create-file-action": {
"defaultMessage": "Create file",
"description": "Button text for action that creates a new blank Python file in the current project"
},
"create-python": {
"defaultMessage": "Create a new Python file in this project",
"description": "Hover and dialog title when creating a new Python file"
},
"created-file": {
"defaultMessage": "Created {filename}",
"description": "Action feedback for creating a file"
},
"delete-action": {
"defaultMessage": "Delete",
"description": "Button text for delete action"
},
"delete-file-action": {
"defaultMessage": "Delete {name}",
"description": "Menu option to delete file"
},
"deleted-file": {
"defaultMessage": "Deleted {filename}",
"description": "Confirmation message that file got deleted"
},
"disconnect-action": {
"defaultMessage": "Disconnect",
"description": "Disconnect button text"
},
"disconnect-hover": {
"defaultMessage": "Disconnect from the micro:bit",
"description": "Disconnect button hover text"
},
"dont-show-again": {
"defaultMessage": "Don't show this again",
"description": "Text to never show a dialog again"
},
"drag-hover": {
"defaultMessage": "Drag and drop",
"description": "Draggable code hover text"
},
"edit-file-action": {
"defaultMessage": "Edit {name}",
"description": "Menu option to edit file"
},
"edit-name-project-hover": {
"defaultMessage": "Edit the name of your project",
"description": "Text for user to edit the name of the project"
},
"edit-project-name-action": {
"defaultMessage": "Edit project name",
"description": "Text for user to edit the name of the project"
},
"failed-to-build-hex": {
"defaultMessage": "Failed to build the hex file",
"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} file actions",
"description": "Header of file actions for file"
},
"file-already-exists": {
"defaultMessage": "This file already exists",
"description": "File already exists notification text"
},
"file-name-invalid-character": {
"defaultMessage": "The name contains an invalid character: {invalid}",
"description": "Warning text for new Python file name with an invalid character"
},
"file-name-length": {
"defaultMessage": "The name is too long",
"description": "Warning text for overly long file names (file system limitation)"
},
"file-name-lowercase-only": {
"defaultMessage": "The name should be all lowercase",
"description": "Warning text for new Python file with uppercase"
},
"file-name-not-empty": {
"defaultMessage": "The name cannot be empty",
"description": "Warning text for new Python file with empty name"
},
"file-name-start-number": {
"defaultMessage": "The name cannot start with a number",
"description": "Warning text for new Python file names starting with a number"
},
"file-name-whitespace": {
"defaultMessage": "The name cannot contain spaces",
"description": "Warning text for new Python file name with whitespace"
},
"firmware-update-link": {
"defaultMessage": "You must <link>update your firmware</link> before you can connect to this micro:bit.",
"description": "Text in the firmware update dialog"
},
"firmware-update-message": {
"defaultMessage": "Connecting to the micro:bit failed because the firmware on your micro:bit is too old.",
"description": "Text in the firmware update dialog"
},
"firmware-update-title": {
"defaultMessage": "Firmware update required",
"description": "Title for the firmware update dialog"
},
"flash-action": {
"defaultMessage": "Flash",
"description": "Text for flash button"
},
"flash-hover": {
"defaultMessage": "Flash the project directly to the micro:bit",
"description": "Hover text over flash button"
},
"flashing-code": {
"defaultMessage": "Sending code (flashing)",
"description": "Progress dialog text for partial flashes (quick)"
},
"flashing-full-flash-detail": {
"defaultMessage": "Your code is being sent (flashed) to your micro:bit. This can take a while the first time but it will be quicker after that.",
"description": "Message shown after the title in the progress dialog for a full flash"
},
"flashing-micropython": {
"defaultMessage": "Flashing MicroPython",
"description": "Progress dialog text for full flashes (slower)"
},
"font-size": {
"defaultMessage": "Font size",
"description": "Font size option text"
},
"guide-link": {
"defaultMessage": "For more support, see the <link>Python Editor guide</link>",
"description": "Text with an external link to support/help content"
},
"help": {
"defaultMessage": "Help",
"description": "Help menu label"
},
"help-support": {
"defaultMessage": "Help & support",
"description": "Menu item for link to support site"
},
"help-translate": {
"defaultMessage": "Help translate",
"description": "Help translate menu option text"
},
"highlight-code-structure": {
"defaultMessage": "Highlight code structure",
"description": "Code structure setting label"
},
"highlight-code-structure-full": {
"defaultMessage": "Full",
"description": "Highlight code structure option"
},
"highlight-code-structure-none": {
"defaultMessage": "None",
"description": "Highlight code structure option"
},
"highlight-code-structure-simple": {
"defaultMessage": "Simple",
"description": "Highlight code structure option"
},
"ideas-tab": {
"defaultMessage": "Ideas",
"description": "Ideas tab button text. Tab shows programs to give students ideas."
},
"ideas-tab-description": {
"defaultMessage": "Try out these projects, modify them and get inspired",
"description": "Ideas tab description text. Tab shows programs to give students ideas."
},
"insert-code-action": {
"defaultMessage": "Insert code",
"descrition": "Insert code action label"
},
"language": {
"defaultMessage": "Language",
"description": "Language option text"
},
"less-action": {
"defaultMessage": "Less",
"description": "Less button text (showing less content)"
},
"load-error-makecode-info": {
"defaultMessage": "This hex file cannot be loaded in the Python Editor. The Python Editor cannot open hex files created with Microsoft MakeCode.",
"description": "Load error message"
},
"load-error-makecode-link": {
"defaultMessage": "Please visit <link>https://makecode.microbit.org/</link> to use this hex file.",
"description": "Load error message"
},
"load-error-mixed": {
"defaultMessage": "A hex file can only be loaded on its own. It replaces all files in the project.",
"description": "Load error message"
},
"load-error-mpy": {
"defaultMessage": "This version of the Python Editor doesn't currently support adding .mpy files.",
"description": "Load error message"
},
"load-error-title": {
"defaultMessage": "Cannot load {fileCount, plural, one {file} other {files}}",
"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": "Loaded {filename}",
"description": "Success feedback for loading file"
},
"loading": {
"defaultMessage": "Loading…",
"description": "Shown on loading indicators"
},
"microbit-hearts-alt": {
"defaultMessage": "micro:bit board with the 5 by 5 LED grid showing a heart",
"description": "Alt text for micro:bit image in About dialog"
},
"micropython-documentation": {
"defaultMessage": "MicroPython documentation",
"description": "MicroPython documentation menu option text"
},
"micropython-history": {
"defaultMessage": "Learn how MicroPython on the micro:bit came to be",
"description": "Links to MicroPython history in the about dialog"
},
"micropython-source-code": {
"defaultMessage": "MicroPython <linkV1>source code for the micro:bit V1</linkV1> and <linkV2>micro:bit V2</linkV2>",
"description": "Links to the MicroPython source code in the about dialog"
},
"more-action": {
"defaultMessage": "More",
"description": "More button text (showing more/further content)"
},
"more-connect-options": {
"defaultMessage": "More connect options",
"description": "Aria label for the additional actions menu to the right of the Send to micro:bit button"
},
"more-ideas": {
"defaultMessage": "<link>More ideas</link>",
"description": "Link to more ideas on the microbit.org website at the end of the ideas section"
},
"more-save-options": {
"defaultMessage": "More save options",
"description": "Aria label for the additional actions menu to the right of the Save button"
},
"multiple-files-message-one": {
"defaultMessage": "This project contains {fileCount, plural, other {{fileCount} files}} but only <strong>main.py</strong> has been downloaded.",
"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": "Use the <strong>Save</strong> button to download your whole project as a hex file. You can <strong>Open</strong> the hex file to restore your project. If you prefer to download individual Python files, use the <strong>Project</strong> tab.",
"description": "Message in dialog shown when multiple files are available for download"
},
"multiple-files-title": {
"defaultMessage": "Warning: Only main.py downloaded",
"description": "Title of dialog shown when multiple files are available for download but only the main file downloaded."
},
"name-project": {
"defaultMessage": "Name your project",
"description": "Name your project header"
},
"name-text": {
"defaultMessage": "Name",
"description": "Header for name field"
},
"name-used-when": {
"defaultMessage": "The name is used when you save a file.",
"description": "Text under project name field"
},
"new-file-hint": {
"defaultMessage": "We'll add the <code>.py</code> extension for you.",
"description": "Hint shown in the new Python file dialog"
},
"next-action": {
"defaultMessage": "Next",
"description": "Next button text"
},
"not-found-checklist-one": {
"defaultMessage": "Is your <strong>micro:bit plugged in</strong>? Did you <link>follow these steps</link>?",
"description": "Checklist text in the no micro:bit found dialog"
},
"not-found-checklist-two": {
"defaultMessage": "If you have a <strong>micro:bit V1</strong> you may need to <link>update the firmware</link>",
"description": "Checklist text in the no micro:bit found dialog"
},
"not-found-message": {
"defaultMessage": "You didn’t select a micro:bit, or there was a problem connecting to it.",
"description": "Text in the no micro:bit found dialog"
},
"not-found-save-message": {
"defaultMessage": "Alternative method: choose Save then follow steps to transfer",
"description": "Save prompt in the no micro:bit found dialog"
},
"not-found-title": {
"defaultMessage": "No micro:bit found",
"description": "Title for the micro:bit found dialog"
},
"not-found-update-link": {
"defaultMessage": "You must <link>update your firmware before</link> you can connect to this micro:bit.",
"description": "Text in the no micro:bit found dialog"
},
"offline-image-alt": {
"defaultMessage": "Image unavailable offline",
"description": "Alt text for an image placeholder when the user is offline"
},
"open-action": {
"defaultMessage": "Open",
"description": "Open button text"
},
"open-file-action": {
"defaultMessage": "Open…",
"description": "Open file button text"
},
"open-file-dropped": {
"defaultMessage": "Open file when dropped",
"description": "Aria label for file drop target"
},
"open-hover": {
"defaultMessage": "Open a hex or Python file or add other files",
"description": "Hover text over load button"
},
"options": {
"defaultMessage": "Options",
"description": "Label for an options menu"
},
"parameter-help": {
"defaultMessage": "Parameter help",
"description": "Setting label to control whether pop-up documentation for function/method parameters is automatically shown."
},
"parameter-help-automatic": {
"defaultMessage": "Automatic",
"description": "Parameter help setting for when the parameter documentation is shown automatically"
},
"parameter-help-manual": {
"defaultMessage": "Manual ({shortcut})",
"description": "Parameter help setting for when the user must press a key combination to open the parameter documentation"
},
"permanently-delete": {
"defaultMessage": "Permanently delete {filename}?",
"description": "Confirmation question to permanently delete file"
},
"post-save-message-files": {
"defaultMessage": "This contains all files in this project (including any additional files, e.g. to run accessories, listed in the <strong>Project</strong> tab).",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"post-save-message-one": {
"defaultMessage": "You will find your hex file in this computer’s <strong>Downloads</strong> folder.",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"post-save-message-two": {
"defaultMessage": "You can move it to another folder for storage and use <strong>Open</strong> to continue editing later.",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"post-save-title": {
"defaultMessage": "Project saved",
"description": "Title of dialog shown after the user saves the project as a hex file."
},
"post-save-transfer-hex": {
"defaultMessage": "To run this hex file on your micro:bit <link>follow these steps</link>.",
"description": "Message in dialog shown after the user saves the project as a hex file."
},
"privacy-policy": {
"defaultMessage": "Privacy policy",
"description": "Privacy policy menu option text"
},
"project-actions": {
"defaultMessage": "Project actions",
"description": "Aria label for the bar with project actions"
},
"project-header": {
"defaultMessage": "Project header",
"description": "Aria label for the project header area"
},
"project-name": {
"defaultMessage": "Project name",
"description": "Text used to indicate the project name"
},
"project-name-not-empty": {
"defaultMessage": "The project name cannot be empty",
"description": "Validation message for project name"
},
"project-tab": {
"defaultMessage": "Project",
"description": "Project tab button text"
},
"project-tab-description": {
"defaultMessage": "View, create, add and edit the files in your project",
"description": "Project tab description"
},
"python-powered": {
"defaultMessage": "Python powered",
"description": "Python powered logo alt text"
},
"python-tab": {
"defaultMessage": "Python",
"description": "Python tab text"
},
"quit-anyway": {
"defaultMessage": "Some of your changes have not been saved. Quit anyway?",
"description": "Quit anyway text"
},
"read-less": {
"defaultMessage": "Read less",
"description": "Action text to collapse an expanded section"
},
"read-more": {
"defaultMessage": "Read more",
"description": "Action text to expand a collapsed section"
},
"redo": {
"defaultMessage": "Redo",
"description": "Aria label for the redo button"
},
"reference-tab": {
"defaultMessage": "Reference",
"description": "Reference tab button text"
},
"replace-action-label": {
"defaultMessage": "Replace",
"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 reset to the default starter code",
"description": "Confirmation message after resetting the project"
},
"reset-project-hover": {
"defaultMessage": "Resets the project to the default starter code, discarding your work",
"description": "Reset action hover text"
},
"results-count": {
"defaultMessage": "{count, plural, =0 {No 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": "Save",
"description": "Save button text"
},
"save-file-action": {
"defaultMessage": "Save {name}",
"description": "Menu option to save a file"
},
"save-hex-action": {
"defaultMessage": "Save project hex",
"description": "Text for menu item for saving a project hex file"
},
"save-hover": {
"defaultMessage": "Save the project hex file to your computer",
"description": "Hover text over save button"
},
"save-python-action": {
"defaultMessage": "Save Python script",
"description": "Save button menu option to save the Python script"
},
"search": {
"defaultMessage": "Search",
"description": "Aria label for searching documentation"
},
"send-action": {
"defaultMessage": "Send to micro:bit",
"description": "Send to micro:bit button text"
},
"send-hover": {
"defaultMessage": "Connect via WebUSB then flash code onto micro:bit",
"description": "Send button hover text"
},
"serial-collapse": {
"defaultMessage": "Hide serial",
"description": "Action label to collapse the serial console/REPL area"
},
"serial-ctrl-c-action": {
"defaultMessage": "Send Ctrl+C for REPL",
"description": "Button to trigger the Python REPL from the serial area"
},
"serial-ctrl-d-action": {
"defaultMessage": "Send Ctrl+D to reset",
"description": "Button to reset the micro:bit from the serial area"
},
"serial-expand": {
"defaultMessage": "Show serial",
"description": "Action label to expand the serial console/REPL area"
},
"serial-flashed": {
"defaultMessage": "micro:bit flashed",
"description": "Shown when your program is in sync with the micro:bit"
},
"serial-help-ctrl-c": {
"defaultMessage": "Use the keyboard shortcut <kbd>Ctrl</kbd> + <kbd>C</kbd> to interrupt your program. Then you can type Python commands for MicroPython to run. It's a great way to experiment with something new.",
"description": "Text from the serial hints and tips dialog. kbd tag shows a keyboard key style."
},
"serial-help-ctrl-d": {
"defaultMessage": "To start your program running again use <kbd>Ctrl</kbd> + <kbd>D</kbd>.",
"description": "Text from the serial hints and tips dialog. kbd tag shows a keyboard key style."
},
"serial-help-intro": {
"defaultMessage": "The serial terminal shows errors and other output from the program running on your micro:bit. By default, it shows the most recent error from the program. Expand it to see all the output.",
"description": "Text from the serial hints and tips dialog"
},
"serial-help-print": {
"defaultMessage": "Your program can print messages using the <code>print</code> function. Try adding <code>print('micro:bit is awesome')</code> to your program.",
"description": "Text from the serial hints and tips dialog. code tag shows monospaced font."
},
"serial-help-title": {
"defaultMessage": "Serial hints and tips",
"description": "Title for the serial hints and tips dialog"
},
"serial-hints-and-tips": {
"defaultMessage": "Serial hints and tips",
"description": "Link/button to open the serial hints and tips dialog"
},
"serial-menu": {
"defaultMessage": "Serial menu",
"description": "Aria label for serial area menu"
},
"serial-ready-to-flash": {
"defaultMessage": "micro:bit ready to flash",
"description": "Shown when your program is out of sync with the micro:bit"
},
"serial-running": {
"defaultMessage": "Running…",
"description": "Indicator text when the micro:bit is running a program"
},
"serial-terminal": {
"defaultMessage": "Serial terminal",
"description": "Aria label for the serial terminal"
},
"setting-allow-editing-third-party": {
"defaultMessage": "Allow editing third-party modules",
"description": "Checkbox setting label"
},
"setting-allow-editing-third-party-info": {
"defaultMessage": "Changing third-party modules may mean they don’t work as intended.",
"description": "Checkbox setting label"
},
"setting-warn-on-v2-only-features": {
"defaultMessage": "Show warnings about V2-only features",
"description": "Checkbox setting label"
},
"setting-warn-on-v2-only-features-info": {
"defaultMessage": "Warnings are shown in the editor when a micro:bit V1 is connected",
"description": "Checkbox setting label"
},
"settings": {
"defaultMessage": "Settings",
"description": "Settings text"
},
"show-api-documentation": {
"defaultMessage": "Show API documentation",
"description": "Shown on link from editor autocomplete and signature help to the API docs."
},
"show-less": {
"defaultMessage": "Show less",
"description": "Show less for general progressive disclosure"
},
"show-less-for": {
"defaultMessage": "Show less for {item}",
"description": "Show less with item usually for aria label"
},
"show-more": {
"defaultMessage": "Show more",
"description": "Show more for general progressive disclosure"
},
"show-more-for": {
"defaultMessage": "Show more for {item}",
"description": "Show more with item usually for aria label"
},
"sidebar": {
"defaultMessage": "Sidebar",
"description": "Aria label for the area on the left"
},
"sidebar-collapse": {
"defaultMessage": "Collapse sidebar",
"description": "Aria label for the collapse sidebar button"
},
"sidebar-expand": {
"defaultMessage": "Expand sidebar",
"description": "Aria label for the expand sidebar button"
},
"simulator-accelerometer": {
"defaultMessage": "Accelerometer",
"description": "Simulator Accelerometer panel title"
},
"simulator-actions": {
"defaultMessage": "Simulator actions",
"description": "Aria label for the bar with simulator actions (stop, mute etc)"
},
"simulator-button-a": {
"defaultMessage": "Button A",
"description": "Button A aria label on the simulator board"
},
"simulator-button-b": {
"defaultMessage": "Button B",
"description": "Button B aria label on the simulator board"
},
"simulator-button-hold-label": {
"defaultMessage": "Hold button {button}",
"description": "Aria label for simulator toggle button"
},
"simulator-button-press-label": {
"defaultMessage": "Press button {button}",
"description": "Aria label for simulator push button"
},
"simulator-buttons": {
"defaultMessage": "Buttons",
"description": "Buttons simulator panel title"
},
"simulator-collapse": {
"defaultMessage": "Collapse simulator",
"description": "Aria label for the collapse simulator button"
},
"simulator-collapse-module": {
"defaultMessage": "Collapse {title} module",
"description": "Aria label for collapse simulator module button"
},
"simulator-compass": {
"defaultMessage": "Compass",
"description": "Compass simulator panel title"
},
"simulator-compass-heading-one": {
"defaultMessage": "Heading",
"description": "Sub heading for simulator Compass panel"
},
"simulator-compass-heading-two": {
"defaultMessage": "Magnetic field strength",
"description": "Sub heading for simulator Compass panel"
},
"simulator-data-logging-empty": {
"defaultMessage": "No log entries.",
"description": "Shown in the simulator Data logging table when there are no rows"
},
"simulator-data-logging-full": {
"defaultMessage": "Log full",
"description": "Shown below the simulator Data logging table to warn that the log is full"
},
"simulator-data-logging-rows": {
"defaultMessage": "{count, plural, =0 {No rows logged} one {# row logged} other {# rows logged}}",
"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": "Save log",
"description": "Action label to save the data log as a file from the Data logging simulator panel"
},
"simulator-data-logging-truncated": {
"defaultMessage": "Older rows not shown",
"description": "Text shown in the simulator Data logging table to indicate that old rows have been omitted"
},
"simulator-expand": {
"defaultMessage": "Expand simulator",
"description": "Aria label for the expand simulator button"
},
"simulator-expand-module": {
"defaultMessage": "Expand {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": "down",
"description": "Simulator gesture option"
},
"simulator-gesture-face-down": {
"defaultMessage": "face down",
"description": "Simulator gesture option"
},
"simulator-gesture-face-up": {
"defaultMessage": "face up",
"description": "Simulator gesture option"
},
"simulator-gesture-freefall": {
"defaultMessage": "freefall",
"description": "Simulator gesture option"
},
"simulator-gesture-left": {
"defaultMessage": "left",
"description": "Simulator gesture option"
},
"simulator-gesture-right": {
"defaultMessage": "right",
"description": "Simulator gesture option"
},
"simulator-gesture-select": {
"defaultMessage": "Select gesture",
"description": "Aria label for the simulator gesture select input"
},
"simulator-gesture-send": {
"defaultMessage": "Send gesture",
"description": "Aria label for the simulator gesture send button"
},
"simulator-gesture-shake": {
"defaultMessage": "shake",
"description": "Simulator gesture option"
},
"simulator-gesture-up": {
"defaultMessage": "up",
"description": "Simulator gesture option"
},
"simulator-hide": {
"defaultMessage": "Hide simulator",
"description": "Hide simulator action"
},
"simulator-input-hold": {
"defaultMessage": "Hold",
"description": "Label for UI toggles to hold simulator buttons or pins"
},
"simulator-input-press": {
"defaultMessage": "Press",
"description": "Label for UI buttons to press simulator buttons or pins"
},
"simulator-light-level": {
"defaultMessage": "Light level",
"description": "Light level simulator panel title"
},
"simulator-log": {
"defaultMessage": "Data log",
"description": "Data log simulator panel title"
},
"simulator-loud": {
"defaultMessage": "Loud",
"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": "Mute",
"description": "Aria label for the mute simulator button"
},
"simulator-pin-hold-label": {
"defaultMessage": "Hold pin {pin}",
"description": "Aria label for simulator pin control"
},
"simulator-pin-press-label": {
"defaultMessage": "Press pin {pin}",
"description": "Aria label for simulator pin control"
},
"simulator-pins": {
"defaultMessage": "Pins",
"description": "Pins simulator panel title"
},
"simulator-quiet": {
"defaultMessage": "Quiet",
"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 sent:",
"description": "Visually hidden text for a radio message sent from the simulated micro:bit. Text of the message follows."
},
"simulator-radio-group-notice": {
"defaultMessage": "Radio group set to {groupNumber}",
"description": "Message in radio simulator area when the radio group changes"
},
"simulator-radio-message": {
"defaultMessage": "Radio message",
"description": "Label and placeholder for the simulator radio message input field"
},
"simulator-radio-message-limit-notice": {
"defaultMessage": "Older messages not shown",
"description": "Text shown when the number of radio messages has been capped in the simulator user interface"
},
"simulator-radio-no-messages": {
"defaultMessage": "No messages to show",
"description": "Text shown when there are no radio messages to display in the simulator user interface"
},
"simulator-radio-off": {
"defaultMessage": "The radio is off",
"description": "Text shown when there are no radio messages because the radio is off in the simulator user interface"