forked from RaspberryPiFoundation/blockly
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathba.js
More file actions
1853 lines (1849 loc) · 167 KB
/
Copy pathba.js
File metadata and controls
1853 lines (1849 loc) · 167 KB
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
// This file was automatically generated. Do not modify.
'use strict';
goog.provide('Blockly.Msg.ba');
goog.require('Blockly.Msg');
Blockly.Msg.ABOUT = "about"; // untranslated
Blockly.Msg.ACCELERATION_TOOLTIP = "Get the acceleration value in milli-gravities."; // untranslated
Blockly.Msg.ACCELEROMETER_ROTATION_TOOLTIP = "Get the tilt or rotations in degrees."; // untranslated
Blockly.Msg.ACCELEROMETER_TOOLTIP = "Represents an accelerometer."; // untranslated
Blockly.Msg.ACTION_ANALOGIN = "actuator analog"; // untranslated
Blockly.Msg.ACTION_BUZZER = "buzzer"; // untranslated
Blockly.Msg.ACTION_BUZZER_ARDUINO = "buzzer HYT120"; // untranslated
Blockly.Msg.ACTION_CALLIBOT = "Calli:bot"; // untranslated
Blockly.Msg.ACTION_DIGITALIN = "actuator digital"; // untranslated
Blockly.Msg.ACTION_EVAL = "eval"; // untranslated
Blockly.Msg.ACTION_EVAL_AS = "as"; // untranslated
Blockly.Msg.ACTION_IN = "actuator"; // untranslated
Blockly.Msg.ACTION_INFRARED = "infrared emitter"; // untranslated
Blockly.Msg.ACTION_LCD = "LCD 1602"; // untranslated
Blockly.Msg.ACTION_LCDI2C = "LCD 1602 I²C"; // untranslated
Blockly.Msg.ACTION_LCDI2C_SENSEBOX = "OLED Display I²C"; // untranslated
Blockly.Msg.ACTION_LED = "LED"; // untranslated
Blockly.Msg.ACTION_MOTOR = "motor"; // untranslated
Blockly.Msg.ACTION_OLEDSSD1306I2C = "OLED SSD1306 I²C"; // untranslated
Blockly.Msg.ACTION_PLAY = "play"; // untranslated
Blockly.Msg.ACTION_PLOTTING = "plot"; // untranslated
Blockly.Msg.ACTION_PLOT_CLEAR = "clear the plot"; // untranslated
Blockly.Msg.ACTION_PLOT_CLEAR_TOOLTIP = "Removes all the data from the plot."; // untranslated
Blockly.Msg.ACTION_PLOT_POINT = "plot a point on"; // untranslated
Blockly.Msg.ACTION_PLOT_POINT_TOOLTIP = "Plots a point with specified value (Y axis) at the specified tickmark (X axis)."; // untranslated
Blockly.Msg.ACTION_PLOT_TICKMARK = "at tickmark"; // untranslated
Blockly.Msg.ACTION_RELAY = "relay SRD-05VDC-SL-C"; // untranslated
Blockly.Msg.ACTION_RGBLED = "RGB LED"; // untranslated
Blockly.Msg.ACTION_SDCARD = "SD card"; // untranslated
Blockly.Msg.ACTION_SERIAL_PRINT = "show on Serial Monitor"; // untranslated
Blockly.Msg.ACTION_SERIAL_PRINT_TOOLTIP = "Show data on the Serial Monitor. You can find the Serial Monitor in the USB Programm on top, under View."; // untranslated
Blockly.Msg.ACTION_SERVO = "servo motor"; // untranslated
Blockly.Msg.ACTION_SERVO_ARDUINO = "servo motor SG90"; // untranslated
Blockly.Msg.ACTION_STEPMOTOR = "step motor"; // untranslated
Blockly.Msg.ACTION_WIRELESS = "WiFi connection."; // untranslated
Blockly.Msg.ACTIVITY_TOOLTIP = "Marker for an additional activity."; // untranslated
Blockly.Msg.ACTOR_ANALOGIN_TOOLTIP = "Writes an analog value (PWM wave) to a pin. Only values between 0 and 255 should be used"; // untranslated
Blockly.Msg.ACTOR_DIGITALIN_TOOLTIP = "Writes a HIGH or a LOW value to a digital pin. Only the values HIGH »1« and LOW »0« should be used."; // untranslated
Blockly.Msg.ACTOR_TOOLTIP = "Represents any actor."; // untranslated
Blockly.Msg.ADDRESS = "address"; // untranslated
Blockly.Msg.ADD_COMMENT = "Фекер өҫтәргә";
Blockly.Msg.ALL_RGBLED = "RGB LED all"; // untranslated
Blockly.Msg.ANALOG = "analog"; // untranslated
Blockly.Msg.ANALOGIN_TOOLTIP = "Represents any actuator connected to an analog pin."; // untranslated
Blockly.Msg.ANALOGOUT_TOOLTIP = "Represents any sensor connected to an analog pin."; // untranslated
Blockly.Msg.AND = "and"; // untranslated
Blockly.Msg.ARDUBRICK_TOOLTIP = "Represents the Bot'n Roll board with connected actors and sensors. There are also inbuilt actors and sensors available, e.g. pushbuttons, display ..."; // untranslated
Blockly.Msg.AUTH = "Зинһар, эшегеҙҙе һаҡлап һәм уның менән артабан уртаҡлашыу мөмкин булһын өсөн, был ҡушымтаны танытып ҡуйығыҙ.";
Blockly.Msg.BATTERY_GETSAMPLE_TOOLTIP = "Gets the current voltage from the battery."; // untranslated
Blockly.Msg.BELOW = "below"; // untranslated
Blockly.Msg.BLOCK_NOT_EXECUTED = "The exection of this block will have no effect!"; // untranslated
Blockly.Msg.BLOCK_NOT_SUPPORTED = "This robot does not support this block!"; // untranslated
Blockly.Msg.BLOCK_USED_INCORRECTLY = "Unfortunately, this block cannot be used in this way."; // untranslated
Blockly.Msg.BOB3_READNUMBER_TOOLTIP = "Returns the previously stored number."; // untranslated
Blockly.Msg.BOB3_RECALL_NUMBER = "recall number"; // untranslated
Blockly.Msg.BOB3_REMEMBER_NUMBER = "remember number"; // untranslated
Blockly.Msg.BOB3_SAVENUMBER_TOOLTIP = "The number to store should be an integer in the range of 0 to 255"; // untranslated
Blockly.Msg.BOTH = "both"; // untranslated
Blockly.Msg.BOTH_LED = "LED both"; // untranslated
Blockly.Msg.BOX_ID = "Device ID"; // untranslated
Blockly.Msg.BRICKLIGHT = "brick light"; // untranslated
Blockly.Msg.BRICKLIGHT_BLUE = "blue"; // untranslated
Blockly.Msg.BRICKLIGHT_COLOR = "colour"; // untranslated
Blockly.Msg.BRICKLIGHT_DOUBLE_FLASH = "double flashing"; // untranslated
Blockly.Msg.BRICKLIGHT_FLASH = "flashing"; // untranslated
Blockly.Msg.BRICKLIGHT_GREEN = "green"; // untranslated
Blockly.Msg.BRICKLIGHT_OFF_TOOLTIP = "Turns bricklight off."; // untranslated
Blockly.Msg.BRICKLIGHT_ON = "on"; // untranslated
Blockly.Msg.BRICKLIGHT_ON_TOOLTIP = "Turns bricklight on."; // untranslated
Blockly.Msg.BRICKLIGHT_ORANGE = "orange"; // untranslated
Blockly.Msg.BRICKLIGHT_RED = "red"; // untranslated
Blockly.Msg.BRICKLIGHT_RESET_TOOLTIP = "Resets bricklight. Sets the default bricklight: green and blinking."; // untranslated
Blockly.Msg.BRICKNAME_WEDO = "WeDo"; // untranslated
Blockly.Msg.BRICK_IPADDRESS = "ip address"; // untranslated
Blockly.Msg.BRICK_PASSWORD = "password"; // untranslated
Blockly.Msg.BRICK_PHENOMENON = "Phenomenon"; // untranslated
Blockly.Msg.BRICK_PORT = "port"; // untranslated
Blockly.Msg.BRICK_TRACK_WIDTH = "track width"; // untranslated
Blockly.Msg.BRICK_USERNAME = "user name"; // untranslated
Blockly.Msg.BRICK_WHEEL_DIAMETER = "wheel diameter"; // untranslated
Blockly.Msg.BRUSH_OFF = "turn brush Off"; // untranslated
Blockly.Msg.BRUSH_OFF_TOOLTIP = "Turns the brush off."; // untranslated
Blockly.Msg.BRUSH_ON = "turn brush on (RPM)"; // untranslated
Blockly.Msg.BRUSH_ON_TOOLTIP = "Turns on the brush with RPM of the motor (0<=RPM<=10000)"; // untranslated
Blockly.Msg.BUTTON_DO_SHARE = "Share"; // untranslated
Blockly.Msg.BUTTON_DO_UPLOAD_GALLERY = "Upload »$« to the gallery"; // untranslated
Blockly.Msg.BUTTON_EMPTY_LIST = "Empty list"; // untranslated
Blockly.Msg.BUZZER_TOOLTIP = "Represents a buzzer."; // untranslated
Blockly.Msg.CALLIBOT_TOOLTIP = "Represents the Calli:bot extension board."; // untranslated
Blockly.Msg.CALLIOPEBRICK_TOOLTIP = "Represents Calliope, a pocket-sized codeable computer. There are also inbuilt actors and sensors available, e.g. buttons, display ..."; // untranslated
Blockly.Msg.CB_ALL = "Calli:bot all"; // untranslated
Blockly.Msg.CB_BOTH = "Calli:bot both"; // untranslated
Blockly.Msg.CB_LEFT = "Calli:bot left"; // untranslated
Blockly.Msg.CB_RIGHT = "Calli:bot right"; // untranslated
Blockly.Msg.CENTER = "center"; // untranslated
Blockly.Msg.CHANGE_VALUE_TITLE = "Мәғәнәне үҙгәртегеҙ:";
Blockly.Msg.CHAT = "Был яланды тултырғанда, хеҙмәттәшегеҙ менән аралашығыҙ";
Blockly.Msg.CLEAN_UP = "Блоктарҙы таҙартырға";
Blockly.Msg.CLEAR = "clear"; // untranslated
Blockly.Msg.COLLAPSE_ALL = "Блоктарҙы төрөргә";
Blockly.Msg.COLLAPSE_BLOCK = "Блокты төрөргә";
Blockly.Msg.COLON = "colon"; // untranslated
Blockly.Msg.COLOUR_AMBIENTLIGHT_GETSAMPLE_TOOLTIP = "Gets the current ambient light reading from the sensor."; // untranslated
Blockly.Msg.COLOUR_BLEND_COLOUR1 = "1-се төҫ";
Blockly.Msg.COLOUR_BLEND_COLOUR2 = "2-се төҫ";
Blockly.Msg.COLOUR_BLEND_HELPURL = "http://meyerweb.com/eric/tools/color-blend/"; // untranslated
Blockly.Msg.COLOUR_BLEND_RATIO = "1-се төҫтөң өлөшө";
Blockly.Msg.COLOUR_BLEND_TITLE = "ҡатнаштырырға";
Blockly.Msg.COLOUR_BLEND_TOOLTIP = "Ике төҫтө бирелгән нисбәттә болғата (0.0 - 1.0).";
Blockly.Msg.COLOUR_COLOUR_GETSAMPLE_TOOLTIP = "Gets the current colour reading from the sensor."; // untranslated
Blockly.Msg.COLOUR_GETSAMPLE_TOOLTIP = "Gets the current reading from the colour sensor."; // untranslated
Blockly.Msg.COLOUR_LIGHT_GETSAMPLE_TOOLTIP = "Gets the current brightness reading from the sensor."; // untranslated
Blockly.Msg.COLOUR_PICKER_HELPURL = "https://en.wikipedia.org/wiki/Төҫ";
Blockly.Msg.COLOUR_PICKER_TOOLTIP = "Палитранан төҫ һайлағыҙ.";
Blockly.Msg.COLOUR_RANDOM_HELPURL = "http://randomcolour.com"; // untranslated
Blockly.Msg.COLOUR_RANDOM_TITLE = "осраҡлы төҫ";
Blockly.Msg.COLOUR_RANDOM_TOOLTIP = "Төҫтө осраҡлылыҡ буйынса һайлай.";
Blockly.Msg.COLOUR_RGB_BLUE = "зәңгәр";
Blockly.Msg.COLOUR_RGB_GETSAMPLE_TOOLTIP = "Gets the current colour reading from the colour sensor. Values are in the range 0 to 255."; // untranslated
Blockly.Msg.COLOUR_RGB_GREEN = "йәшелдән";
Blockly.Msg.COLOUR_RGB_HELPURL = "http://www.december.com/html/spec/colorper.html"; // untranslated
Blockly.Msg.COLOUR_RGB_RED = "ҡыҙылдан";
Blockly.Msg.COLOUR_RGB_TITLE = "ошонан төҫ";
Blockly.Msg.COLOUR_RGB_TOOLTIP = "Бирелгән нисбәттәрҙә ҡыҙылдан, йәшелдән һәм зәңгәрҙән төҫ барлыҡҡа килә. Бөтә мәғәнәләр 0 менән 100 араһында булырға тейеш.";
Blockly.Msg.COLOUR_RGB_WHITE = "white"; // untranslated
Blockly.Msg.COLOUR_TOOLTIP = "Represents a colour sensor."; // untranslated
Blockly.Msg.COMPASS_CALIBRATE_TOOLTIP = "Calibrates the compass. Turn the compass sensor VERY slowly for two times (about 40 seconds)."; // untranslated
Blockly.Msg.COMPASS_GETSAMPLE_TOOLTIP = "Gets the current reading from the compass sensor."; // untranslated
Blockly.Msg.COMPASS_TOOLTIP = "Represents a compass sensor."; // untranslated
Blockly.Msg.COMPASS_TOOLTIP_EV3 = "Represents a HiTechnic NXT compass sensor."; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_ACTOR_MISSING = "This actuator is not configured. Please add the corresponding block in the configuration tab!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MOTORS_ROTATION_DIRECTION = "The direction of rotation of the left and right motor is different!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_LEFT_MISSING = "Left motor missing in the configuration!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_LEFT_UNREGULATED = "Left motor is not regulated!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_MISSING = "Motor is missing on the given port!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_RIGHT_MISSING = "Right motor missing in the configuration!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_RIGHT_UNREGULATED = "Right motor is not regulated!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MULTIPLE_LEFT_MOTORS = "You have multiple left motors assigned to your configuration!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MULTIPLE_RIGHT_MOTORS = "You have multiple right motors assigned to your configuration!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_NO_BUILTIN_RGBLED = "This board does not have a built in RGB LED!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_OTHER_NOT_SUPPORTED = "Other power consumer does not support this type of block!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_OVERLAPPING_PORTS = "Another component is already using the same port!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_SENSOR_MISSING = "This sensor is not configured. Please add the corresponding block in the configuration tab!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_SENSOR_WRONG = "Connected wrong sensor to the given port!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_WLAN_CREDENTIALS_MISSING = "Missing WLAN credentials, please enter them in robot -> WLAN credentials ... !"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_WLAN_MISSING = "WiFi is not configured. Please add the corresponding block in the configuration tab!"; // untranslated
Blockly.Msg.CONFIGURATION_NO_PHENOMENON = "no phenomenon"; // untranslated
Blockly.Msg.CONFIGURATION_NO_PORT = "no port"; // untranslated
Blockly.Msg.CONFIGURATION_PORT = "Port1"; // untranslated
Blockly.Msg.CONFLIST_DELETE_ALL_TOOLTIP = "Click here to delete all selected programs."; // untranslated
Blockly.Msg.CONFLIST_DELETE_TOOLTIP = "Click here to delete your robot configuration."; // untranslated
Blockly.Msg.CONFLIST_LOAD_TOOLTIP = "Click here to load your robot configuration in the configuration environment."; // untranslated
Blockly.Msg.CONNECTION_CHECK = "connection to robot %1 active?"; // untranslated
Blockly.Msg.CONNECTION_CHECK_TOOLTIP = "Check if the connection to the robot is active."; // untranslated
Blockly.Msg.CONNECTION_CONNECT = "connect to robot name"; // untranslated
Blockly.Msg.CONNECTION_FROM_CONNECTION = "from connection"; // untranslated
Blockly.Msg.CONNECTION_FROM_ROBOT = "from robot"; // untranslated
Blockly.Msg.CONNECTION_MBED_RECEIVE_TOOLTIP = "Reads a message over one of the channels (0 - 255). The default channel is 0."; // untranslated
Blockly.Msg.CONNECTION_MBED_SEND_TOOLTIP = "Sends a message to another system. You can specify a signal strength from 0 - 7, where 0 is very low and 7 is the strongests. The message is send over channel 0 unless you specify another one."; // untranslated
Blockly.Msg.CONNECTION_OVER_CHANNEL = "over channel"; // untranslated
Blockly.Msg.CONNECTION_POWER = "with strength"; // untranslated
Blockly.Msg.CONNECTION_PROTOCOL_BLUETOOTH = "Bluetooth"; // untranslated
Blockly.Msg.CONNECTION_RECEIVED_DATA = "receive message"; // untranslated
Blockly.Msg.CONNECTION_RECEIVE_TOOLTIP = "Waits for a message from the robot which you declare in the connection."; // untranslated
Blockly.Msg.CONNECTION_RECEIVE_TOOLTIP_BOB3 = "Reads a message via the IR receiver. Only numbers can be received."; // untranslated
Blockly.Msg.CONNECTION_RECEIVE_TOOLTIP_MBOT = "Reads a message from the IR receiver. Only strings can be received."; // untranslated
Blockly.Msg.CONNECTION_SEND_DATA = "send message"; // untranslated
Blockly.Msg.CONNECTION_SEND_TOOLTIP = "Sends a message to another robot."; // untranslated
Blockly.Msg.CONNECTION_SEND_TOOLTIP_BOB3 = "Sends a message of type number to another Bob3. Hold the Bob3's face to face!"; // untranslated
Blockly.Msg.CONNECTION_SEND_TOOLTIP_MBOT = "Sends a message of type string to another mBot. Hold the mBots's face to face!"; // untranslated
Blockly.Msg.CONNECTION_SET_CHANNEL = "set channel to %1"; // untranslated
Blockly.Msg.CONNECTION_SET_CHANNEL_TOOLTIP = "Sets the channel for sending and receiving messages. Can be set from 0 to 255."; // untranslated
Blockly.Msg.CONNECTION_START_TOOLTIP = "Tries to make a connection to another robot via Bluetooth."; // untranslated
Blockly.Msg.CONNECTION_TOOLTIP = "A robot's connection"; // untranslated
Blockly.Msg.CONNECTION_TO_CONNECTION = "to connection"; // untranslated
Blockly.Msg.CONNECTION_TO_ROBOT = "to robot"; // untranslated
Blockly.Msg.CONNECTION_WAIT_FOR_CONNECTION = "wait for connection"; // untranslated
Blockly.Msg.CONNECTION_WAIT_TOOLTIP = "Waits for a connection via Bluetooth."; // untranslated
Blockly.Msg.CONNECTOR = "hub"; // untranslated
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_HELPURL = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK = "циклдан сығырға";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE = "циклдың киләһе аҙымына күсергә";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK = "Был циклды өҙә.";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE = "Циклдың ҡалдығын төшөрөп ҡалдыра һәм киләһе аҙымға күсә.";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_WARNING = "Иҫкәртеү: был блок цикл эсендә генә ҡулланыла ала.";
Blockly.Msg.CONTROLS_FOREACH_HELPURL = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated
Blockly.Msg.CONTROLS_FOREACH_TITLE = "һәр элемент өсөн %1 исемлектә %2";
Blockly.Msg.CONTROLS_FOREACH_TOOLTIP = "Исемлектәге һәр элемент өсөн үҙгәреүсәнгә элементтың '%1' мәғәнәһен бирә һәм күрһәтелгән командаларҙы үтәй.";
Blockly.Msg.CONTROLS_FOR_HELPURL = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated
Blockly.Msg.CONTROLS_FOR_TITLE = "count with %1 from %2 while counter < %3 by %4"; // untranslated
Blockly.Msg.CONTROLS_FOR_TOOLTIP = "Үҙгәреүсәнгә башынан аҙағына тиклем тәғәйен аҙым менән %1 мәғәнәне бирә һәм күрһәтелгән командаларҙы үтәй.";
Blockly.Msg.CONTROLS_IF_ELSEIF_TOOLTIP = "\"Әгәр\" блогына шарт өҫтәй";
Blockly.Msg.CONTROLS_IF_ELSE_TOOLTIP = "Бер шарт та дөрөҫ булмаған осраҡҡа йомғаҡлау ярҙамсы блогын өҫтәргә.";
Blockly.Msg.CONTROLS_IF_HELPURL = "https://github.com/google/blockly/wiki/IfElse"; // untranslated
Blockly.Msg.CONTROLS_IF_IF_TOOLTIP = "\"Әгәр\" блогын ҡабаттан төҙөү өсөн киҫәктәрҙе өҫтәгеҙ, юйҙырығыҙ, урындарын алмаштырығыҙ.";
Blockly.Msg.CONTROLS_IF_MSG_ELSE = "юғиһә";
Blockly.Msg.CONTROLS_IF_MSG_ELSEIF = "юғиһә, әгәр";
Blockly.Msg.CONTROLS_IF_MSG_IF = "әгәр";
Blockly.Msg.CONTROLS_IF_TOOLTIP_1 = "Мәғәнә дөрөҫ булғанда, командаларҙы үтәй.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_2 = "Шарт дөрөҫ булғанда, командаларҙың беренсе блогын үтәй. Улай булмаһа, командаларҙың икенсе блогы үтәлә.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_3 = "Беренсе шарт дөрөҫ булһа, командаларҙың беренсе блогын үтәй. Икенсе шарт дөрөҫ булһа, командаларҙың икенсе блогын үтәй.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_4 = "Беренсе шарт дөрөҫ булһа, командаларҙың беренсе блогын үтәй. Әгәр икенсе шарт дөрөҫ булһа, командаларҙың икенсе блогын үтәй. Бер шарт та дөрөҫ булмаһа, команда блоктарының һуңғыһын үтәй.";
Blockly.Msg.CONTROLS_REPEAT_HELPURL = "https://en.wikipedia.org/wiki/Цикл_(программалау)";
Blockly.Msg.CONTROLS_REPEAT_INPUT_DO = "үтәргә";
Blockly.Msg.CONTROLS_REPEAT_TITLE = " %1 тапҡыр ҡабатларға";
Blockly.Msg.CONTROLS_REPEAT_TOOLTIP = "Командаларҙы бер нисә тапҡыр үтәй.";
Blockly.Msg.CONTROLS_WHILEUNTIL_HELPURL = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated
Blockly.Msg.CONTROLS_WHILEUNTIL_OPERATOR_UNTIL = "ҡабатларға, әлегә юҡ";
Blockly.Msg.CONTROLS_WHILEUNTIL_OPERATOR_WHILE = "ҡабатларға, әлегә";
Blockly.Msg.CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL = "Мәғәнә ялған булғанда, командаларҙы ҡабатлай.";
Blockly.Msg.CONTROLS_WHILEUNTIL_TOOLTIP_WHILE = "Мәғәнә дөрөҫ булғанда, командаларҙы ҡабатлай.";
Blockly.Msg.DATATABLE_ACTUALIZATION = "Modification date"; // untranslated
Blockly.Msg.DATATABLE_CONFIGURATIONS = "configurations"; // untranslated
Blockly.Msg.DATATABLE_CONFIGURATION_NAME = "Configuration name"; // untranslated
Blockly.Msg.DATATABLE_CREATED_BY = "Creator"; // untranslated
Blockly.Msg.DATATABLE_CREATED_ON = "Creation date"; // untranslated
Blockly.Msg.DATATABLE_MEMBERS = "members"; // untranslated
Blockly.Msg.DATATABLE_PROGRAMS = "programs"; // untranslated
Blockly.Msg.DATATABLE_PROGRAM_NAME = "Program name"; // untranslated
Blockly.Msg.DATATABLE_SHARED = "Shared"; // untranslated
Blockly.Msg.DATATABLE_SHARED_PROGRAMS = "shared programs"; // untranslated
Blockly.Msg.DATATABLE_SHARED_WITH = "Shared with"; // untranslated
Blockly.Msg.DATATABLE_USERGROUP = "user group"; // untranslated
Blockly.Msg.DATATABLE_USERGROUPS = "user groups"; // untranslated
Blockly.Msg.DATATABLE_USERGROUP_NAME = "Name of the user group"; // untranslated
Blockly.Msg.DATATABLE_USERGROUP_NAME_CREATE_HINT = "The name of the user group. Kepp in mind, that the members will have to type it in each time they log in."; // untranslated
Blockly.Msg.DATATABLE_USERGROUP_OWNER = "Name of the owner of the user group"; // untranslated
Blockly.Msg.DELETE_ALL_BLOCKS = "Бөтә %1 блоктарҙы юйырғамы?";
Blockly.Msg.DELETE_BLOCK = "Блокты юйҙырырға";
Blockly.Msg.DELETE_USERGROUP_MEMBER_AFTER_LOGIN_WARNING = "A member you want to delete did already log in and might have create own programs. Are you sure that you want to delete the selected member(s)?"; // untranslated
Blockly.Msg.DELETE_USERGROUP_MEMBER_WARNING = "Are you sure that you want to delete the selected member(s)?"; // untranslated
Blockly.Msg.DELETE_X_BLOCKS = " %1 блокты юйҙырырға";
Blockly.Msg.DIGITAL = "digital"; // untranslated
Blockly.Msg.DIGITALIN_TOOLTIP = "Represents any actuator connected to a digital pin."; // untranslated
Blockly.Msg.DIGITALOUT_TOOLTIP = "Represents any sensor connected to a digital."; // untranslated
Blockly.Msg.DISABLE_BLOCK = "Блокты һүндерергә";
Blockly.Msg.DISPLAY_ANIMATION = "animation"; // untranslated
Blockly.Msg.DISPLAY_CHARACTER = "character"; // untranslated
Blockly.Msg.DISPLAY_CLEAR = "clear display"; // untranslated
Blockly.Msg.DISPLAY_CLEAR_TOOLTIP = "Clears the display."; // untranslated
Blockly.Msg.DISPLAY_COL = "in column"; // untranslated
Blockly.Msg.DISPLAY_GET_BRIGHTNESS_TOOLTIP = "Returns the brightness for all leds of the display. 0 means all leds are turned off, 9 is the brightest value."; // untranslated
Blockly.Msg.DISPLAY_GET_PIXEL_TOOLTIP = "Returns the brightness for this led. 0 means the led is turned off, 9 is the brightest value."; // untranslated
Blockly.Msg.DISPLAY_IMAGE = "image"; // untranslated
Blockly.Msg.DISPLAY_PICTURE = "picture"; // untranslated
Blockly.Msg.DISPLAY_PICTURE_EYES_CLOSED = "eyes closed"; // untranslated
Blockly.Msg.DISPLAY_PICTURE_EYES_OPEN = "eyes open"; // untranslated
Blockly.Msg.DISPLAY_PICTURE_FLOWERS = "flowers"; // untranslated
Blockly.Msg.DISPLAY_PICTURE_GLASSES = "glasses"; // untranslated
Blockly.Msg.DISPLAY_PICTURE_TACHO = "speedo"; // untranslated
Blockly.Msg.DISPLAY_PICTURE_TOOLTIP = "Displays a picture on the screen."; // untranslated
Blockly.Msg.DISPLAY_PIXEL_BRIGHTNESS = "brightness"; // untranslated
Blockly.Msg.DISPLAY_PIXEL_TITLE = "LED"; // untranslated
Blockly.Msg.DISPLAY_ROW = "in row"; // untranslated
Blockly.Msg.DISPLAY_SET_BRIGHTNESS_TOOLTIP = "Sets the brightness for all leds of the display. 0 means all leds are turned off, 9 is the brightest value."; // untranslated
Blockly.Msg.DISPLAY_SET_PIXEL_TOOLTIP = "Sets the brightness for this led. 0 means the led is turned off, 9 is the brightest value. With x and y you can determine the position of the led you would like to change."; // untranslated
Blockly.Msg.DISPLAY_SHOW = "show"; // untranslated
Blockly.Msg.DISPLAY_TEXT = "text"; // untranslated
Blockly.Msg.DISPLAY_TEXT_TOOLTIP = "Displays a text on the screen."; // untranslated
Blockly.Msg.DROP_TOOLTIP = "Represents a drop sensor."; // untranslated
Blockly.Msg.DUPLICATE_BLOCK = "Күсереп алырға";
Blockly.Msg.ENABLE_BLOCK = "Блокты тоҡандырырға";
Blockly.Msg.ENCODER_GETSAMPLE_TOOLTIP = "Gets the current reading from the motor encoder."; // untranslated
Blockly.Msg.ENCODER_RESET_TOOLTIP = "Resets the motor encoder."; // untranslated
Blockly.Msg.ENCODER_TOOLTIP = "Represents an encoder."; // untranslated
Blockly.Msg.ENVIRONMENTAL_TOOLTIP = "Represents an environmental sensor."; // untranslated
Blockly.Msg.ENVIRONMENTAL_TOOLTIP_SENSEBOX = "Represents the BME680 environmental sensor."; // untranslated
Blockly.Msg.ERROR_MISSING_PARAMETER = "An input value is missing!"; // untranslated
Blockly.Msg.ERROR_MISSING_RETURN = "The function return value is missing!"; // untranslated
Blockly.Msg.EV3BRICK_TOOLTIP = "Represents the EV3 brick with connected actors and sensors. There are also inbuilt actors and sensors available, e.g. buttons, display ..."; // untranslated
Blockly.Msg.EXPAND_ALL = "Блоктарҙы йәйергә";
Blockly.Msg.EXPAND_BLOCK = "Блокты йәйергә";
Blockly.Msg.EXTERNAL_INPUTS = "Тышҡы өҫтәлмә";
Blockly.Msg.FACTOR = "Factor"; // untranslated
Blockly.Msg.FLAME_GETSAMPLE_TOOLTIP = "Gets the current reading from the flame sensor."; // untranslated
Blockly.Msg.FLAME_TOOLTIP = "Represents a flame sensor."; // untranslated
Blockly.Msg.FLYOUT_VARIABLE_TEXT = "You need a variable? Please declare it first with a click on the + sign at the »start« block."; // untranslated
Blockly.Msg.FOR = "for"; // untranslated
Blockly.Msg.FOURDIGITDISPLAY = "4-Digit Display"; // untranslated
Blockly.Msg.FOURDIGITDISPLAY_CLEAR_TOOLTIP = "Clears the 4-Digit Display."; // untranslated
Blockly.Msg.FOURDIGITDISPLAY_SHOW_TOOLTIP = "Displays a number [0-9999] on the 4-Digit Display. Position [0-3] represents the starting position of the number"; // untranslated
Blockly.Msg.FOURDIGITDISPLAY_TOOLTIP = "Represents a Grove 4-Digit Display by Seeed"; // untranslated
Blockly.Msg.FRAME_WIDTH = "Frame width"; // untranslated
Blockly.Msg.FROM_POSITION = "from position"; // untranslated
Blockly.Msg.FSR_TOOLTIP = "Get the current reading from the force sensitive resistor under the feet of the robot."; // untranslated
Blockly.Msg.GAIN = "gain"; // untranslated
Blockly.Msg.GALLERY_BY = "by"; // untranslated
Blockly.Msg.GALLERY_DATE = "created"; // untranslated
Blockly.Msg.GALLERY_DISLIKE = "dislike"; // untranslated
Blockly.Msg.GALLERY_LIKE = "like"; // untranslated
Blockly.Msg.GALLERY_SHARED_ALREADY = "You have already uploaded this program to the gallery. If you want to change it, look for the copy from the gallery and modify it. You can also remove it from the gallery while deleting the copy from the gallery."; // untranslated
Blockly.Msg.GEARED_MOTOR = "geared motor"; // untranslated
Blockly.Msg.GET = "get"; // untranslated
Blockly.Msg.GETSAMPLE_TOOLTIP = "Gets the current reading from chosen sensor."; // untranslated
Blockly.Msg.GET_CODE_TOOLTIP = "Returns the value of the solderable code pad in the head piece. Values are in range 0-31."; // untranslated
Blockly.Msg.GO_TO_GROUPS = "Go to groups"; // untranslated
Blockly.Msg.GPS_TOOLTIP = "Represents a GPS receiver."; // untranslated
Blockly.Msg.GROUP_CREATE_NAME_HINT = "Please keep in mind, that all members of a group have to enter the group name on each login. It should neither be complicated nor long."; // untranslated
Blockly.Msg.GYRO_GETSAMPLE_TOOLTIP = "Gets the current reading from the gyro sensor."; // untranslated
Blockly.Msg.GYRO_RESET_TOOLTIP = "Resets the gyro sensor."; // untranslated
Blockly.Msg.GYRO_TOOLTIP = "Represents a gyro sensor."; // untranslated
Blockly.Msg.GYRO_TOOLTIP_WEDO = "Represents a tilt sensor."; // untranslated
Blockly.Msg.HELP = "Ярҙам";
Blockly.Msg.HINT_USERGROUP_MEMBER = "Enter the member id of your user here."; // untranslated
Blockly.Msg.HINT_USERGROUP_OWNER = "Do <strong>not</strong> enter the real name of the owner of the user group here, but his <strong>username</strong> instead."; // untranslated
Blockly.Msg.HINT_USER_ACCOUNT = "»IAmBotman« or »RobellaStracciatella«? Not everyone needs to know your real name. Think of a cool nickname that you can easily remember."; // untranslated
Blockly.Msg.HINT_USER_AGE = "Are you under 16? Then please ask your parents to help you. They can specify their e-mail address to confirm your account."; // untranslated
Blockly.Msg.HINT_USER_EMAIL = "This is voluntary! However, some functions of the lab are only available if you have verified your account by e-mail. You are younger than 16? Please ask your parents to help you out with one of their e-mail addresses. <br><a href='https://www.roberta-home.de/index.php?id=138&L=1' target='_blank'>Further information ...</a>"; // untranslated
Blockly.Msg.HINT_USER_NAME = "Enter your real name here if you like. This is just for you, no one else will see it."; // untranslated
Blockly.Msg.HINT_USER_PASSWORT = "12345 is no secure password. Rather think of a safe combination of numbers and letters that you will not forget."; // untranslated
Blockly.Msg.HINT_USER_PASSWORT_CONFIRM = "Got it? Better make sure!"; // untranslated
Blockly.Msg.HTCOLOUR_TOOLTIP = "Represents a HiTechnic NXT Color Sensor V2."; // untranslated
Blockly.Msg.HUMIDITY_TOOLTIP = "Represents a humidity sensor."; // untranslated
Blockly.Msg.ICON_BLOCKING_TOOLTIP = "Blocking block! This blocks needs some time to be executed, so other's have to wait until it gives back the control to the caller function."; // untranslated
Blockly.Msg.ID = "ID"; // untranslated
Blockly.Msg.IF_TOOLTIP = "Checks the condition in »if«. If the condition is true, executes the »do« action."; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP = "Returns the chosen image."; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_ANGRY = "angry"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_ASLEEP = "asleep"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_BUTTERFLY = "butterfly"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_CHESSBOARD = "chessboard"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_CONFUSED = "confused"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_COW = "cow"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_DIAMOND = "diamond"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_DIAMOND_SMALL = "small diamond"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_DUCK = "duck"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_FABULOUS = "fabulous"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_GHOST = "ghost"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_GIRAFFE = "giraffe"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_HEART = "heart"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_HEART_SMALL = "small heart"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_HOUSE = "house"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_MEH = "meh!"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_CROTCHET = "music crotchet"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_QUAVER = "music quaver"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_QUAVERS = "music quavers"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_NO = "no"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_PACMAN = "pacman"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_PITCHFORK = "pitchfork"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_RABBIT = "rabbit"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_ROLLERSKATE = "rollerskate"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SAD = "sad"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SILLY = "silly"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SKULL = "skull"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SMILE = "smile"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SNAKE = "snake"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SQUARE = "square"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SQUARE_SMALL = "small square"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_STICKFIGURE = "stickfigure"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_SWORD = "sword"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_TARGET = "target"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_TORTOISE = "tortoise"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_TRIANGLE = "triangle"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_TRIANGLE_LEFT = "triangle left"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_TSHIRT = "T-shirt"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_UMBRELLA = "umbrella"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_XMAS = "xmas"; // untranslated
Blockly.Msg.IMAGE_GET_TOOLTIP_YES = "yes"; // untranslated
Blockly.Msg.IMAGE_INVERT = "invert"; // untranslated
Blockly.Msg.IMAGE_INVERT_TOOLTIP = "Inverts the image. Each pixel with value 0 or none will be set to # or 9 and pixels with value # or 9 will be set to 0 or none."; // untranslated
Blockly.Msg.IMAGE_SHIFT = "shift"; // untranslated
Blockly.Msg.IMAGE_SHIFT_TOOLTIP = "Shifts the image in the given direction by the given number"; // untranslated
Blockly.Msg.IMAGE_TOOLTIP = "Creates an image for the display. You can specify the brightness of each pixel from 0 to 9 or # where 0 means no light, 1 is a bit bright and 9 or # is the brightest value."; // untranslated
Blockly.Msg.INFO_DOCUMENTATION_HINT = "Document your program here ..."; // untranslated
Blockly.Msg.INFO_TAGS = "Tags"; // untranslated
Blockly.Msg.INFRARED_DISTANCE_GETSAMPLE_TOOLTIP = "Gets the current relative distance from the infrared sensor. The values are between 1 and 75 cm."; // untranslated
Blockly.Msg.INFRARED_GETSAMPLE_TOOLTIP = "Gets the current reading from the infrared sensor."; // untranslated
Blockly.Msg.INFRARED_GETSAMPLE_TOOLTIP_MBOT = "Gets the current reading from the light sensor -- if a black line is detected (true/false)."; // untranslated
Blockly.Msg.INFRARED_PRESENCE_GETSAMPLE_TOOLTIP = "Returns an array of measurements for the presence of a beacon."; // untranslated
Blockly.Msg.INFRARED_TOOLTIP = "Represents an infrared sensor."; // untranslated
Blockly.Msg.INLINE_INPUTS = "Эске өҫтәлмә";
Blockly.Msg.INPUT = "input"; // untranslated
Blockly.Msg.INTERNAL_PORT = "internal"; // untranslated
Blockly.Msg.IRSEEKER_TOOLTIP = "Represents a HiTechnic NXT IRSeeker V2 sensor."; // untranslated
Blockly.Msg.I_TIME = "integration time"; // untranslated
Blockly.Msg.JOYSTICK_GETSAMPLE_TOOLTIP = "Gets the current reading of one of the axises of the joystick"; // untranslated
Blockly.Msg.KEY_ISPRESSED_TOOLTIP = "Is the selected button pressed?"; // untranslated
Blockly.Msg.KEY_TOOLTIP = "Represents a button."; // untranslated
Blockly.Msg.LANGUAGE = "language"; // untranslated
Blockly.Msg.LANGUAGE_ARABIC = "Arabic"; // untranslated
Blockly.Msg.LANGUAGE_BRAZILIAN = "Brazilian"; // untranslated
Blockly.Msg.LANGUAGE_CHINESE = "Chinese"; // untranslated
Blockly.Msg.LANGUAGE_CZECH = "Czech"; // untranslated
Blockly.Msg.LANGUAGE_DANISH = "Danish"; // untranslated
Blockly.Msg.LANGUAGE_DUTCH = "Dutch"; // untranslated
Blockly.Msg.LANGUAGE_ENGLISH = "English"; // untranslated
Blockly.Msg.LANGUAGE_FINNISH = "Finnish"; // untranslated
Blockly.Msg.LANGUAGE_FRENCH = "French"; // untranslated
Blockly.Msg.LANGUAGE_GERMAN = "German"; // untranslated
Blockly.Msg.LANGUAGE_GREEK = "Greek"; // untranslated
Blockly.Msg.LANGUAGE_ITALIAN = "Italian"; // untranslated
Blockly.Msg.LANGUAGE_JAPANESE = "Japanese"; // untranslated
Blockly.Msg.LANGUAGE_KOREAN = "Korean"; // untranslated
Blockly.Msg.LANGUAGE_NORWEGIAN = "Norwegian"; // untranslated
Blockly.Msg.LANGUAGE_POLISH = "Polish"; // untranslated
Blockly.Msg.LANGUAGE_PORTUGUESE = "Portuguese"; // untranslated
Blockly.Msg.LANGUAGE_RUSSIAN = "Russian"; // untranslated
Blockly.Msg.LANGUAGE_SPANISH = "Spanish"; // untranslated
Blockly.Msg.LANGUAGE_SWEDISH = "Swedish"; // untranslated
Blockly.Msg.LANGUAGE_TURKISH = "Turkish"; // untranslated
Blockly.Msg.LCDI2C_TOOLTIP = "Represents an LCD 1602 display with a soldered I²C module."; // untranslated
Blockly.Msg.LCD_TOOLTIP = "Represents an LCD display."; // untranslated
Blockly.Msg.LED = "LED"; // untranslated
Blockly.Msg.LEDBAR = "LED Bar"; // untranslated
Blockly.Msg.LEDBAR_SET_TOOLTIP = "Sets the specified LED [0-9] on the LED Bar to the given brightness [0-8]."; // untranslated
Blockly.Msg.LEDBAR_TOOLTIP = "Represents a Grove LED Bar v2.0 by Seeed."; // untranslated
Blockly.Msg.LED_MATRIX = "LED matrix"; // untranslated
Blockly.Msg.LED_OFF = "turn LED off"; // untranslated
Blockly.Msg.LED_OFF_TOOLTIP = "Turns the LED off."; // untranslated
Blockly.Msg.LED_ON = "turn LED on"; // untranslated
Blockly.Msg.LED_ON_TOOLTIP = "Turns the LED on and changes the color."; // untranslated
Blockly.Msg.LED_ON_TOOLTIP_CB = "Turns the LED on and changes the color. Attention: calli:Bot only supports 7 different colors, the nearest will be chosen."; // untranslated
Blockly.Msg.LED_ON_TOOLTIP_EDISON = "Turns the LED on."; // untranslated
Blockly.Msg.LED_ON_WHITE_TOOLTIP = "Turns the LED on. Watch out, it's very bright!"; // untranslated
Blockly.Msg.LED_TOOLTIP = "Represents an LED."; // untranslated
Blockly.Msg.LEFT = "left"; // untranslated
Blockly.Msg.LEFT_FRONT_RGBLED = "RGB LED left front"; // untranslated
Blockly.Msg.LEFT_INFRARED_SENSOR = "infraredsensor left"; // untranslated
Blockly.Msg.LEFT_LED = "LED left"; // untranslated
Blockly.Msg.LEFT_MOTOR = "motor left"; // untranslated
Blockly.Msg.LEFT_REAR_RGBLED = "RGB LED left rear"; // untranslated
Blockly.Msg.LIGHTVEML_TOOLTIP = "Represents a visible/UV light sensor."; // untranslated
Blockly.Msg.LIGHT_ARDU_TOOLTIP = "Represents 8 light sensors."; // untranslated
Blockly.Msg.LIGHT_GETSAMPLE_TOOLTIP = "Gets the current reading from the light sensor in percent."; // untranslated
Blockly.Msg.LIGHT_LDR = "Light (LDR)"; // untranslated
Blockly.Msg.LIGHT_TOOLTIP = "Represents a light sensor."; // untranslated
Blockly.Msg.LISTS_CREATE_EMPTY_HELPURL = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated
Blockly.Msg.LISTS_CREATE_EMPTY_TITLE = "create empty list"; // untranslated
Blockly.Msg.LISTS_CREATE_EMPTY_TOOLTIP = "Returns a list, of length 0, containing no data records"; // untranslated
Blockly.Msg.LISTS_CREATE_TITLE = "list"; // untranslated
Blockly.Msg.LISTS_CREATE_WITH_CONTAINER_TITLE_ADD = "исемлек";
Blockly.Msg.LISTS_CREATE_WITH_CONTAINER_TOOLTIP = "Add, remove, or reorder sections to reconfigure this list block."; // untranslated
Blockly.Msg.LISTS_CREATE_WITH_HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated
Blockly.Msg.LISTS_CREATE_WITH_INPUT_WITH = "менән исемлек төҙөргә";
Blockly.Msg.LISTS_CREATE_WITH_ITEM_TOOLTIP = "Add an item to the list."; // untranslated
Blockly.Msg.LISTS_CREATE_WITH_TOOLTIP = "Create a list with any number of items."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_FIRST = "беренсе";
Blockly.Msg.LISTS_GET_INDEX_FROM_END = "# аҙағынан";
Blockly.Msg.LISTS_GET_INDEX_FROM_START = "#"; // untranslated
Blockly.Msg.LISTS_GET_INDEX_GET = "алырға";
Blockly.Msg.LISTS_GET_INDEX_GET_REMOVE = "алырға һәм юйырға";
Blockly.Msg.LISTS_GET_INDEX_LAST = "аҙаҡҡы";
Blockly.Msg.LISTS_GET_INDEX_RANDOM = "осраҡлы";
Blockly.Msg.LISTS_GET_INDEX_REMOVE = "юйырға";
Blockly.Msg.LISTS_GET_INDEX_TAIL = ""; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FIRST = "Returns the first item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FROM_END = "Returns the item at the specified position in a list. #1 is the last item."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FROM_START = "Returns the item at the specified position in a list. #1 is the first item."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_LAST = "Returns the last item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_RANDOM = "Returns a random item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST = "Removes and returns the first item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM_END = "Removes and returns the item at the specified position in a list. #1 is the last item."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM_START = "Removes and returns the item at the specified position in a list. #1 is the first item."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST = "Removes and returns the last item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM = "Removes and returns a random item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST = "Removes the first item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM_END = "Removes the item at the specified position in a list. #1 is the last item."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM_START = "Removes the item at the specified position in a list. #1 is the first item."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST = "Removes the last item in a list."; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM = "Removes a random item in a list."; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_END_FROM_END = "to # from end"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_END_FROM_START = "to #"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_END_LAST = "to last"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_HELPURL = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_START_FIRST = "get sub-list from first"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_START_FROM_END = "get sub-list from # from end"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_START_FROM_START = "get sub-list from #"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_TAIL = ""; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_TOOLTIP = "Creates a copy of the specified portion of a list."; // untranslated
Blockly.Msg.LISTS_INDEX_OF_FIRST = "find first occurrence of item"; // untranslated
Blockly.Msg.LISTS_INDEX_OF_HELPURL = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated
Blockly.Msg.LISTS_INDEX_OF_LAST = "find last occurrence of item"; // untranslated
Blockly.Msg.LISTS_INDEX_OF_TOOLTIP = "Returns the index of the first/last occurrence of the item in the list. Returns -1 if item is not found."; // untranslated
Blockly.Msg.LISTS_INLIST = "исемлеккә";
Blockly.Msg.LISTS_ISEMPTY_HELPURL = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated
Blockly.Msg.LISTS_ISEMPTY_TITLE = "%1 буш";
Blockly.Msg.LISTS_ISEMPTY_TOOLTIP = "Returns true if the list is empty."; // untranslated
Blockly.Msg.LISTS_LENGTH_HELPURL = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated
Blockly.Msg.LISTS_LENGTH_TITLE = "оҙонлоғо %1";
Blockly.Msg.LISTS_LENGTH_TOOLTIP = "Returns the length of a list."; // untranslated
Blockly.Msg.LISTS_REPEAT_HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated
Blockly.Msg.LISTS_REPEAT_TITLE = "create list with item %1 repeated %2 times"; // untranslated
Blockly.Msg.LISTS_REPEAT_TOOLTIP = "Creates a list consisting of the given value repeated the specified number of times."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_HELPURL = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated
Blockly.Msg.LISTS_SET_INDEX_INPUT_TO = "кеүек";
Blockly.Msg.LISTS_SET_INDEX_INSERT = "өҫтәп ҡуйырға";
Blockly.Msg.LISTS_SET_INDEX_SET = "йыйылма";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST = "Inserts the item at the start of a list."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FROM_END = "Inserts the item at the specified position in a list. #1 is the last item."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FROM_START = "Inserts the item at the specified position in a list. #1 is the first item."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_LAST = "Append the item to the end of a list."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM = "Inserts the item randomly in a list."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FIRST = "Sets the first item in a list."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FROM_END = "Sets the item at the specified position in a list. #1 is the last item."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FROM_START = "Sets the item at the specified position in a list. #1 is the first item."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_LAST = "Sets the last item in a list."; // untranslated
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_RANDOM = "Sets a random item in a list."; // untranslated
Blockly.Msg.LISTS_SORT_HELPURL = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated
Blockly.Msg.LISTS_SORT_ORDER_ASCENDING = "ascending"; // untranslated
Blockly.Msg.LISTS_SORT_ORDER_DESCENDING = "descending"; // untranslated
Blockly.Msg.LISTS_SORT_TITLE = "sort %1 %2 %3"; // untranslated
Blockly.Msg.LISTS_SORT_TOOLTIP = "Sort a copy of a list."; // untranslated
Blockly.Msg.LISTS_SORT_TYPE_IGNORECASE = "alphabetic, ignore case"; // untranslated
Blockly.Msg.LISTS_SORT_TYPE_NUMERIC = "numeric"; // untranslated
Blockly.Msg.LISTS_SORT_TYPE_TEXT = "alphabetic"; // untranslated
Blockly.Msg.LISTS_SPLIT_HELPURL = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated
Blockly.Msg.LISTS_SPLIT_LIST_FROM_TEXT = "make list from text"; // untranslated
Blockly.Msg.LISTS_SPLIT_TEXT_FROM_LIST = "make text from list"; // untranslated
Blockly.Msg.LISTS_SPLIT_TOOLTIP_JOIN = "Join a list of texts into one text, separated by a delimiter."; // untranslated
Blockly.Msg.LISTS_SPLIT_TOOLTIP_SPLIT = "Split text into a list of texts, breaking at each delimiter."; // untranslated
Blockly.Msg.LISTS_SPLIT_WITH_DELIMITER = "with delimiter"; // untranslated
Blockly.Msg.LIST_BACK_TOOLTIP = "Back to previous view."; // untranslated
Blockly.Msg.LOGIC_BOOLEAN_FALSE = "ялған";
Blockly.Msg.LOGIC_BOOLEAN_HELPURL = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated
Blockly.Msg.LOGIC_BOOLEAN_TOOLTIP = "Дөрөҫ йәки ялғанды ҡайтара.";
Blockly.Msg.LOGIC_BOOLEAN_TRUE = "дөрөҫ";
Blockly.Msg.LOGIC_COMPARE_HELPURL = "https://en.wikipedia.org/wiki/Inequality_(математика)";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_EQ = "Өҫтәмәләр тигеҙ булһа, дөрөҫ мәғәнәһен кире ҡайтара.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_GT = "Беренсе өҫтәмә икенсеһенән ҙурыраҡ булһа, дөрөҫ мәғәнәһен кире ҡайтара.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_GTE = "Беренсе өҫтәмә икенсеһенән бәләкәйерәк йә уға тиң булһа, дөрөҫ мәғәнәһен кире ҡайтара.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_LT = "Беренсе өҫтәмә икенсеһенән бәләкәйерәк булһа, дөрөҫ мәғәнәһен кире ҡайтара.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_LTE = "Беренсе өҫтәмә икенсеһенән бәләкәйерәк йә уға тиң булһа, дөрөҫ мәғәнәһен кире ҡайтара.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_NEQ = "Өҫтәмәләр тигеҙ булмаһа, дөрөҫ мәғәнәһен кире ҡайтара.";
Blockly.Msg.LOGIC_NEGATE_HELPURL = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated
Blockly.Msg.LOGIC_NEGATE_TITLE = "%1 түгел";
Blockly.Msg.LOGIC_NEGATE_TOOLTIP = "Өҫтәлмә ялған булһа, дөрөҫ аңлатманы ҡайтара. Өҫтәлмә дөрөҫ булһа, ялған аңлатманы ҡайтара.";
Blockly.Msg.LOGIC_NULL = "нуль";
Blockly.Msg.LOGIC_NULL_HELPURL = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated
Blockly.Msg.LOGIC_NULL_TOOLTIP = "Нулде ҡайтара.";
Blockly.Msg.LOGIC_OPERATION_AND = "һәм";
Blockly.Msg.LOGIC_OPERATION_HELPURL = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated
Blockly.Msg.LOGIC_OPERATION_OR = "йәки";
Blockly.Msg.LOGIC_OPERATION_TOOLTIP_AND = "Әгәр ҙә ике өҫтәлмә лә тап килһә, дөрөҫ аңлатманы кире ҡайтара.";
Blockly.Msg.LOGIC_OPERATION_TOOLTIP_OR = "Өҫтәлмәләрҙең береһе генә дөрөҫ булһа, дөрөҫ аңлатманы ҡайтара.";
Blockly.Msg.LOGIC_TERNARY_CONDITION = "тест";
Blockly.Msg.LOGIC_TERNARY_HELPURL = "https://en.wikipedia.org/wiki/%3F:"; // untranslated
Blockly.Msg.LOGIC_TERNARY_IF_FALSE = "әгәр ялған булһа";
Blockly.Msg.LOGIC_TERNARY_IF_TRUE = "әгәр дөрөҫ булһа";
Blockly.Msg.LOGIC_TERNARY_TOOLTIP = "Һайлау шартын тикшерә. Әгәр ул дөрөҫ булһа, беренсе мәғәнәне, хата булһа, икенсе мәғәнәне ҡайтара.";
Blockly.Msg.LOOP = "repeat until"; // untranslated
Blockly.Msg.LOOPFOREVER_TOOLTIP = "Repeats indefinitely an action."; // untranslated
Blockly.Msg.LOOP_FOREVER = "repeat indefinitely"; // untranslated
Blockly.Msg.MATH_ADDITION_SYMBOL = "+"; // untranslated
Blockly.Msg.MATH_ARITHMETIC_HELPURL = "https://ba.wikipedia.org/wiki/Арифметика";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_ADD = "Ике һандың суммаһын ҡайтара.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_DIVIDE = "Ике һандың бүлендеген ҡайтара.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_MINUS = "Ике һандың айырмаһын ҡайтара.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_MULTIPLY = "Ике һандың ҡабатландығын ҡайтара.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_POWER = "Дәрәжәгә күтәрелгән икенсе һандан тәүгеһенә ҡайтара.";
Blockly.Msg.MATH_CAST_TOCHAR = "cast %1 to Char"; // untranslated
Blockly.Msg.MATH_CAST_TOCHAR_TOOLTIP = "Convert this number into a single ASCII character"; // untranslated
Blockly.Msg.MATH_CAST_TOSTRING = "cast %1 to String"; // untranslated
Blockly.Msg.MATH_CAST_TOSTRING_TOOLTIP = "Convert this number into a string."; // untranslated
Blockly.Msg.MATH_CHANGE_HELPURL = "https://ba.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter";
Blockly.Msg.MATH_CHANGE_TITLE = "%1 тан %2 ҡа арттырырға";
Blockly.Msg.MATH_CHANGE_TOOLTIP = "Үҙгәреүсән һанға өҫтәй '%1'.";
Blockly.Msg.MATH_CONSTANT_HELPURL = "https://ba.wikipedia.org/wiki/Математик_константа";
Blockly.Msg.MATH_CONSTANT_TOOLTIP = "Таралған константаның береһен күрһәтә: π (3.141...), e (2.718...), φ (1.618...), sqrt(2) (1.414...), sqrt(½) (0.707...) йәки ∞ (сикһеҙлек).";
Blockly.Msg.MATH_CONSTRAIN_HELPURL = "https://en.wikipedia.org/wiki/Clamping_%28graphics%29"; // untranslated
Blockly.Msg.MATH_CONSTRAIN_TITLE = "сикләргә %1 аҫтан %2 өҫтән %3";
Blockly.Msg.MATH_CONSTRAIN_TOOLTIP = "Һанды аҫтан һәм өҫтән сикләй (сиктәгеләрен индереп).";
Blockly.Msg.MATH_DIVISION_SYMBOL = "÷"; // untranslated
Blockly.Msg.MATH_IS_DIVISIBLE_BY = "бүленә";
Blockly.Msg.MATH_IS_EVEN = "тағы";
Blockly.Msg.MATH_IS_NEGATIVE = "тиҫкәре";
Blockly.Msg.MATH_IS_ODD = "сәйер";
Blockly.Msg.MATH_IS_POSITIVE = "ыңғай";
Blockly.Msg.MATH_IS_PRIME = "ябай";
Blockly.Msg.MATH_IS_TOOLTIP = "Һандың йоп, таҡ, ябай, бөтөн, ыңғай, кире йәки билдәле һанға ҡарата ниндәй булыуын тикшерә. Дөрөҫ йә ялған мәғәнәһен күрһәтә.";
Blockly.Msg.MATH_IS_WHOLE = "бөтөн";
Blockly.Msg.MATH_MODULO_HELPURL = "https://ba.wikipedia.org/wiki/Ҡалдыҡ_менән_бүлеү";
Blockly.Msg.MATH_MODULO_TITLE = "ҡалдыҡ %1 : %2 араһында";
Blockly.Msg.MATH_MODULO_TOOLTIP = "Ике һанды бүлеү ҡалдығын күрһәтә.";
Blockly.Msg.MATH_MULTIPLICATION_SYMBOL = "×"; // untranslated
Blockly.Msg.MATH_NUMBER_HELPURL = "https://ba.wikipedia.org/wiki/Һан";
Blockly.Msg.MATH_NUMBER_TOOLTIP = "Рәт.";
Blockly.Msg.MATH_ONLIST_HELPURL = ""; // untranslated
Blockly.Msg.MATH_ONLIST_OPERATOR_AVERAGE = "исемлектең уртаса арифметик дәүмәле";
Blockly.Msg.MATH_ONLIST_OPERATOR_MAX = "исемлектәге иң ҙуры";
Blockly.Msg.MATH_ONLIST_OPERATOR_MEDIAN = "исемлек медианаһы";
Blockly.Msg.MATH_ONLIST_OPERATOR_MIN = "Исемлектәге иң бәләкәйе";
Blockly.Msg.MATH_ONLIST_OPERATOR_MODE = "исемлек модалары";
Blockly.Msg.MATH_ONLIST_OPERATOR_RANDOM = "исемлектең осраҡлы элементы";
Blockly.Msg.MATH_ONLIST_OPERATOR_STD_DEV = "исемлекте стандарт кире ҡағыу";
Blockly.Msg.MATH_ONLIST_OPERATOR_SUM = "исемлек суммаһы";
Blockly.Msg.MATH_ONLIST_TOOLTIP_AVERAGE = "Исемлектең уртаса арифметик дәүмәле күрһәтә.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MAX = "Исемлектең иң ҙур һанын күрһәтә.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MEDIAN = "Исемлек медианаһын күрһәтә.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MIN = "Исемлектәге иң бәләкәй һанды күрһәтә.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MODE = "Исемлектең иң күп осраған элементтарын күрһәтә.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_RANDOM = "Исемлектең осраҡлы элементын күрһәтә.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_STD_DEV = "Исемлекте стандарт кире ҡағыуҙы күрһәтә.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_SUM = "Исемлектәрҙәге һандар суммаһын күрһәтә.";
Blockly.Msg.MATH_POWER_SYMBOL = "^"; // untranslated
Blockly.Msg.MATH_RANDOM_FLOAT_HELPURL = "https://ba.wikipedia.org/wiki/Ялған осраҡлы_һандар_генераторы";
Blockly.Msg.MATH_RANDOM_FLOAT_TITLE_RANDOM = "0 (үҙен дә индереп) һәм 1 араһындағы осраҡлы һан";
Blockly.Msg.MATH_RANDOM_FLOAT_TOOLTIP = "Return a random fraction between 0.0 (inclusive) and 1.0 (exclusive)."; // untranslated
Blockly.Msg.MATH_RANDOM_INT_HELPURL = "https://ba.wikipedia.org/wiki/Ялған осраҡлы_һандар_генераторы";
Blockly.Msg.MATH_RANDOM_INT_TITLE = "%1-ҙән %2-гә тиклем осраҡлы бөтөн һан";
Blockly.Msg.MATH_RANDOM_INT_TOOLTIP = "Ике бирелгән һан араһындағы (үҙҙәрен дә индереп) осраҡлы һанды күрһәтә.";
Blockly.Msg.MATH_ROUND_HELPURL = "https://ba.wikipedia.org/wiki/Т=Түңәрәкләү";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUND = "түңәрәк";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUNDDOWN = "бәләкәйгә тиклем түңәрәкләргә";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUNDUP = "ҙурына тиклем түңәрәкләргә";
Blockly.Msg.MATH_ROUND_TOOLTIP = "Һанды ҙурына йә бәләкәйенә тиклем түңәрәкләргә.";
Blockly.Msg.MATH_SINGLE_HELPURL = "https://ba.wikipedia.org/wiki/Квадрат_тамыр";
Blockly.Msg.MATH_SINGLE_OP_ABSOLUTE = "абсолют";
Blockly.Msg.MATH_SINGLE_OP_ROOT = "квадрат тамыр";
Blockly.Msg.MATH_SINGLE_OP_SQUARE = "square"; // untranslated
Blockly.Msg.MATH_SINGLE_TOOLTIP_ABS = "Һандың модулен ҡайтара.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_EXP = "Күрһәтелгән дәрәжәлә ҡайтара.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_LN = "Һандың натураль логаритмын ҡайтара.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_LOG10 = "Һандың унынсы логаритмын ҡайтара.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_NEG = "Кире һанды ҡайтара.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_POW10 = "Күрһәтелгән 10-сы дәрәжәлә ҡайтара.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_ROOT = "Һандың квадрат тамырын ҡайтара.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_SQUARE = "Return the number multiplied by itself."; // untranslated
Blockly.Msg.MATH_SUBTRACTION_SYMBOL = "-"; // untranslated
Blockly.Msg.MATH_TRIG_ACOS = "acos"; // untranslated
Blockly.Msg.MATH_TRIG_ASIN = "asin"; // untranslated
Blockly.Msg.MATH_TRIG_ATAN = "atan"; // untranslated
Blockly.Msg.MATH_TRIG_COS = "cos"; // untranslated
Blockly.Msg.MATH_TRIG_HELPURL = "https://ba..wikipedia.org/wiki/Тригонометрик_функциялар";
Blockly.Msg.MATH_TRIG_SIN = "sin"; // untranslated
Blockly.Msg.MATH_TRIG_TAN = "tan"; // untranslated
Blockly.Msg.MATH_TRIG_TOOLTIP_ACOS = "Арккосинусты градустарҙа күрһәтә.";
Blockly.Msg.MATH_TRIG_TOOLTIP_ASIN = "Арксинусты градустарҙа күрһәтә.";
Blockly.Msg.MATH_TRIG_TOOLTIP_ATAN = "Арктангенсты градустарҙа күрһәтә.";
Blockly.Msg.MATH_TRIG_TOOLTIP_COS = "Мөйөштөң косинусын градустарҙа ҡайтара.";
Blockly.Msg.MATH_TRIG_TOOLTIP_SIN = "Мөйөштөң синусын градустарҙа ҡайтара.";
Blockly.Msg.MATH_TRIG_TOOLTIP_TAN = "Мөйөштөң тангенсын градустарҙа күрһәтә.";
Blockly.Msg.MAX_ANGLE = "Maximum angle"; // untranslated
Blockly.Msg.MAX_PULSE_WIDTH = "Maximum pulse width"; // untranslated
Blockly.Msg.ME = "Миңә";
Blockly.Msg.MENU_ABOUT = "about the Open Roberta Lab"; // untranslated
Blockly.Msg.MENU_ABOUT_PROJECT = "about the Open Roberta Project"; // untranslated
Blockly.Msg.MENU_ATTACH = "attach ..."; // untranslated
Blockly.Msg.MENU_BEGINNER = "beginner"; // untranslated
Blockly.Msg.MENU_CHANGE = "change ..."; // untranslated
Blockly.Msg.MENU_CHECK = "check"; // untranslated
Blockly.Msg.MENU_CODE_DOWNLOAD_TOOLTIP = "Download the source code of your program on the computer"; // untranslated
Blockly.Msg.MENU_CODE_REFRESH_TOOLTIP = "Refresh the source code, if you have changed the NEPO Blocks."; // untranslated
Blockly.Msg.MENU_CONNECT = "connect ..."; // untranslated
Blockly.Msg.MENU_CREATE_LINK = "create program link ..."; // untranslated
Blockly.Msg.MENU_DEBUG_STEP_BREAKPOINT_TOOLTIP = "Step forward to the next breakpoint in the program."; // untranslated
Blockly.Msg.MENU_DEBUG_STEP_INTO_TOOLTIP = "Step Into to the next block in the program."; // untranslated
Blockly.Msg.MENU_DEBUG_STEP_OVER_TOOLTIP = "Step Over to the next block in the program."; // untranslated
Blockly.Msg.MENU_DELETE_USER = "delete user ..."; // untranslated
Blockly.Msg.MENU_EDIT = "edit"; // untranslated
Blockly.Msg.MENU_EDIT_TOOLTIP = "edit"; // untranslated
Blockly.Msg.MENU_EV3 = "Robot preparation"; // untranslated
Blockly.Msg.MENU_EXPERT = "expert"; // untranslated
Blockly.Msg.MENU_EXPORT_ALL_PROGS = "export all programs"; // untranslated
Blockly.Msg.MENU_EXPORT_PROG = "export program"; // untranslated
Blockly.Msg.MENU_FAQ = "FAQ"; // untranslated
Blockly.Msg.MENU_GALLERY = "gallery"; // untranslated
Blockly.Msg.MENU_GALLERY_TOOLTIP = "gallery"; // untranslated
Blockly.Msg.MENU_GENERAL = "general help"; // untranslated
Blockly.Msg.MENU_HELP = "help"; // untranslated
Blockly.Msg.MENU_HELP_TOOLTIP = "help"; // untranslated
Blockly.Msg.MENU_IMPORT_PROG = "import program ..."; // untranslated
Blockly.Msg.MENU_LANGUAGE = "languages"; // untranslated
Blockly.Msg.MENU_LANGUAGE_TOOLTIP = "languages"; // untranslated
Blockly.Msg.MENU_LIST = "list ..."; // untranslated
Blockly.Msg.MENU_LIST_CONF = "my configurations ..."; // untranslated
Blockly.Msg.MENU_LIST_PROG = "my programs ..."; // untranslated
Blockly.Msg.MENU_LIST_PROG_EXAMPLES = "example programs ..."; // untranslated
Blockly.Msg.MENU_LOGGING = "logging"; // untranslated
Blockly.Msg.MENU_LOG_IN = "login ..."; // untranslated
Blockly.Msg.MENU_LOG_OUT = "logout"; // untranslated
Blockly.Msg.MENU_MANAGE_USERGROUPS = "Manage user groups ..."; // untranslated
Blockly.Msg.MENU_MESSAGE_DOWNLOAD = "Your program has been successfully downloaded."; // untranslated
Blockly.Msg.MENU_NEW = "new"; // untranslated
Blockly.Msg.MENU_PROGRAMMING = "programming with NEPO"; // untranslated
Blockly.Msg.MENU_PROPERTIES = "properties"; // untranslated
Blockly.Msg.MENU_RESET_FIRMWARE = "reset to factory defaults"; // untranslated
Blockly.Msg.MENU_RIGHT_CODE_TOOLTIP = "Open/close the source code view."; // untranslated
Blockly.Msg.MENU_RIGHT_HELP_TOOLTIP = "Open/close the help view."; // untranslated
Blockly.Msg.MENU_RIGHT_INFO_TOOLTIP = "Open/close the program documentation view."; // untranslated
Blockly.Msg.MENU_RIGHT_LEGAL_TOOLTIP = "Open/close the legal information view."; // untranslated
Blockly.Msg.MENU_RIGHT_SIM_DEBUG_TOOLTIP = "Open/close the simulation view in debug mode."; // untranslated
Blockly.Msg.MENU_RIGHT_SIM_TOOLTIP = "Open/close the simulation view."; // untranslated
Blockly.Msg.MENU_RIGHT_TUTORIAL_TOOLTIP = "open/close the tutorial's view"; // untranslated
Blockly.Msg.MENU_ROBOT = "robot"; // untranslated
Blockly.Msg.MENU_ROBOT_STATE_INFO = "info"; // untranslated
Blockly.Msg.MENU_ROBOT_STATE_TOOLTIP = "robot info"; // untranslated
Blockly.Msg.MENU_ROBOT_STOP_HINT_EV3 = "Press <span class='typcn typcn-media-stop'></span>+<span class='typcn typcn-arrow-sorted-down'></span> buttons on the robot to abort the program!"; // untranslated
Blockly.Msg.MENU_ROBOT_STOP_HINT_NXT = "Press <span class='typcn typcn-media-cancel'></span> button on the robot to abort the program!"; // untranslated
Blockly.Msg.MENU_ROBOT_TOOLTIP = "robots"; // untranslated
Blockly.Msg.MENU_ROBOT_WLAN = "WLAN credentials ..."; // untranslated
Blockly.Msg.MENU_RUN_MULT_SIM = "multiple robot simulation ..."; // untranslated
Blockly.Msg.MENU_SAVE = "save"; // untranslated
Blockly.Msg.MENU_SAVE_AS = "save as ..."; // untranslated
Blockly.Msg.MENU_SHORTCUT = "keyboard shortcuts"; // untranslated
Blockly.Msg.MENU_SHORTCUT_RUN = "run on robot"; // untranslated
Blockly.Msg.MENU_SHOW_AGAIN = "show welcome note again"; // untranslated
Blockly.Msg.MENU_SHOW_CODE = "open/close source code view"; // untranslated
Blockly.Msg.MENU_SIM_ADD_COLOR_OBJECT_TOOLTIP = "Add a color area."; // untranslated
Blockly.Msg.MENU_SIM_ADD_OBSTACLE_TOOLTIP = "Add an obstacle."; // untranslated
Blockly.Msg.MENU_SIM_CHANGE_COLOR_TOOLTIP = "Choose a color for the selected obstacle / color area."; // untranslated
Blockly.Msg.MENU_SIM_CONFIG_EXPORT = "Download simulation settings."; // untranslated
Blockly.Msg.MENU_SIM_CONFIG_IMPORT = "Upload simulation settings."; // untranslated
Blockly.Msg.MENU_SIM_DELETE_OBJECT_TOOLTIP = "Delete the selected obstacle / color area."; // untranslated
Blockly.Msg.MENU_SIM_IMPORT_TOOLTIP = "Upload your own simulation background image, it will be appended at the end of the background's list."; // untranslated
Blockly.Msg.MENU_SIM_POSE_TOOLTIP = "Resets the positions of all robots and obstacles then clears all drawings."; // untranslated
Blockly.Msg.MENU_SIM_ROBOT_TOOLTIP = "open/close the robot's view"; // untranslated
Blockly.Msg.MENU_SIM_SCENE_TOOLTIP = "change the scene"; // untranslated
Blockly.Msg.MENU_SIM_START_TOOLTIP = "Start your program in the simulation."; // untranslated
Blockly.Msg.MENU_SIM_STOP_TOOLTIP = "Stop your program in the simulation."; // untranslated
Blockly.Msg.MENU_SIM_VALUES_TOOLTIP = "Open/close the sensors' data view."; // untranslated
Blockly.Msg.MENU_SOURCE_CODE_EDITOR = "open source code editor"; // untranslated
Blockly.Msg.MENU_START_BRICK = "run on »$«"; // untranslated
Blockly.Msg.MENU_START_SIM = "open/close simulation view"; // untranslated
Blockly.Msg.MENU_STATE_INFO = "state information"; // untranslated
Blockly.Msg.MENU_STOP_BRICK = "stop program on »$«"; // untranslated
Blockly.Msg.MENU_TOOLBOX = "NEPO-Blocks"; // untranslated
Blockly.Msg.MENU_TOOLBOX_BEGINNER = "NEPO-Blocks beginner"; // untranslated
Blockly.Msg.MENU_TOOLBOX_EXPERT = "NEPO-Blocks expert"; // untranslated
Blockly.Msg.MENU_TUTORIAL = "tutorials"; // untranslated
Blockly.Msg.MENU_TUTORIAL_TOOLTIP = "tutorials"; // untranslated
Blockly.Msg.MENU_USER = "login"; // untranslated
Blockly.Msg.MENU_USERGROUP_LOG_IN = "Log in with user group ..."; // untranslated
Blockly.Msg.MENU_USER_STATE_TOOLTIP = "user info"; // untranslated
Blockly.Msg.MENU_USER_TOOLTIP = "user"; // untranslated
Blockly.Msg.MENU_WLAN_CREDENTIALS = "WLAN credentials"; // untranslated
Blockly.Msg.MENU_ZOOM = "zoom"; // untranslated
Blockly.Msg.MENU_ZOOM_IN = "zoom in"; // untranslated
Blockly.Msg.MENU_ZOOM_OUT = "zoom out"; // untranslated
Blockly.Msg.MENU_ZOOM_RESET = "reset zoom"; // untranslated
Blockly.Msg.MESSAGE_ADDED_USER = "User »$« was added"; // untranslated
Blockly.Msg.MESSAGE_CONFIGURATION_DELETED = "Configuration »$« was deleted"; // untranslated
Blockly.Msg.MESSAGE_EDIT_CHECK = "Your program is now checked!"; // untranslated
Blockly.Msg.MESSAGE_EDIT_SAVE_CONFIGURATION = "Your configuration has been saved"; // untranslated
Blockly.Msg.MESSAGE_EDIT_SAVE_CONFIGURATION_AS = "Your configuration has been saved as »$«"; // untranslated
Blockly.Msg.MESSAGE_EDIT_SAVE_GROUP_AS = "Your group has been created"; // untranslated
Blockly.Msg.MESSAGE_EDIT_SAVE_PROGRAM = "Your program has been saved"; // untranslated
Blockly.Msg.MESSAGE_EDIT_SAVE_PROGRAM_AS = "Your program has been saved as »$«"; // untranslated
Blockly.Msg.MESSAGE_EDIT_START = "Your program »$« will run in a moment!"; // untranslated
Blockly.Msg.MESSAGE_FIRMWARE_ERROR = "The firmware of your robot is newer than that of the Open Roberta Lab. Please tell your server admin, that the server needs to be updated."; // untranslated
Blockly.Msg.MESSAGE_GROUP_DELETED = "Group »$« was deleted"; // untranslated
Blockly.Msg.MESSAGE_INVALID_CONF_NAME = "Please fill in a correct name. A correct name begins with a letter and can only contain letters or numbers. The default name »[robot]basis« can't be used here."; // untranslated
Blockly.Msg.MESSAGE_INVALID_NAME = "Please fill in a correct name. A correct name begins with a letter and can only contain letters or numbers, max. length is 255."; // untranslated
Blockly.Msg.MESSAGE_NOT_AVAILABLE = "Not available."; // untranslated
Blockly.Msg.MESSAGE_PROGRAM_DELETED = "Program »$« was deleted"; // untranslated
Blockly.Msg.MESSAGE_RESTART_ROBOT = "Please reconnect the robot to the Open Roberta Lab."; // untranslated
Blockly.Msg.MESSAGE_ROBOT_CONNECTED = "Your robot »$« is connected"; // untranslated
Blockly.Msg.MESSAGE_ROBOT_DISCONNECTED = "An active robot was disconnected"; // untranslated
Blockly.Msg.MESSAGE_USER_DELETED = "User deleted"; // untranslated
Blockly.Msg.MESSAGE_USER_GROUP_DELETED = "User »$« was deleted"; // untranslated
Blockly.Msg.MESSAGE_USER_LOGIN = "Hello »$«"; // untranslated
Blockly.Msg.MESSAGE_USER_LOGOUT = "You are logged out"; // untranslated
Blockly.Msg.MICROBITBRICK_TOOLTIP = "Represents micro:bit, a pocket-sized codeable computer. There are also inbuilt actors and sensors available, e.g. buttons, display ..."; // untranslated
Blockly.Msg.MICROPHONE_GETSAMPLE_TOOLTIP = "Gets the current reading from the microphone in % (mapped to 0 - 100). If the value is always low, the value has to be multiplied by 10, because the amplification is missing on the hardware."; // untranslated
Blockly.Msg.MIN_ANGLE = "Minimum angle"; // untranslated
Blockly.Msg.MIN_PULSE_WIDTH = "Minimum pulse width"; // untranslated
Blockly.Msg.MODE = "mode"; // untranslated
Blockly.Msg.MODE_ACCELERATION = "acceleration"; // untranslated
Blockly.Msg.MODE_ALTITUDE = "altitude"; // untranslated
Blockly.Msg.MODE_AMBIENTLIGHT = "ambient light"; // untranslated
Blockly.Msg.MODE_ANALOG = "analog value"; // untranslated
Blockly.Msg.MODE_ANGLE = "angle"; // untranslated
Blockly.Msg.MODE_CALIBRATION = "Calibration Value"; // untranslated
Blockly.Msg.MODE_CLAP = "clap"; // untranslated
Blockly.Msg.MODE_CLOSE = "close"; // untranslated
Blockly.Msg.MODE_CO2EQUIVALENT = "CO2 Equivalent"; // untranslated
Blockly.Msg.MODE_COLOR = "color"; // untranslated
Blockly.Msg.MODE_COLOUR = "colour"; // untranslated
Blockly.Msg.MODE_COMPASS = "compass"; // untranslated
Blockly.Msg.MODE_CURRENT = "current"; // untranslated
Blockly.Msg.MODE_DATE = "date"; // untranslated
Blockly.Msg.MODE_DEGREE = "degree"; // untranslated
Blockly.Msg.MODE_DIGITAL = "digital value"; // untranslated
Blockly.Msg.MODE_DISTANCE = "distance"; // untranslated
Blockly.Msg.MODE_GESTURE = "gesture"; // untranslated
Blockly.Msg.MODE_GYRO = "gyroscope"; // untranslated
Blockly.Msg.MODE_HUMIDITY = "humidity"; // untranslated
Blockly.Msg.MODE_IAQ = "Indoor Air Quality (IAQ)"; // untranslated
Blockly.Msg.MODE_IDALL = "IDs (list)"; // untranslated
Blockly.Msg.MODE_IDONE = "ID"; // untranslated
Blockly.Msg.MODE_INFO = "information"; // untranslated
Blockly.Msg.MODE_LATITUDE = "latitude"; // untranslated
Blockly.Msg.MODE_LIGHT = "light"; // untranslated
Blockly.Msg.MODE_LINE = "line"; // untranslated
Blockly.Msg.MODE_LONGITUDE = "longitude"; // untranslated
Blockly.Msg.MODE_MAGNETICFIELD = "mag field"; // untranslated
Blockly.Msg.MODE_MODULATED = "modulated"; // untranslated
Blockly.Msg.MODE_MOISTURE = "moisture"; // untranslated
Blockly.Msg.MODE_NAMEALL = "names (list)"; // untranslated
Blockly.Msg.MODE_NAMEONE = "name"; // untranslated
Blockly.Msg.MODE_OBSTACLE = "obstacle"; // untranslated
Blockly.Msg.MODE_OPEN = "open"; // untranslated
Blockly.Msg.MODE_ORIENTATION = "orientation"; // untranslated
Blockly.Msg.MODE_PM10 = "PM10"; // untranslated
Blockly.Msg.MODE_PM25 = "PM2.5"; // untranslated
Blockly.Msg.MODE_PRESENCE = "presence"; // untranslated
Blockly.Msg.MODE_PRESSED = "pressed"; // untranslated
Blockly.Msg.MODE_PRESSURE = "pressure"; // untranslated
Blockly.Msg.MODE_PULSEHIGH = "pulse time HIGH"; // untranslated
Blockly.Msg.MODE_PULSELOW = "pulse time LOW"; // untranslated
Blockly.Msg.MODE_RATE = "rate"; // untranslated
Blockly.Msg.MODE_RCCODE = "R/C code"; // untranslated
Blockly.Msg.MODE_REFLEXION = "reflected light"; // untranslated
Blockly.Msg.MODE_RGB = "RGB"; // untranslated
Blockly.Msg.MODE_ROTATION = "rotation"; // untranslated
Blockly.Msg.MODE_SENSOR1 = "Light Sensor1"; // untranslated
Blockly.Msg.MODE_SENSOR2 = "Light Sensor2"; // untranslated
Blockly.Msg.MODE_SOUND = "sound"; // untranslated
Blockly.Msg.MODE_SPEED = "speed"; // untranslated
Blockly.Msg.MODE_TEMPERATURE = "temperature"; // untranslated
Blockly.Msg.MODE_TILTED = "tilted"; // untranslated
Blockly.Msg.MODE_TIME = "time"; // untranslated
Blockly.Msg.MODE_UNMODULATED = "unmodulated"; // untranslated
Blockly.Msg.MODE_UVLIGHT = "UV light"; // untranslated
Blockly.Msg.MODE_VALUE = "value"; // untranslated
Blockly.Msg.MODE_VOCEQUIVALENT = "Breathe VOC Equivalent"; // untranslated
Blockly.Msg.MODE_WORD = "word"; // untranslated
Blockly.Msg.MODE_X = "X-value"; // untranslated
Blockly.Msg.MODE_Y = "Y-value"; // untranslated
Blockly.Msg.MODE_Z = "Z-value"; // untranslated
Blockly.Msg.MOISTURE_TOOLTIP = "Represents a moisture sensor."; // untranslated
Blockly.Msg.MOTIONKIT = "MotionKit"; // untranslated
Blockly.Msg.MOTIONKIT_DUAL_TOOLTIP = "Sets each MotionKit motor to the specified direction."; // untranslated
Blockly.Msg.MOTIONKIT_SINGLE_TOOLTIP = "Sets the selected MotionKit motor/motors to the specified direction."; // untranslated
Blockly.Msg.MOTION_TOOLTIP = "Represents a motion sensor."; // untranslated
Blockly.Msg.MOTOR = "motor"; // untranslated
Blockly.Msg.MOTORDIFF_ON_FOR_TOOLTIP = "Starts the robot with specific speed and stops after specific distance."; // untranslated
Blockly.Msg.MOTORDIFF_ON_TOOLTIP = "Starts the robot with specific speed."; // untranslated
Blockly.Msg.MOTORDIFF_STOP_TOOLTIP = "Stops the robot."; // untranslated
Blockly.Msg.MOTORDIFF_TURN_FOR_TOOLTIP = "Turns the robot for number of degrees."; // untranslated
Blockly.Msg.MOTORDIFF_TURN_TOOLTIP = "Turns the robot."; // untranslated
Blockly.Msg.MOTORS_ON_TOOLTIP_CALLIOPE = "Turns motor A and B on with a specific power."; // untranslated
Blockly.Msg.MOTORS_ON_TOOLTIP_CALLIOPE_CB = "Turns both motors on with a specific power. Power can be positiv or negativ for reverse direction."; // untranslated
Blockly.Msg.MOTORS_STOP_TOOLTIP = "Stops both motors, A and B."; // untranslated
Blockly.Msg.MOTOR_ARDU_TOOLTIP = "Represents a Bot'n Roll chassis motor."; // untranslated
Blockly.Msg.MOTOR_BACKWARD = "backwards"; // untranslated
Blockly.Msg.MOTOR_BIG = "big"; // untranslated
Blockly.Msg.MOTOR_BIG_TOOLTIP = "Represents a big motor."; // untranslated
Blockly.Msg.MOTOR_BRAKE = "brake"; // untranslated
Blockly.Msg.MOTOR_DEGREE = "degree"; // untranslated
Blockly.Msg.MOTOR_DISTANCE = "distance cm"; // untranslated
Blockly.Msg.MOTOR_DRIVE = "drive"; // untranslated
Blockly.Msg.MOTOR_FLOAT = "float"; // untranslated
Blockly.Msg.MOTOR_FOREWARD = "forwards"; // untranslated
Blockly.Msg.MOTOR_GETPOWER_TOOLTIP = "Gets current power of this motor."; // untranslated
Blockly.Msg.MOTOR_LEFT = "left"; // untranslated
Blockly.Msg.MOTOR_MIDDLE = "middle"; // untranslated
Blockly.Msg.MOTOR_MIDDLE_TOOLTIP = "Represents a middle motor."; // untranslated
Blockly.Msg.MOTOR_NONE = "none"; // untranslated
Blockly.Msg.MOTOR_ON_FOR_TOOLTIP = "Turns motor on and stops motor after execution of rotations/degrees."; // untranslated
Blockly.Msg.MOTOR_ON_FOR_TOOLTIP_MS = "Turns motor on and stops motor after execution after time has passed."; // untranslated
Blockly.Msg.MOTOR_ON_FOR_TOOLTIP_RPM = "Turns motor on at speed in rpms (rotation per minute) and stops motor after execution of rotations/degrees."; // untranslated
Blockly.Msg.MOTOR_ON_FOR_TOOLTIP_SERVO = "Sets the servo motor to a specific position in degrees."; // untranslated
Blockly.Msg.MOTOR_ON_TOOLTIP = "Turns motor on with specific power."; // untranslated
Blockly.Msg.MOTOR_ON_TOOLTIP_CALLIOPE = "Turns motor A, B or A+B on with a specific power."; // untranslated
Blockly.Msg.MOTOR_ON_TOOLTIP_CALLIOPE_CB = "Turns left or right motor on with a specific power. Power can be positiv or negativ for reverse direction."; // untranslated
Blockly.Msg.MOTOR_OTHER = "other power consumer"; // untranslated
Blockly.Msg.MOTOR_PAN = "pan"; // untranslated
Blockly.Msg.MOTOR_PORT = "motor port"; // untranslated
Blockly.Msg.MOTOR_PORT_ARDUINO = "motor 28BYJ-48 port"; // untranslated
Blockly.Msg.MOTOR_REGULATION = "regulation"; // untranslated
Blockly.Msg.MOTOR_RIGHT = "right"; // untranslated
Blockly.Msg.MOTOR_ROTATION = "rotation"; // untranslated
Blockly.Msg.MOTOR_ROTATION_PER_MINUTE = "rpm"; // untranslated
Blockly.Msg.MOTOR_ROTATION_REVERSE = "direction of rotation"; // untranslated
Blockly.Msg.MOTOR_SETPOWER_TOOLTIP = "Sets power of this motor."; // untranslated
Blockly.Msg.MOTOR_SIDE = "side"; // untranslated
Blockly.Msg.MOTOR_SPEED = "speed %"; // untranslated
Blockly.Msg.MOTOR_SPEED_0 = "Motor Speed is 0!"; // untranslated
Blockly.Msg.MOTOR_STEER = "steer"; // untranslated
Blockly.Msg.MOTOR_STOP = "stop"; // untranslated
Blockly.Msg.MOTOR_STOP_TOOLTIP = "Stops this motor."; // untranslated
Blockly.Msg.MOTOR_TILT = "tilt"; // untranslated
Blockly.Msg.MOTOR_TOOLTOP = "Represents a motor."; // untranslated
Blockly.Msg.MOTOR_TURN = "turn"; // untranslated
Blockly.Msg.NAO_ABSOLUTE = "absolute"; // untranslated
Blockly.Msg.NAO_ACCELEROMETER = "accelerometer"; // untranslated
Blockly.Msg.NAO_ACCELEROMETER_TOOLTIP = "Get the current reading from the accelerometer in the given direction"; // untranslated
Blockly.Msg.NAO_ANIMATION_TOOLTIP = "Perform the selected animation. TaiChi is a complex and artistic set of moves. Blink will only make the robot blink by using its LEDs. The wink and wipe forehead animation can be performed while siting and standing."; // untranslated
Blockly.Msg.NAO_ANSWER = "answer"; // untranslated
Blockly.Msg.NAO_APPLYPOSTURE = "let NAO"; // untranslated
Blockly.Msg.NAO_APPLYPOSTURE_TOOLTIP = "Robot will take the selected posture or position. Use the dropdown menu to choose one."; // untranslated
Blockly.Msg.NAO_AUTONOMOUS = "turn autonomous behaviour"; // untranslated
Blockly.Msg.NAO_AUTONOMOUS_TOOLTIP = "Turn the robots autonomous behaviour on or off. While 'on' the robot will react to sounds, move slightly from side to side and try to track faces. Turn it off if this behaviour interrupts your program."; // untranslated
Blockly.Msg.NAO_BLINK = "blink"; // untranslated
Blockly.Msg.NAO_CAMERA = "camera"; // untranslated
Blockly.Msg.NAO_CAMERA_BOTTOM = "bottom"; // untranslated
Blockly.Msg.NAO_CAMERA_TOP = "top"; // untranslated
Blockly.Msg.NAO_FACE_GET_INFORMATION_TOOLTIP = "Returns additional information about the given detected in an array with following values: [XAngle, YAngle, XSize, YSize, Heading], please note that all values are given in camera angles."; // untranslated
Blockly.Msg.NAO_FILENAME = "filename"; // untranslated
Blockly.Msg.NAO_FORGETFACEOF = "forget face of"; // untranslated
Blockly.Msg.NAO_FORGETFACE_TOOLTIP = "Delete a face previously saved under a given name from the vision recognition database on the robot. "; // untranslated
Blockly.Msg.NAO_FRAME = "frame"; // untranslated
Blockly.Msg.NAO_FRAME_TORSO = "torso"; // untranslated
Blockly.Msg.NAO_FRAME_WORLD = "world"; // untranslated
Blockly.Msg.NAO_FSR = "force sensitive resistor"; // untranslated
Blockly.Msg.NAO_GETLANGUAGE_TOOLTIP = "Get the active language. This is the language the robot is currently using for Text to Speech and Voice recognition."; // untranslated
Blockly.Msg.NAO_GETVOLUME_TOOLTIP = "Get current volume."; // untranslated
Blockly.Msg.NAO_GYROMETER = "gyrometer"; // untranslated
Blockly.Msg.NAO_GYROMETER_TOOLTIP = "Get the current reading from the gyrometer in the given direction."; // untranslated
Blockly.Msg.NAO_HAND = "hand"; // untranslated
Blockly.Msg.NAO_HAND_TOOLTIP = "Open or close a single hand (wrist) of the robot."; // untranslated
Blockly.Msg.NAO_HEADSENSOR = "head sensor"; // untranslated
Blockly.Msg.NAO_INTENSITY = "intensity"; // untranslated
Blockly.Msg.NAO_LEARNFACEOF = "learn face of"; // untranslated
Blockly.Msg.NAO_LEARNFACE_TOOLTIP = "Learn and save a face under a given name in the vision recognition database on the robot."; // untranslated
Blockly.Msg.NAO_LED = "LED"; // untranslated
Blockly.Msg.NAO_LEDOFF_TOOLTIP = "Turn the selected LED(s) off."; // untranslated
Blockly.Msg.NAO_LEDRESET_TOOLTIP = "Reset the selected LEDs to their original state regarding colour and intensity."; // untranslated
Blockly.Msg.NAO_LED_ALL = "all"; // untranslated
Blockly.Msg.NAO_LED_CHEST = "chest"; // untranslated
Blockly.Msg.NAO_LED_EAR = "ear"; // untranslated
Blockly.Msg.NAO_LED_EARS = "ears"; // untranslated
Blockly.Msg.NAO_LED_EYE = "eye"; // untranslated
Blockly.Msg.NAO_LED_EYES = "eyes"; // untranslated
Blockly.Msg.NAO_LED_FOOT = "foot"; // untranslated
Blockly.Msg.NAO_LED_HEAD = "head"; // untranslated
Blockly.Msg.NAO_LED_TOOLTIP = "Set the color of selected LED(s). Eyes and feet LEDs are available."; // untranslated
Blockly.Msg.NAO_LOOKAT = "look at"; // untranslated
Blockly.Msg.NAO_MARK_GET_INFORMATION_TOOLTIP = "Returns additional information about the given NAO mark in an array with following values: [XAngle, YAngle, XSize, YSize, Heading], please note that all values are given in camera angles."; // untranslated
Blockly.Msg.NAO_MOVE = "move"; // untranslated
Blockly.Msg.NAO_MOVEJOINT_TOOLTIP = "Move a single joint of the robot. A relative movement means that the current position of the selected joint is used to calculate the new position. Be aware that every joint has different limits. Therefore the input range for the degerees varies."; // untranslated
Blockly.Msg.NAO_PART_ARM = "arm"; // untranslated
Blockly.Msg.NAO_PART_ARMS = "arms"; // untranslated
Blockly.Msg.NAO_PART_BODY = "body"; // untranslated
Blockly.Msg.NAO_PART_HEAD = "head"; // untranslated
Blockly.Msg.NAO_PART_LEG = "leg"; // untranslated
Blockly.Msg.NAO_PART_LEGS = "legs"; // untranslated
Blockly.Msg.NAO_PERFORM = "perform"; // untranslated
Blockly.Msg.NAO_PHRASE = "phrase"; // untranslated
Blockly.Msg.NAO_PLAYFILE_TOOLTIP = "Plays a sound file from the robot. Enter the name of the file. The file needs to be transferred to the robot beforehand."; // untranslated
Blockly.Msg.NAO_PLAY_FILE = "play file"; // untranslated
Blockly.Msg.NAO_POINTAT = "point at"; // untranslated
Blockly.Msg.NAO_POINTLOOKAT_TOOLTIP = "Robot points or looks at a given position. The robot will move one of its hands or the head. Select the frame that is the point of reference. The values are entered in centimeter. Refer to the wiki for more information about the coordinate systems."; // untranslated
Blockly.Msg.NAO_POSTURE_CROUCH = "crouch"; // untranslated
Blockly.Msg.NAO_POSTURE_LYINGBACK = "lie back"; // untranslated
Blockly.Msg.NAO_POSTURE_LYINGBELLY = "lie belly"; // untranslated
Blockly.Msg.NAO_POSTURE_REST = "rest"; // untranslated
Blockly.Msg.NAO_POSTURE_SIT = "sit"; // untranslated
Blockly.Msg.NAO_POSTURE_SITRELAX = "sit relaxed"; // untranslated
Blockly.Msg.NAO_POSTURE_STAND = "stand"; // untranslated
Blockly.Msg.NAO_POSTURE_STANDINIT = "stand init"; // untranslated
Blockly.Msg.NAO_POSTURE_STANDZERO = "stand zero"; // untranslated
Blockly.Msg.NAO_QQVGA = "160*120"; // untranslated
Blockly.Msg.NAO_QVGA = "320*240"; // untranslated
Blockly.Msg.NAO_RANDOMEYES = "random eyes"; // untranslated
Blockly.Msg.NAO_RANDOMEYES_TOOLTIP = "The color of the eyes is changed randomly for a specified amount of time entered in milliseconds."; // untranslated
Blockly.Msg.NAO_RASTA = "rasta"; // untranslated
Blockly.Msg.NAO_RASTA_TOOLTIP = "The color of the eyes is changed between green, yellow and red for a specified amount of time entered in milliseconds."; // untranslated
Blockly.Msg.NAO_RECOGNIZEWORD = "speech recognizer of"; // untranslated
Blockly.Msg.NAO_RECOGNIZEWORD_TOOLTIP = "Returns a word from the given list when recognized by NAO"; // untranslated
Blockly.Msg.NAO_RECORDVIDEO = "record video"; // untranslated
Blockly.Msg.NAO_RECORDVIDEO_TOOLTIP = "Records a video and saves it on the robot. Access the robots file system to view the video."; // untranslated
Blockly.Msg.NAO_RELATIVE = "relative"; // untranslated
Blockly.Msg.NAO_RESOLUTION = "resolution"; // untranslated
Blockly.Msg.NAO_SETINTENSITY_TOOLTIP = "Set the intensity of selected LED(s) in a range from 0 to 100. Ears, head and chest LEDs are available"; // untranslated
Blockly.Msg.NAO_SETLANGUAGE_TOOLTIP = "Set the language. Be aware that it is necessary to download the language pack before you can use it. For more information refer to the manual of your robot."; // untranslated
Blockly.Msg.NAO_SETVOLUME_TOOLTIP = "Set the volume in a range from 0 to 100."; // untranslated
Blockly.Msg.NAO_STIFFNESS = "lock motors"; // untranslated
Blockly.Msg.NAO_STIFFNESS_TOOLTIP = "The stiffness of the selected body part of the robot will be turned on or off. Be aware that releasing the leg motors while the robot is standing may result in robot collapsing."; // untranslated
Blockly.Msg.NAO_STOP = "stop movement"; // untranslated
Blockly.Msg.NAO_STOP_TOOLTIP = "The robot immediately stops all movement. Be aware that this can lead to situations where downfall is possible."; // untranslated
Blockly.Msg.NAO_TAI_CHI = "tai chi"; // untranslated
Blockly.Msg.NAO_TAKEPICTURE = "take picture"; // untranslated
Blockly.Msg.NAO_TAKEPICTURE_TOOLTIP = "Takes a picture and saves it on the robot. Access the robots file system to view the picture."; // untranslated
Blockly.Msg.NAO_TOUCHSENSOR_TOOLTIP = "Is true if the selected touchsensor on the robot was touched."; // untranslated
Blockly.Msg.NAO_TURN_TOOLTIP = "Turns the robot for number of degrees. Only enter positive values and use the dropdown to select the direction. It is possible to enter values up to 360 degrees."; // untranslated
Blockly.Msg.NAO_VGA = "640*480"; // untranslated
Blockly.Msg.NAO_WALK = "walk"; // untranslated
Blockly.Msg.NAO_WALKTO = "walk to"; // untranslated
Blockly.Msg.NAO_WALKTO_TOOLTIP = "The robot walks to the given position. The values are entered in cm and radians and are based on the coordinate system in NAOs body. Please refer to the wiki for more information on the coordinate system and how to calculate the coordinates."; // untranslated
Blockly.Msg.NAO_WALK_ASYNC_TOOLTIP = "Makes the robot walk infinitely"; // untranslated
Blockly.Msg.NAO_WALK_TOOLTIP = "Makes the robot walk a distance entered in cm. Distances below 10cm might lead to no movement at all. Depending on your robot and the surface the robots is walking on the distance might not be exact."; // untranslated
Blockly.Msg.NAO_WAVE = "wave"; // untranslated
Blockly.Msg.NAO_WIPE_FOREHEAD = "wipe forehead"; // untranslated
Blockly.Msg.NEW_VARIABLE = "Яңы үҙгәреүсән...";
Blockly.Msg.NEW_VARIABLE_TITLE = "Яңы үҙгәреүсәндең исеме:";
Blockly.Msg.NN_ADD_RAW_DATA = "add raw data for later feature extraction"; // untranslated
Blockly.Msg.NN_ADD_RAW_DATA_TOOLTIP = "add raw data (multiple times). Then extract the input features from it and add that to the trainings data"; // untranslated
Blockly.Msg.NN_ADD_TRAININGS_DATA = "add to trainings data"; // untranslated
Blockly.Msg.NN_ADD_TRAININGS_DATA_TOOLTIP = "take raw data, execute feature extraction and add the data from feature extraction to the collection of training data for a class"; // untranslated
Blockly.Msg.NN_CLASSIFY = "classifiy"; // untranslated
Blockly.Msg.NN_CLASSIFY_TOOLTIP = "use the trained neural network and data from feature extraction to classify and return the probabiliy for each class"; // untranslated
Blockly.Msg.NN_CLASS_NUMBER = "class #"; // untranslated
Blockly.Msg.NN_CLASS_PROBABILITIES = "probabilities"; // untranslated
Blockly.Msg.NN_INIT_RAW_DATA = "initialize raw data"; // untranslated
Blockly.Msg.NN_INIT_RAW_DATA_TOOLTIP = "clear raw data memory. Then add raw data multiple times, extract the input features from it and add that to the trainings data"; // untranslated
Blockly.Msg.NN_IO_NEURON_NAMES_INVALID = "names of input/output neurons must be all different and valid (start with letter, no spaces, ...)"; // untranslated
Blockly.Msg.NN_MAX_NUMBER_OF_NEURONS = "max neurons"; // untranslated
Blockly.Msg.NN_NUMBER_INPUT_NEURONS = "# input neurons"; // untranslated
Blockly.Msg.NN_NUMBER_OF_CLASSES = "# classes"; // untranslated
Blockly.Msg.NN_RAW_DATA = "raw value"; // untranslated
Blockly.Msg.NN_SETUP = "setup the neural network"; // untranslated