forked from MicroBlocksCN/smallvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Locales.txt
3126 lines (1610 loc) · 35.4 KB
/
Locales.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
# MicroBlocks translation file
# Last updated: October 03 2024
LangName
LangCode
#########################
# Blocks and categories #
#########################
Output
set user LED _
say _
graph _
Input
button A
button B
timer
reset timer
microseconds
milliseconds
board type
milliseconds since _
end time _
microseconds since _
connected to IDE
Pins
read digital pin _
read analog pin _
pullup _
set digital pin _ to _
set pin _ to _
analog pins
digital pins
Control
when started
when button _ pressed
forever _
repeat _ _
wait _ millisecs
if _ _
if _ _ else _
else if _ _
else
when _
wait until _
wait _ microsecs
return _
when _ received
go!
broadcast _
comment _
How this works...
range _ to _
by _
for _ in _ _
repeat until _ _
stop this task
stop other tasks
stop all
last message
arg _ default _
default
call _
function name
parameter list
with _
Operators
_ mod _
abs _
min _ _
max _ _
random _ to _
not _
_ and _
and _
_ or _
or _
_ is a _
convert _ to _
if _ then _ else _
boolean
number
string
list
byte array
Advanced:
rescale _ from ( _ , _ ) to ( _ , _ )
hex _
Variables
# Buttons on top of "Variables" category
Add a variable
Delete a variable
# New variable dialog
New variable name?
set _ to _
change _ by _
initialize local _ to _
Data
list
cat
dog
bird
fish
length of _
item _ of _
replace item _ of list _ with _
delete item _ of list _
add _ to list _
join _ _
copy _ from _
smiles
to _
find _ in _
starting at _
join items of list _
separator _
unicode _ of _
string from unicode _
new list length _
new byte array _
as byte array _
aByteListOrString
with all _
free memory
all
last
random
split _ by _
My Blocks
Generic
# Buttons on top of "My Blocks" category
Add a command block
Add a reporter block
# Make a block dialog
Enter function name:
Comm
i2c get device _ register _
i2c set device _ register _ to _
i2c device _ read list _
i2c device _ write list _
i2c device _ exists?
spi send _
spi receive
spi setup speed _
mode _
rpi channel _
spi exchange bytes _
aByteArray
serial open _ baud
serial close
serial read
serial write _
anIntegerStringListOrByteArray
serial write _ starting at _
aStringListOrByteArray
soft serial write byte _ pin _ baud _
print _
no op
ignore
##############
# Primitives #
##############
# These are all mostly hidden from end users
draw shape _ at x _ y _
shape for letter _
send NeoPixel rgb _
has tone support
play tone pin _ frequency _
has WiFi support
start WiFi _ password _
stop WiFi
WiFi status
my IP address
radio send number _
radio send string _
Hello!
radio send pair _ = _
light
radio message received?
radio last number
radio last string
radio last message type
radio set group _ (0-255)
radio set channel (0-83) _
radio set power (0-7) _
radio last signal strength
radio receive packet _
radio send packet _
disable radio
#############
# Libraries #
#############
Basic Sensors
tilt x
tilt y
tilt z
acceleration
light level
temperature (°C)
magnetic field
set acceleration range _ g = 100
####
# NeoPixel library
NeoPixel
set NeoPixels _ _ _ _ _ _ _ _ _ _
clear NeoPixels
set NeoPixel _ color _
set all NeoPixels color _
rotate NeoPixels by _
brighten NeoPixel _ by _
brighten all NeoPixels by _
color r _ g _ b _ (0-255)
random color
attach _ LED NeoPixel strip to pin _
has white _
PIR
PIR at pin _ detected movement
#### NeoPanel library
NeoPanel
attach NeoPixel panel width _ height _ at pin _
NeoPanel set x _ y _ color _
NeoPanel fill column _ color _
NeoPanel fill row _ color _
NeoPanel fill rectangle x _ y _ width _ height _ color _
NeoPanel draw text _ at x _ y _ color _
NeoPanel draw BMP file _ at x _ y _
####
# Microphone library
Microphone
microphone
turn on microphone
loudness
clap count
set clap threshold _
estimate clap threshold
####
# Citilab ED1 board libraries
ED1 Stepper Motor
move motor _ _ steps _
move motor 1 _ and motor 2 _ _ steps
move motor _ angle _ °
move motor _ _ complete turns
stop steppers
clockwise
counter-clockwise
ED1 Buttons
button OK
button X
button up
button down
button left
button right
capacitive sensor _
set capacitive threshold to _
####
# BirdBrain Technologies libraries
Hummingbird LED _ _ %
Hummingbird Tri-LED _ R _ % G _ % B _ %
Hummingbird Position Servo _ _ °
Hummingbird Rotation Servo _ _ %
Hummingbird _ _
Hummingbird Battery (mV)
Light
Distance (cm)
Dial
Sound
Other
Finch Beak Red _ Green _ Blue _
Finch Tail _ Red _ Green _ Blue _
Finch Move _ _ cm at _ %
Finch Turn _ _ ° at _ %
Finch Wheels L _ % R _ %
Finch Stop
Finch Distance (cm)
Finch _ Light
Finch _ Line
Finch Reset Encoders
Finch _ Encoder
Finch Accelerometer _
Finch Battery
All
Forward
Backward
Right
Left
Beak Up
Beak Down
Tilt Left
Tilt Right
Level
Upside Down
x
y
z
strength
####
# Ultrasound distance library
distance (cm) trigger _ echo _
####
# Infrared remote library
IR Remote
receive IR code
receive IR code from device _
test IR
attach IR receiver to pin _
IR transmit device _ command _
####
# Keyboard and Mouse library
Keyboard and Mouse
press key _
while holding _
hold key _
release key _
release all keys
Shift
Control
Alt / ⌥
Logo / ⌘
AltGr
enter
return
tab
backspace
delete
insert
home
end
PgUp
PgDown
CapsLock
NumLock
ScrollLock
PrintScreen
ESC
_ mouse click
left
right
middle
both
move mouse pointer by _ , _
scroll mouse by _
hold _ mouse button
release mouse buttons
####
# Lists library
# Extra utilities for list manipulation and access
Lists
list _ contains _
circular item _ of _
aListOrString
map _ over _
aFunction
filter _ with _
pick _ from _
a few
some
most
reverse _
shuffle _
sort _
shuffled _
reversed _
sorted _
####
# BLE Keyboard library
BLE Keyboard
start BLE Keyboard
####
# Radio comm library
# Allows micro:bit boards to exchange messages
# All of its blocks are primitive (see "Primitives" section)
Radio
####
# Text scrolling library
# Scrolls text on 5x5 LED displays and simulated ones
Scrolling
scroll text _
HELLO ROSA!
scroll number _
pausing _ ms
stop scrolling
####
# Servo motor library
Servo
set servo _ to _ degrees (-90 to 90)
set servo _ to speed _ (-100 to 100)
stop servo _
####
# 5x5 LED display library
# Supports the micro:bit display, but also simulated 5x5 displays on boards
# with differently sized LED arrays, NeoPixel arrays or TFT displays
LED Display
display _
display image _
clear display
set display color _
plot x _ y _
unplot x _ y _
display character _
# Image names for the "display image" block
heart
small heart
yes
no
happy
sad
confused
angry
asleep
surprised
silly
fabulous
meh
t-shirt
roller skate
duck
house
tortoise
butterfly
stick figure
ghost
sword
giraffe
skull
umbrella
snake
rabbit
cow
quarter note
eight note
pitchfork
target
triangle
left triangle
chess board
diamond
small diamond
square
small square
scissors
####
# OLED Graphics library
initialize i2c _ address(hex) _ reset pin# _ flip _
initialize spi _ d/c pin# _ reset pin# _ flip _
write _ at x _ y _ inverse _
show display buffer
clear
set contrast (1-4) _
draw circle at x _ y _ radius _ erase _
draw image _ at x _ y _
draw line from x _ y _ to x _ y _ erase _
draw rectangle x _ y _ w _ h _ erase _ rounding(3-15) _
fill rectangle x _ y _ w _ h _ erase _
_flip display top _
make image _
set pixel x _ y _ erase _
set video _
cursor location
defer display updates
####
# TFT display library
clear TFT display
enable TFT _
TFT width
TFT height
set TFT pixel x _ y _ to _
draw line on TFT from x _ y _ to x _ y _ color _
draw vector x _ y _ angle _ length _ color _
draw rectangle on TFT at x _ y _ width _ height _ color _
draw rounded rectangle on TFT at x _ y _ width _ height _ radius _ color _
draw circle on TFT at x _ y _ radius _ color _
draw triangle on TFT at x _ y _ , x _ y _ , x _ y _ color _
filled _
write _ on TFT at x _ y _ color _
Hello World!
scale _ wrap _
draw text _ on TFT at x _ y _ color _
scale _
bg color _
draw bitmap _ palette _ on TFT at x _ y _
set TFT backlight _ (0-10)
gray _ %
####
# BMP library
# Can display BMP image files on a TFT display
display BMP file _ at x _ y _
image.bmp
####
# Color library
Color Operators
color r _ g _ b _ (0-255)
gray _ %
random color
red _
green _
blue _
color hue _ (0-360) saturation _ % brightness _ %
hue _
saturation _
brightness _
_ with hue _ (0-360)
_ with saturation _ %
_ with brightness _ %
####
# Fractions library
Fractions
fract _ / _
fract _ + _
fract _ - _
fract _ × _
fract _ = _
fract _ < _
fract _ > _
simplify fraction _
integer part of fraction _
numerator of fraction _
denominator of fraction _
gcd _ _