forked from RaspberryPiFoundation/blockly
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathca.js
More file actions
2303 lines (2299 loc) · 191 KB
/
Copy pathca.js
File metadata and controls
2303 lines (2299 loc) · 191 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.ca');
goog.require('Blockly.Msg');
Blockly.Msg.ABOUT = "about"; // untranslated
Blockly.Msg.ACCELERATION_TOOLTIP = "Obté el valor d'acceleració en mil·li-gravetats.";
Blockly.Msg.ACCELEROMETER_ROTATION_TOOLTIP = "Get the tilt or rotations in degrees."; // untranslated
Blockly.Msg.ACCELEROMETER_TOOLTIP = "Represents an accelerometer."; // untranslated
Blockly.Msg.ACTION_AIFES = "Aifes"; // 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_DIFFERENTIALDRIVE = "differential drive"; // untranslated
Blockly.Msg.ACTION_DIGITALIN = "actuator digital"; // untranslated
Blockly.Msg.ACTION_DISPLAY = "display"; // untranslated
Blockly.Msg.ACTION_ENCODER = "encoder motor"; // 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_LCD_MBOT2_BRUSH = "set display brush"; // untranslated
Blockly.Msg.ACTION_LCD_MBOT2_BRUSH_TOOLTIP = "Change the color of the next display action"; // 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_OMNIDRIVE = "omnidrive"; // untranslated
Blockly.Msg.ACTION_PLAY = "play"; // untranslated
Blockly.Msg.ACTION_PLAY_RECORDING_TOOLTIP = "Plays your last recorded sounds."; // untranslated
Blockly.Msg.ACTION_PLAY_RECORDING_TOOLTIP_THYMIO = "Play sound Rx.wav from the SD card, where >>x<< is the name of the recording supplied. An SD card is required!"; // 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_RGBLED_MBOT2 = "RGB LEDs"; // 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 = "Bloc per a una activitat addicional";
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 = "Representa qualsevol actor.";
Blockly.Msg.ADDRESS = "address"; // untranslated
Blockly.Msg.ADD_COMMENT = "Afegeix un comentari";
Blockly.Msg.AIFES = "Aifes"; // untranslated
Blockly.Msg.AIFES_ADD_CLASSIFY_DATA = "add classify data"; // untranslated
Blockly.Msg.AIFES_ADD_CLASSIFY_DATA_TOOLTIP = "add classify data (multiple times). Then extract the input features from it and add that to the classifiy data"; // untranslated
Blockly.Msg.AIFES_ADD_RAW_DATA = "add to training dataset"; // untranslated
Blockly.Msg.AIFES_ADD_RAW_DATA_TOOLTIP = "add training data (multiple times). Then extract the input features from it and add that to the trainings data"; // untranslated
Blockly.Msg.AIFES_ADD_TARGET_DATA = "add to target data"; // untranslated
Blockly.Msg.AIFES_ADD_TARGET_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.AIFES_CLASSIFY = "classify"; // untranslated
Blockly.Msg.AIFES_CLASSIFY_TOOLTIP = "use the trained neural network and data from feature extraction to classify and return the probabiliy for each class"; // untranslated
Blockly.Msg.AIFES_CLASS_NUMBER = "class number"; // untranslated
Blockly.Msg.AIFES_CLASS_PROBABILITIES = "probabilities"; // untranslated
Blockly.Msg.AIFES_CONFIGURATION_ERROR_WRONG_VALUES = "One of the values in Aifes block is wrong"; // untranslated
Blockly.Msg.AIFES_DATASET = "dataset"; // untranslated
Blockly.Msg.AIFES_EPOCHS = "epochs"; // untranslated
Blockly.Msg.AIFES_FNN_LAYERS = "number layers"; // untranslated
Blockly.Msg.AIFES_INIT_CLASSIFY_DATA = "initialize classify dataset"; // untranslated
Blockly.Msg.AIFES_INIT_CLASSIFY_DATA_TOOLTIP = "clear classify data memory. Then add raw data multiple times, extract the input features from it and add that to the classify data"; // untranslated
Blockly.Msg.AIFES_INIT_RAW_DATA = "initialize training dataset"; // untranslated
Blockly.Msg.AIFES_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.AIFES_LEARNINGFUNCTION = "activations function"; // untranslated
Blockly.Msg.AIFES_LEARNINGRATE = "learning rate"; // untranslated
Blockly.Msg.AIFES_LOSS = "loss"; // untranslated
Blockly.Msg.AIFES_MAX_NUMBER_OF_NEURONS = "max neurons"; // untranslated
Blockly.Msg.AIFES_MAX_WEIGHT = "max weight"; // untranslated
Blockly.Msg.AIFES_MIN_WEIGHT = "min weight"; // untranslated
Blockly.Msg.AIFES_MOMENTUM = "momentum"; // untranslated
Blockly.Msg.AIFES_NUMBER_HIDDENLAYERS_NEURONS = "number hidden layers"; // untranslated
Blockly.Msg.AIFES_NUMBER_INPUT_NEURONS = "number input neurons"; // untranslated
Blockly.Msg.AIFES_NUMBER_OF_CLASSES = "number classes"; // untranslated
Blockly.Msg.AIFES_NUMBER_OUTPUT_NEURONS = "number output neurons"; // untranslated
Blockly.Msg.AIFES_OPTIMIER = "optimizer"; // untranslated
Blockly.Msg.AIFES_RAW_DATA = "data"; // untranslated
Blockly.Msg.AIFES_SETUP = "setup the neural network"; // untranslated
Blockly.Msg.AIFES_SETUP_TOOLTIP = "define properties of a neural network, which can classify data"; // untranslated
Blockly.Msg.AIFES_TRAIN = "train"; // untranslated
Blockly.Msg.AIFES_TRAIN_TOOLTIP = "train the neural network with the trainings data assembled"; // untranslated
Blockly.Msg.AIFES_WEIGHT = "weight"; // untranslated
Blockly.Msg.ALL_RGBLED = "RGB LED all"; // untranslated
Blockly.Msg.ANALOG = "anàleg";
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 = "Representa una placa de Bot 'n Roll amb actuadors i sensors connectats. També té actuadors i sensors interns, com ara tecles, pantalla...";
Blockly.Msg.AREA = "area"; // untranslated
Blockly.Msg.AUTH = "Si us plau, autoritzeu que aquesta aplicació pugui desar la vostra feina i que la pugueu compartir.";
Blockly.Msg.BACKWARD = "backward"; // untranslated
Blockly.Msg.BACK_LEFT = "back left"; // untranslated
Blockly.Msg.BACK_RIGHT = "back right"; // untranslated
Blockly.Msg.BALLDETECTOR_TOOLTIP = "Represents a ball detector for the camera."; // untranslated
Blockly.Msg.BATTERY_GETSAMPLE_TOOLTIP = "Gets the current voltage from the battery."; // untranslated
Blockly.Msg.BELOW = "below"; // untranslated
Blockly.Msg.BLE_ADAPTER_DISABLED = "There is no Bluetooth adapter on your device.<br>Check out the <a href='https://wiki.open-roberta.org/' target='_blank'>Open Roberta Wiki</a> for more information under: Spike Prime / Robot Inventor -> Pybricks -> Set Up."; // untranslated
Blockly.Msg.BLE_DOWNLOAD_IN_PROGRESS = "The system is busy uploading your program to the robot. Wait a couple of seconds before uploading again."; // untranslated
Blockly.Msg.BLE_ERROR_CAPABILITIES = "Looks like the firmware version of your robot is not compatible with the Open Roberta Lab. Check out the <a href='https://wiki.open-roberta.org/' target='_blank'>Open Roberta Wiki</a> for more information under: Spike Prime / Robot Inventor -> Pybricks -> Set Up."; // untranslated
Blockly.Msg.BLE_ERROR_COMMUNICATION = "Whoops something went wrong. Try restarting your robot and upload the program again."; // untranslated
Blockly.Msg.BLE_ERROR_DEVICE_BUSY = "Looks like your robot is already connected to another instance of the Open Roberta Lab (in another browser tab?).<br> Try to restart your robot or close the other tab."; // untranslated
Blockly.Msg.BLE_ERROR_PROGRAM_SIZE = "The program is too long for the Spike Prime. Check out the <a href='https://wiki.open-roberta.org/' target='_blank'>Open Roberta Wiki</a> for more information under: Spike Prime / Robot Inventor -> Pybricks"; // untranslated
Blockly.Msg.BLE_ERROR_STOP = "Stopping the program execution does not work, your robot is maybe disconnected?<br>You can always use the Center Button on the hub to stop the program yourself."; // untranslated
Blockly.Msg.BLE_FEATURE_DISABLED = "Looks like Web Bluetooth is not enabled.<br>Check out the <a href='https://wiki.open-roberta.org/' target='_blank'>Open Roberta Wiki</a> for more information under: Spike Prime / Robot Inventor -> Pybricks -> Set Up."; // untranslated
Blockly.Msg.BLE_NOT_SUPPORTED = "Your browser does not support Web Bluetooth.<br>Check out the <a href='https://wiki.open-roberta.org/' target='_blank'>Open Roberta Wiki</a> for more information under: Spike Prime / Robot Inventor -> Pybricks -> Set Up."; // untranslated
Blockly.Msg.BLE_NO_DEVICE_SELECTED = "Looks like you didn't select a device.<br>If your hub was not listed, check out the <a href='https://wiki.open-roberta.org/' target='_blank'>Open Roberta Wiki</a> for more information under: Spike Prime / Robot Inventor -> Pybricks -> Set Up."; // 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 = "ambdós";
Blockly.Msg.BOTH_LED = "LED both"; // untranslated
Blockly.Msg.BOTTOM_LEFT = "bottom left"; // untranslated
Blockly.Msg.BOTTOM_RIGHT = "bottom right"; // untranslated
Blockly.Msg.BOX_ID = "Device ID"; // untranslated
Blockly.Msg.BRICKLIGHT = "Llum del bloc EV3";
Blockly.Msg.BRICKLIGHT_BLUE = "blau";
Blockly.Msg.BRICKLIGHT_COLOR = "color";
Blockly.Msg.BRICKLIGHT_DOUBLE_FLASH = "doble intermitència";
Blockly.Msg.BRICKLIGHT_FLASH = "intermitència";
Blockly.Msg.BRICKLIGHT_GREEN = "verd";
Blockly.Msg.BRICKLIGHT_OFF_TOOLTIP = "Apaga els llums del bloc EV3.";
Blockly.Msg.BRICKLIGHT_ON = "encès";
Blockly.Msg.BRICKLIGHT_ON_TOOLTIP = "Encén els llums del bloc EV3.";
Blockly.Msg.BRICKLIGHT_ORANGE = "taronja";
Blockly.Msg.BRICKLIGHT_RED = "vermell";
Blockly.Msg.BRICKLIGHT_RESET_TOOLTIP = "Reinicia els llums del bloc EV3. Torna a la configuració per defecte: verd intermitent.";
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 = "distància entre rodes";
Blockly.Msg.BRICK_USERNAME = "user name"; // untranslated
Blockly.Msg.BRICK_WHEEL_DIAMETER = "diàmetre de la roda";
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 = "Comparteix";
Blockly.Msg.BUTTON_DO_UPLOAD_GALLERY = "Upload »$« to the gallery"; // untranslated
Blockly.Msg.BUTTON_EMPTY_LIST = "Buida la llista";
Blockly.Msg.BUZZER_TOOLTIP = "Represents a buzzer."; // untranslated
Blockly.Msg.CALLIBOT_TOOLTIP = "Represents the Calli:bot extension board."; // untranslated
Blockly.Msg.CALLIOPEBRICK_TOOLTIP = "Representa Calliope, un ordinador programable de butxaca. També té actuadors i sensors inclosos, per exemple botos, pantalla...";
Blockly.Msg.CAMERA_TOOLTIP = "Represent a camera."; // 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 = "centrar";
Blockly.Msg.CHANGE_VALUE_TITLE = "Canvia valor:";
Blockly.Msg.CHAT = "Xateja amb el teu col·laborador escrivint en aquest quadre!";
Blockly.Msg.CIRCLE = "circle"; // untranslated
Blockly.Msg.CLEAN_UP = "Clean up Blocks"; // untranslated
Blockly.Msg.CLEAR = "clear"; // untranslated
Blockly.Msg.COLLAPSE_ALL = "Contraure blocs";
Blockly.Msg.COLLAPSE_BLOCK = "Contraure bloc";
Blockly.Msg.COLON = "colon"; // untranslated
Blockly.Msg.COLORDETECTOR_TOOLTIP = "Represents a color detector for the camera."; // untranslated
Blockly.Msg.COLOUR_AMBIENTLIGHT_GETSAMPLE_TOOLTIP = "Gets the current ambient light reading from the sensor."; // untranslated
Blockly.Msg.COLOUR_BLEND_COLOUR1 = "color 1";
Blockly.Msg.COLOUR_BLEND_COLOUR2 = "color 2";
Blockly.Msg.COLOUR_BLEND_HELPURL = "http://meyerweb.com/eric/tools/color-blend/"; // untranslated
Blockly.Msg.COLOUR_BLEND_RATIO = "proporció";
Blockly.Msg.COLOUR_BLEND_TITLE = "barreja";
Blockly.Msg.COLOUR_BLEND_TOOLTIP = "Barreja dos colors amb una proporció donada (0,0 - 1,0).";
Blockly.Msg.COLOUR_COLOUR_GETSAMPLE_TOOLTIP = "Gets the current colour reading from the sensor."; // untranslated
Blockly.Msg.COLOUR_COMPARE_TOOLTIP = "Compares two colors based on their hue values while considering a specified tolerance range [0°-360°]."; // untranslated
Blockly.Msg.COLOUR_GETSAMPLE_TOOLTIP = "Gets the current reading from the colour sensor."; // untranslated
Blockly.Msg.COLOUR_HSV_RANGE = "HSV range"; // untranslated
Blockly.Msg.COLOUR_LIGHT_GETSAMPLE_TOOLTIP = "Gets the current brightness reading from the sensor."; // untranslated
Blockly.Msg.COLOUR_PICKER_HELPURL = "https://ca.wikipedia.org/wiki/Color";
Blockly.Msg.COLOUR_PICKER_TOOLTIP = "Escolliu un color de la paleta.";
Blockly.Msg.COLOUR_RANDOM_HELPURL = "http://randomcolour.com"; // untranslated
Blockly.Msg.COLOUR_RANDOM_TITLE = "color aleatori";
Blockly.Msg.COLOUR_RANDOM_TOOLTIP = "Escolliu un color a l'atzar.";
Blockly.Msg.COLOUR_RGB_BLUE = "blau";
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 = "verd";
Blockly.Msg.COLOUR_RGB_HELPURL = "http://www.december.com/html/spec/colorper.html"; // untranslated
Blockly.Msg.COLOUR_RGB_RED = "vermell";
Blockly.Msg.COLOUR_RGB_TITLE = "color amb";
Blockly.Msg.COLOUR_RGB_TOOLTIP = "Crea un color amb quantitats específiques de vermell, verd i blau. Tots els valors han d'estar entre 0 i 255.";
Blockly.Msg.COLOUR_RGB_WHITE = "blanc";
Blockly.Msg.COLOUR_SEGMENT = "colour segment"; // untranslated
Blockly.Msg.COLOUR_THRESHOLD = "colour threshold"; // untranslated
Blockly.Msg.COLOUR_TOOLTIP = "Representa el sensor de color de l'EV3.";
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 = "Representa el sensor de brúixola.";
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_ACTUATOR_WRONG = "The defined actuator port/name is wrong. Please check this in the configuration tab!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_DIFFDRIVE_NOT_UNIQUE = "This configuration block may only occur once."; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MISSING_PIN = "The pin used by this component does not exist!"; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_MOTORS_ROTATION_DIRECTION = "La direcció de gir dels motores dret i esquerra és diferent!";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_LEFT_MISSING = "El motor esquerra falta a la configuració!";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_LEFT_UNREGULATED = "El motor esquerra no està regulat!";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_MISSING = "Falta el motor del port indicat!";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_RIGHT_MISSING = "El motor dret falta a la configuració!";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_RIGHT_UNREGULATED = "El motor dret no està regulat!";
Blockly.Msg.CONFIGURATION_ERROR_MULTIPLE_LEFT_MOTORS = "Tens més d'un motor esquerra a la configuració!";
Blockly.Msg.CONFIGURATION_ERROR_MULTIPLE_RIGHT_MOTORS = "Tens més d'un motor dret a la configuració!";
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 = "Aquest sensor no està connectat al port!";
Blockly.Msg.CONFIGURATION_ERROR_SENSOR_WRONG = "Sensor erròni connectat al port!";
Blockly.Msg.CONFIGURATION_ERROR_TIMER_CONFLICT = "These configuration blocks use the same internal timers and all three cannot be used together."; // untranslated
Blockly.Msg.CONFIGURATION_ERROR_TOO_MANY_SUB_SENSORS = "Too many sensors are connected to this block."; // 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 = "Fes clic aquí per esborrar tots els programes seleccionats.";
Blockly.Msg.CONFLIST_DELETE_TOOLTIP = "Fes clic aquí per esborrar la configuració del teu robot.";
Blockly.Msg.CONFLIST_LOAD_TOOLTIP = "Fes clic aquí per carregar la configuració del teu robot a l'entorn de configuració. ";
Blockly.Msg.CONNECTION_CHANNEL = "channel"; // untranslated
Blockly.Msg.CONNECTION_CHANNEL_RECEIVE_TOOLTIP = "Receive the last message sent to the specified channel."; // untranslated
Blockly.Msg.CONNECTION_CHANNEL_SEND_TOOLTIP = "Sends a message to another robot over the specified channel."; // untranslated
Blockly.Msg.CONNECTION_CHECK = "Està activada la connexió al robot %1 ?";
Blockly.Msg.CONNECTION_CHECK_TOOLTIP = "Comprova si la connexió al robot està activada.";
Blockly.Msg.CONNECTION_CONNECT = "Connectar al robot anomenat";
Blockly.Msg.CONNECTION_FROM_CONNECTION = "des de la connexió";
Blockly.Msg.CONNECTION_FROM_ROBOT = "des del robot";
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_MESSAGE = "message"; // untranslated
Blockly.Msg.CONNECTION_OVER_CHANNEL = "a través del canal";
Blockly.Msg.CONNECTION_POWER = "with strength"; // untranslated
Blockly.Msg.CONNECTION_PROTOCOL_BLUETOOTH = "Bluetooth";
Blockly.Msg.CONNECTION_RECEIVED_DATA = "dades rebudes";
Blockly.Msg.CONNECTION_RECEIVE_TOOLTIP = "Espera un missatge del robot declarat a la connexió.";
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 = "envia un missatge";
Blockly.Msg.CONNECTION_SEND_TOOLTIP = "Envia un missatge a un altre robot.";
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 = "Intenta establir una connexió amb un altre robot a través de Bluetooth.";
Blockly.Msg.CONNECTION_TOOLTIP = "La connexió d'un robot";
Blockly.Msg.CONNECTION_TO_CONNECTION = "a la connexió";
Blockly.Msg.CONNECTION_TO_ROBOT = "al robot";
Blockly.Msg.CONNECTION_WAIT_FOR_CONNECTION = "espera una connexió";
Blockly.Msg.CONNECTION_WAIT_TOOLTIP = "Espera una connexión via Bluetooth.";
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 = "sortir del bucle";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE = "continuar amb la següent iteració del bucle";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK = "Sortir del bucle interior.";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE = "Ometre la resta d'aquest bucle, i continuar amb la següent iteració.";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_WARNING = "Advertència: Aquest bloc només es pot utilitzar dins d'un bucle.";
Blockly.Msg.CONTROLS_FOREACH_HELPURL = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated
Blockly.Msg.CONTROLS_FOREACH_TITLE = "per a cada element %1 en la llista %2";
Blockly.Msg.CONTROLS_FOREACH_TOOLTIP = "Per a cada element en la llista, desar l'element dins la variable '%1', i llavors executar unes sentències.";
Blockly.Msg.CONTROLS_FOR_HELPURL = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated
Blockly.Msg.CONTROLS_FOR_TITLE = "comptar amb %1 des de %2 fins a %3 en increments de %4";
Blockly.Msg.CONTROLS_FOR_TOOLTIP = "Fer que la variable \"%1\" prengui els valors des del nombre inicial fins al nombre final, incrementant a cada pas l'interval indicat, i executar els blocs especificats.";
Blockly.Msg.CONTROLS_IF_ELSEIF_TOOLTIP = "Afegeix una condició al bloc 'si'.";
Blockly.Msg.CONTROLS_IF_ELSE_TOOLTIP = "Afegeix una condició final, que recull qualsevol altra possibilitat, al bloc 'si'.";
Blockly.Msg.CONTROLS_IF_HELPURL = "https://github.com/google/blockly/wiki/IfElse"; // untranslated
Blockly.Msg.CONTROLS_IF_IF_TOOLTIP = "Afegeix, esborra o reordena seccions per reconfigurar aquest bloc 'si'.";
Blockly.Msg.CONTROLS_IF_MSG_ELSE = "si no";
Blockly.Msg.CONTROLS_IF_MSG_ELSEIF = "si no, si";
Blockly.Msg.CONTROLS_IF_MSG_IF = "si";
Blockly.Msg.CONTROLS_IF_TOOLTIP_1 = "Si un valor és cert, llavors executar unes sentències.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_2 = "Si un valor és cert, llavors executar el primer bloc de sentències. En cas contrari, executar el segon bloc de sentències.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_3 = "Si el primer valor és cert, llavors executar el primer bloc de sentències. En cas contrari, si el segon valor és cert, executar el segon bloc de sentències.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_4 = "Si el primer valor és cert, llavors executar el primer bloc de sentències. En cas contrari, si el segon valor és cert, executar el segon bloc de sentències. Si cap dels valors és cert, executar l'últim bloc de sentències.";
Blockly.Msg.CONTROLS_REPEAT_HELPURL = "https://ca.wikipedia.org/wiki/Bucle_For";
Blockly.Msg.CONTROLS_REPEAT_INPUT_DO = "fer";
Blockly.Msg.CONTROLS_REPEAT_TITLE = "repetir %1 vegades";
Blockly.Msg.CONTROLS_REPEAT_TOOLTIP = "Executar unes sentències diverses vegades.";
Blockly.Msg.CONTROLS_WHILEUNTIL_HELPURL = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated
Blockly.Msg.CONTROLS_WHILEUNTIL_OPERATOR_UNTIL = "repetir fins que";
Blockly.Msg.CONTROLS_WHILEUNTIL_OPERATOR_WHILE = "repetir mentre";
Blockly.Msg.CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL = "Mentre un valor sigui fals, llavors executar unes sentències.";
Blockly.Msg.CONTROLS_WHILEUNTIL_TOOLTIP_WHILE = "Mentre un valor sigui cert, llavors executar unes sentències.";
Blockly.Msg.DATATABLE_ACTUALIZATION = "Darrera actualització";
Blockly.Msg.DATATABLE_CONFIGURATIONS = "configuracions";
Blockly.Msg.DATATABLE_CONFIGURATION_NAME = "Nom de la configuració";
Blockly.Msg.DATATABLE_CREATED_BY = "Creador";
Blockly.Msg.DATATABLE_CREATED_ON = "Data de creació";
Blockly.Msg.DATATABLE_MEMBERS = "members"; // untranslated
Blockly.Msg.DATATABLE_PROGRAMS = "programes";
Blockly.Msg.DATATABLE_PROGRAM_NAME = "Nom del programa";
Blockly.Msg.DATATABLE_SHARED = "Compartit";
Blockly.Msg.DATATABLE_SHARED_PROGRAMS = "shared programs"; // untranslated
Blockly.Msg.DATATABLE_SHARED_WITH = "Compartit amb";
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 = "Esborrar els %1 blocs?";
Blockly.Msg.DELETE_BLOCK = "Esborra bloc";
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 = "Esborra %1 blocs";
Blockly.Msg.DIAMETER_RANGE = "diameter range"; // untranslated
Blockly.Msg.DIFFERENTIALDRIVE_TOOLTIP = "Represents two motors on a common axis controlled independetly."; // untranslated
Blockly.Msg.DIGITAL = "digital";
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 = "Desactiva bloc";
Blockly.Msg.DISPLAY_ANIMATION = "animació";
Blockly.Msg.DISPLAY_CHARACTER = "caràcter";
Blockly.Msg.DISPLAY_CLEAR = "esborra la pantalla";
Blockly.Msg.DISPLAY_CLEAR_TOOLTIP = "Esborra la pantalla.";
Blockly.Msg.DISPLAY_COL = "en columna";
Blockly.Msg.DISPLAY_GET_BRIGHTNESS_TOOLTIP = "Retorna la brillantor de tots els LEDs de la pantalla. 0 significa que tots estan apagats i 9 és el valor més gran de brillantor.";
Blockly.Msg.DISPLAY_GET_PIXEL_TOOLTIP = "Retorna la brillantor d'aquest LED. 0 significa que està apagat i 9 és el valor més gran de brillantor.";
Blockly.Msg.DISPLAY_IMAGE = "imatge";
Blockly.Msg.DISPLAY_NEW_ROW = "in new row"; // untranslated
Blockly.Msg.DISPLAY_PICTURE = "imatge";
Blockly.Msg.DISPLAY_PICTURE_EYES_CLOSED = "ulls tancats";
Blockly.Msg.DISPLAY_PICTURE_EYES_OPEN = "ulls oberts";
Blockly.Msg.DISPLAY_PICTURE_FLOWERS = "flors";
Blockly.Msg.DISPLAY_PICTURE_GLASSES = "ulleres";
Blockly.Msg.DISPLAY_PICTURE_TACHO = "tacómetre";
Blockly.Msg.DISPLAY_PICTURE_TOOLTIP = "Mostra una imatge a la pantalla.";
Blockly.Msg.DISPLAY_PIXEL_BRIGHTNESS = "brillantor";
Blockly.Msg.DISPLAY_PIXEL_TITLE = "LED";
Blockly.Msg.DISPLAY_PRINTLN_TOOLTIP = "Displays a text on the screen in a new line."; // untranslated
Blockly.Msg.DISPLAY_ROW = "en fila";
Blockly.Msg.DISPLAY_SET_BRIGHTNESS_TOOLTIP = "Determina la brillantor per a tots els LEDs de la pantalla. 0 significa que tots estan apagats i 9 és el valor més gran de brillantor.";
Blockly.Msg.DISPLAY_SET_PIXEL_TOOLTIP = "Determina la brillantor per aquest LED. 0 significa que està apagat i 9 és el valor més gran de brillantor.";
Blockly.Msg.DISPLAY_SHOW = "mostra";
Blockly.Msg.DISPLAY_TEXT = "text";
Blockly.Msg.DISPLAY_TEXT_TOOLTIP = "Mostra un text a la pantalla.";
Blockly.Msg.DISPLAY_TOOLTIP = "Represents a screen."; // untranslated
Blockly.Msg.DISPLAY_TOOLTIP_SPIKE = "Represents a screen with a 5 x 5 LED matrix."; // untranslated
Blockly.Msg.DROP_TOOLTIP = "Represents a drop sensor."; // untranslated
Blockly.Msg.DUPLICATE_BLOCK = "Duplica";
Blockly.Msg.DURATION = "duration"; // untranslated
Blockly.Msg.ENABLE_BLOCK = "Activa bloc";
Blockly.Msg.ENCODER_GETSAMPLE_TOOLTIP = "Gets the current reading from the motor encoder."; // untranslated
Blockly.Msg.ENCODER_RESET_TOOLTIP = "Reinicia l'encoder del motor.";
Blockly.Msg.ENCODER_TOOLTIP = "Represents an encoder."; // untranslated
Blockly.Msg.ENCODER_TOOLTIP_MBOT2 = "Represents an encoder motor."; // untranslated
Blockly.Msg.ENCODER_TOOLTIP_ROBOTINO = "Represents an encoder motor."; // 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 = "Bloc EV3 amb sensors i actuadors connectats. També hi ha sensors i actuadors interns disponibles, ex. botons, pantalla...";
Blockly.Msg.EXPAND_ALL = "Expandir blocs";
Blockly.Msg.EXPAND_BLOCK = "Expandir bloc";
Blockly.Msg.EXTERNAL_INPUTS = "Entrades externes";
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 = "per a";
Blockly.Msg.FORWARD = "forward"; // 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.FRONT_LEFT = "front left"; // untranslated
Blockly.Msg.FRONT_LEFT_MIDDLE = "front left middle"; // untranslated
Blockly.Msg.FRONT_MIDDLE = "front middle"; // untranslated
Blockly.Msg.FRONT_RIGHT = "front right"; // untranslated
Blockly.Msg.FRONT_RIGHT_MIDDLE = "front right middle"; // 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_ALL_ROBOTS = "All robots/systems"; // 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_NEWEST = "Newest first"; // untranslated
Blockly.Msg.GALLERY_OLDEST = "Oldest first"; // untranslated
Blockly.Msg.GALLERY_PROGRAM_NAME = "Program name alph."; // untranslated
Blockly.Msg.GALLERY_ROBOT = "Robot/System alph."; // 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.GALLERY_SORT_BY = "Order by"; // untranslated
Blockly.Msg.GEARED_MOTOR = "geared motor"; // untranslated
Blockly.Msg.GESTURE_TOOLTIP = "represents the the RGB gesture sensor, which detects light, proximity and gestures."; // untranslated
Blockly.Msg.GET = "obté";
Blockly.Msg.GETSAMPLE_TOOLTIP = "Obté la lectura del sensor seleccionat.";
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.GROUND_LEFT = "ground left"; // untranslated
Blockly.Msg.GROUND_RIGHT = "ground right"; // 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 = "Reinicia el giroscopi.";
Blockly.Msg.GYRO_TOOLTIP = "Representa el sensor giroscopi.";
Blockly.Msg.GYRO_TOOLTIP_WEDO = "Represents a tilt sensor."; // untranslated
Blockly.Msg.HELP = "Ajuda";
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.HUE_TOLERANCE = "hue tolerance"; // untranslated
Blockly.Msg.HUMIDITY_TOOLTIP = "Represents a humidity sensor."; // untranslated
Blockly.Msg.I2CBUS_TOOLTIP = "Represents one byte of the I2C address space."; // 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 = "Comprova la condició del 'si'. Si la condició és certa, executa l'acció 'aleshores'.";
Blockly.Msg.IMAGE_GET_TOOLTIP = "Retorna la imatge escollida.";
Blockly.Msg.IMAGE_GET_TOOLTIP_ANGRY = "enfadat";
Blockly.Msg.IMAGE_GET_TOOLTIP_ASLEEP = "adormit";
Blockly.Msg.IMAGE_GET_TOOLTIP_BUTTERFLY = "papallona";
Blockly.Msg.IMAGE_GET_TOOLTIP_CHESSBOARD = "tauler d'escacs";
Blockly.Msg.IMAGE_GET_TOOLTIP_CONFUSED = "confós";
Blockly.Msg.IMAGE_GET_TOOLTIP_COW = "vaca";
Blockly.Msg.IMAGE_GET_TOOLTIP_DIAMOND = "diamant";
Blockly.Msg.IMAGE_GET_TOOLTIP_DIAMOND_SMALL = "diamant petit";
Blockly.Msg.IMAGE_GET_TOOLTIP_DUCK = "ànec";
Blockly.Msg.IMAGE_GET_TOOLTIP_FABULOUS = "fantàstic";
Blockly.Msg.IMAGE_GET_TOOLTIP_GHOST = "fantasma";
Blockly.Msg.IMAGE_GET_TOOLTIP_GIRAFFE = "girafa";
Blockly.Msg.IMAGE_GET_TOOLTIP_HEART = "cor";
Blockly.Msg.IMAGE_GET_TOOLTIP_HEART_SMALL = "cor petit";
Blockly.Msg.IMAGE_GET_TOOLTIP_HOUSE = "casa";
Blockly.Msg.IMAGE_GET_TOOLTIP_MEH = "meh!";
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_CROTCHET = "nota negra";
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_QUAVER = "nota corxera";
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_QUAVERS = "notes corxeres";
Blockly.Msg.IMAGE_GET_TOOLTIP_NO = "no";
Blockly.Msg.IMAGE_GET_TOOLTIP_PACMAN = "menja-cocos";
Blockly.Msg.IMAGE_GET_TOOLTIP_PITCHFORK = "forca";
Blockly.Msg.IMAGE_GET_TOOLTIP_RABBIT = "conill";
Blockly.Msg.IMAGE_GET_TOOLTIP_ROLLERSKATE = "patí";
Blockly.Msg.IMAGE_GET_TOOLTIP_SAD = "trist";
Blockly.Msg.IMAGE_GET_TOOLTIP_SILLY = "tonto";
Blockly.Msg.IMAGE_GET_TOOLTIP_SKULL = "calavera";
Blockly.Msg.IMAGE_GET_TOOLTIP_SMILE = "somriure";
Blockly.Msg.IMAGE_GET_TOOLTIP_SNAKE = "serp";
Blockly.Msg.IMAGE_GET_TOOLTIP_SQUARE = "quadrat";
Blockly.Msg.IMAGE_GET_TOOLTIP_SQUARE_SMALL = "quadrat petit";
Blockly.Msg.IMAGE_GET_TOOLTIP_STICKFIGURE = "ninot de pal";
Blockly.Msg.IMAGE_GET_TOOLTIP_SWORD = "espasa";
Blockly.Msg.IMAGE_GET_TOOLTIP_TARGET = "diana";
Blockly.Msg.IMAGE_GET_TOOLTIP_TORTOISE = "tortuga";
Blockly.Msg.IMAGE_GET_TOOLTIP_TRIANGLE = "triangle";
Blockly.Msg.IMAGE_GET_TOOLTIP_TRIANGLE_LEFT = "triangle esquerra";
Blockly.Msg.IMAGE_GET_TOOLTIP_TSHIRT = "samarreta";
Blockly.Msg.IMAGE_GET_TOOLTIP_UMBRELLA = "paraigües";
Blockly.Msg.IMAGE_GET_TOOLTIP_XMAS = "Nadal";
Blockly.Msg.IMAGE_GET_TOOLTIP_YES = "sí";
Blockly.Msg.IMAGE_INVERT = "inverteix";
Blockly.Msg.IMAGE_INVERT_TOOLTIP = "Inverteix la imatge. Cada pixel amb valor 0 o sense valor es canviaran pel valor # o 9, i els pixels amb valor # o 9 es canviaran a 0 o es deixaran sense valor.";
Blockly.Msg.IMAGE_SHIFT = "desplaça";
Blockly.Msg.IMAGE_SHIFT_TOOLTIP = "Desplaça la imatge una quantitat determinada en la direcció indicada.";
Blockly.Msg.IMAGE_TOOLTIP = "Crea una imatge per a la pantalla.";
Blockly.Msg.IMU_TOOLTIP = "Represents an Inertial Measurement Unit (IMU)"; // untranslated
Blockly.Msg.INDUCTIVE_TOOLTIP = "Represents an inductive sensor."; // 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_DISTANCE_GETSAMPLE_TOOLTIP_ROBOTINO = "Gets the current relative distance from the infrared sensor. The values are between 4 and 30 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.INLINE_INPUTS = "Entrades en línia";
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 axes of the joystick"; // untranslated
Blockly.Msg.JOYSTICK_GETSAMPLE_TOOLTIP_MBOT2 = "Is the joystick moved into the specified direction or pressed?"; // untranslated
Blockly.Msg.JOYSTICK_TOOLTIP = "Represents a 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.LEDBAR_ULTRASONIC2_SET_TOOLTIP = "Sets the specified LED [1-8] on the ultrasonic sensor 2 to the given brightness [0-100]."; // untranslated
Blockly.Msg.LED_BUTTON = "turn button LED on"; // untranslated
Blockly.Msg.LED_BUTTON_ON_TOOLTIP = "Turns the various button LEDs on with the supplied brightness values. The percentage values range from 0% (off) to 100% (full brightness)."; // untranslated
Blockly.Msg.LED_CIRCLE = "turn circle LED on"; // untranslated
Blockly.Msg.LED_CIRCLE_ON_TOOLTIP = "Turns the various circle LEDs on with the supplied brightness values. The percentage values range from 0% (off) to 100% (full brightness)."; // untranslated
Blockly.Msg.LED_MATRIX = "LED matrix"; // untranslated
Blockly.Msg.LED_OFF = "apaga el LED";
Blockly.Msg.LED_OFF_BUTTON_THYMIO_TOOLTIP = "Turns the button LED off."; // untranslated
Blockly.Msg.LED_OFF_CIRCLE_THYMIO_TOOLTIP = "Turns the circle LED off."; // untranslated
Blockly.Msg.LED_OFF_QUADRGB_TOOLTIP = "Turns off the fill lights of the quad RGB sensor"; // untranslated
Blockly.Msg.LED_OFF_TOOLTIP_NAO = "Apagar LEDs";
Blockly.Msg.LED_ON = "encén el LED";
Blockly.Msg.LED_ON_QUADRGB_TOOLTIP = "Turns on the fill lights of the quad RGB sensor in the given color."; // untranslated
Blockly.Msg.LED_ON_TOOLTIP = "Turns the LED on or off."; // untranslated
Blockly.Msg.LED_PROXH = "turn distance sensor LED on"; // untranslated
Blockly.Msg.LED_PROXH_ON_TOOLTIP = "Turns the bottom sensor LEDs on with the supplied brightness values. The percentage values range from 0% (off) to 100% (full brightness)."; // untranslated
Blockly.Msg.LED_PROXV = "turn bottom sensor LED on"; // untranslated
Blockly.Msg.LED_PROXV_ON_TOOLTIP = "Turns the various distance sensor LEDs on with the supplied brightness values. The percentage values range from 0% (off) to 100% (full brightness)."; // untranslated
Blockly.Msg.LED_SET_BRIGHTNESS_TOOLTIP = "Sets the brightness of all LEDs [0-100]"; // untranslated
Blockly.Msg.LED_SET_BRIGHTNESS_TOOLTIP_PERCENT = "Sets the brightness of the LED [0-100]"; // untranslated
Blockly.Msg.LED_SET_INTENSITY_TOOLTIP = "Fijarla intensidad de un grupo de LEDs.";
Blockly.Msg.LED_SOUND = "turn sound sensor LED on"; // untranslated
Blockly.Msg.LED_SOUND_ON_TOOLTIP = "Turns the microphone LED on with the supplied brightness values. The percentage value range from 0% (off) to 100% (full brightness)."; // untranslated
Blockly.Msg.LED_TEMPERATURE = "turn temperature sensor LED on"; // untranslated
Blockly.Msg.LED_TEMPERATURE_ON_TOOLTIP = "Turns the temperature sensor LEDs on with the supplied brightness values. The percentage values range from 0% (off) to 100% (full brightness)."; // untranslated
Blockly.Msg.LED_TOOLTIP = "Represents an LED."; // untranslated
Blockly.Msg.LED_TOOLTIP_NIBO = "Turns the LED on or off. Watch out, it's very bright!"; // 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 = "Representa 8 sensors de llum.";
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 = "Representa un sensor de llum.";
Blockly.Msg.LINEDETECTOR_TOOLTIP = "Represents a line detector for the camera."; // untranslated
Blockly.Msg.LINE_TOOLTIP = "Represents an infrared line 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 = "crear llista buida";
Blockly.Msg.LISTS_CREATE_EMPTY_TOOLTIP = "Retorna una llista, de longitud 0, que no conté cap dada.";
Blockly.Msg.LISTS_CREATE_TITLE = "llista";
Blockly.Msg.LISTS_CREATE_WITH_CONTAINER_TITLE_ADD = "llista";
Blockly.Msg.LISTS_CREATE_WITH_CONTAINER_TOOLTIP = "Afegeix, esborra o reordena seccions per reconfigurar aquest bloc de llista.";
Blockly.Msg.LISTS_CREATE_WITH_HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated
Blockly.Msg.LISTS_CREATE_WITH_INPUT_WITH = "crear llista amb";
Blockly.Msg.LISTS_CREATE_WITH_ITEM_TOOLTIP = "Afegeix un element a la llista.";
Blockly.Msg.LISTS_CREATE_WITH_TOOLTIP = "Crea una llista amb qualsevol nombre d'elements.";
Blockly.Msg.LISTS_GET_INDEX_FIRST = "primer";
Blockly.Msg.LISTS_GET_INDEX_FROM_END = "núm.# des del final";
Blockly.Msg.LISTS_GET_INDEX_FROM_START = "#"; // untranslated
Blockly.Msg.LISTS_GET_INDEX_GET = "recupera";
Blockly.Msg.LISTS_GET_INDEX_GET_REMOVE = "recupera i esborra";
Blockly.Msg.LISTS_GET_INDEX_LAST = "últim";
Blockly.Msg.LISTS_GET_INDEX_RANDOM = "a l'atzar";
Blockly.Msg.LISTS_GET_INDEX_REMOVE = "esborra";
Blockly.Msg.LISTS_GET_INDEX_TAIL = ""; // untranslated
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FIRST = "Retorna el primer element d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FROM_END = "Retorna l'element de la posició especificada a la llista. #1 és l'últim element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FROM_START = "Retorna l'element de la posició especificada a la llista. #1 és el primer element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_LAST = "Retorna l'últim element d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_RANDOM = "Retorna un element a l'atzar d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST = "Esborra i retorna el primer element d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM_END = "Esborra i retorna l'element de la posició especificada de la llista. #1 és l'últim element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM_START = "Esborra i retorna l'element de la posició especificada de la llista. #1 és el primer element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST = "Esborra i retorna l'últim element d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM = "Esborra i retorna un element a l'atzar d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST = "Esborra el primer element d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM_END = "Esborra l'element de la posició especificada de la llista. #1 és l'últim element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM_START = "Esborra l'element de la posició especificada de la llista. #1 és el primer element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST = "Esborra l'últim element d'una llista.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM = "Esborra un element a l'atzar d'una llista.";
Blockly.Msg.LISTS_GET_SUBLIST_END_FROM_END = "fins # des del final";
Blockly.Msg.LISTS_GET_SUBLIST_END_FROM_START = "fins #";
Blockly.Msg.LISTS_GET_SUBLIST_END_LAST = "fins l'últim";
Blockly.Msg.LISTS_GET_SUBLIST_HELPURL = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_START_FIRST = "recupera sub-llista des del principi";
Blockly.Msg.LISTS_GET_SUBLIST_START_FROM_END = "recupera sub-llista des de # des del final";
Blockly.Msg.LISTS_GET_SUBLIST_START_FROM_START = "recupera sub-llista des de #";
Blockly.Msg.LISTS_GET_SUBLIST_TAIL = ""; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_TOOLTIP = "Crea una còpia de la part especificada d'una llista.";
Blockly.Msg.LISTS_INDEX_OF_FIRST = "buscar primera aparició d'un element";
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 = "buscar última aparició d'un element";
Blockly.Msg.LISTS_INDEX_OF_TOOLTIP = "Retorna l'índex de la primera/última aparició d'un element a la llista. Retorna 0 si no s'hi troba el text.";
Blockly.Msg.LISTS_INLIST = "en la llista";
Blockly.Msg.LISTS_ISEMPTY_HELPURL = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated
Blockly.Msg.LISTS_ISEMPTY_TITLE = "%1 és buida";
Blockly.Msg.LISTS_ISEMPTY_TOOLTIP = "Retorna cert si la llista és buida.";
Blockly.Msg.LISTS_LENGTH_HELPURL = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated
Blockly.Msg.LISTS_LENGTH_TITLE = "longitud de %1";
Blockly.Msg.LISTS_LENGTH_TOOLTIP = "Retorna la longitud d'una llista.";
Blockly.Msg.LISTS_REPEAT_HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated
Blockly.Msg.LISTS_REPEAT_TITLE = "crea llista amb element %1 repetit %2 vegades";
Blockly.Msg.LISTS_REPEAT_TOOLTIP = "Crea una llista formada pel valor donat, repetit tantes vegades com s'indiqui.";
Blockly.Msg.LISTS_SET_INDEX_HELPURL = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated
Blockly.Msg.LISTS_SET_INDEX_INPUT_TO = "com";
Blockly.Msg.LISTS_SET_INDEX_INSERT = "insereix a";
Blockly.Msg.LISTS_SET_INDEX_SET = "modifica";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST = "Insereix l'element al principi d'una llista.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FROM_END = "Insereix l'element a la posició especificada d'una llista. #1 és l'últim element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FROM_START = "Insereix l'element a la posició especificada d'una llista. #1 és el primer element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_LAST = "Afegeix l'element al final d'una llista.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM = "Insereix l'element en una posició a l'atzar d'una llista.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FIRST = "Modifica el primer element d'una llista.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FROM_END = "Modifica l'element de la posició especificada d'una llista. #1 és l'últim element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FROM_START = "Modifica l'element de la posició especificada d'una llista. #1 és el primer element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_LAST = "Modifica l'últim element d'una llista.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_RANDOM = "Modifica un element a l'atzar d'una llista.";
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 = "Tornar a la vista anterior.";
Blockly.Msg.LOGIC_BOOLEAN_FALSE = "fals";
Blockly.Msg.LOGIC_BOOLEAN_HELPURL = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated
Blockly.Msg.LOGIC_BOOLEAN_TOOLTIP = "Retorna o bé cert o bé fals.";
Blockly.Msg.LOGIC_BOOLEAN_TRUE = "cert";
Blockly.Msg.LOGIC_COMPARE_HELPURL = "https://ca.wikipedia.org/wiki/Inequaci%C3%B3";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_EQ = "Retorna cert si totes dues entrades són iguals.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_GT = "Retorna cert si la primera entrada és més gran que la segona entrada.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_GTE = "Retorna cert si la primera entrada és més gran o igual a la segona entrada.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_LT = "Retorna cert si la primera entrada és més petita que la segona entrada.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_LTE = "Retorna cert si la primera entra és més petita o igual a la segona entrada.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_NEQ = "Retorna cert si totes dues entrades són diferents.";
Blockly.Msg.LOGIC_NEGATE_HELPURL = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated
Blockly.Msg.LOGIC_NEGATE_TITLE = "no %1";
Blockly.Msg.LOGIC_NEGATE_TOOLTIP = "Retorna cert si l'entrada és falsa. Retorna fals si l'entrada és certa.";
Blockly.Msg.LOGIC_NULL = "nul";
Blockly.Msg.LOGIC_NULL_HELPURL = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated
Blockly.Msg.LOGIC_NULL_TOOLTIP = "Retorna nul.";
Blockly.Msg.LOGIC_OPERATION_AND = "i";
Blockly.Msg.LOGIC_OPERATION_HELPURL = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated
Blockly.Msg.LOGIC_OPERATION_OR = "o";
Blockly.Msg.LOGIC_OPERATION_TOOLTIP_AND = "Retorna cer si totes dues entrades són certes.";
Blockly.Msg.LOGIC_OPERATION_TOOLTIP_OR = "Retorna cert si almenys una de les entrades és certa.";
Blockly.Msg.LOGIC_TERNARY_CONDITION = "condició";
Blockly.Msg.LOGIC_TERNARY_HELPURL = "https://en.wikipedia.org/wiki/%3F:"; // untranslated
Blockly.Msg.LOGIC_TERNARY_IF_FALSE = "si és fals";
Blockly.Msg.LOGIC_TERNARY_IF_TRUE = "si és cert";
Blockly.Msg.LOGIC_TERNARY_TOOLTIP = "Comprova la condició de 'condició'. Si la condició és certa, retorna el valor 'si és cert'; en cas contrari, retorna el valor 'si és fals'.";
Blockly.Msg.LOGOTOUCH_TOOLTIP = "Represents a touch sensor shaped like the Micro:bit logo."; // untranslated
Blockly.Msg.LOOP = "repeteix fins que";
Blockly.Msg.LOOPFOREVER_TOOLTIP = "Repeteix una acció indefinidament.";
Blockly.Msg.LOOP_FOREVER = "repeteix indefinidament";
Blockly.Msg.MATH_ADDITION_SYMBOL = "+"; // untranslated
Blockly.Msg.MATH_ARITHMETIC_HELPURL = "https://ca.wikipedia.org/wiki/Aritm%C3%A8tica";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_ADD = "Retorna la suma dels dos nombres.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_DIVIDE = "Retorna el quocient dels dos nombres.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_MINUS = "Retorna la diferència entre els dos nombres.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_MULTIPLY = "Retorna el producte del dos nombres.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_POWER = "Retorna el primer nombre elevat a la potència indicada pel segon nombre.";
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://ca.wikipedia.org/wiki/Suma";
Blockly.Msg.MATH_CHANGE_TITLE = "canvia %1 per %2";
Blockly.Msg.MATH_CHANGE_TOOLTIP = "Afegeix un nombre a la variable '%1'.";
Blockly.Msg.MATH_CONSTANT_HELPURL = "https://ca.wikipedia.org/wiki/Constant_matem%C3%A0tica";
Blockly.Msg.MATH_CONSTANT_TOOLTIP = "Retorna una de les constants més habituals: π (3,141…), e (2,718…), φ (1,618…), sqrt(2) (1,414…), sqrt(½) (0,707…), o ∞ (infinit).";
Blockly.Msg.MATH_CONSTRAIN_HELPURL = "https://en.wikipedia.org/wiki/Clamping_%28graphics%29"; // untranslated
Blockly.Msg.MATH_CONSTRAIN_TITLE = "limitar %1 entre %2 i %3";
Blockly.Msg.MATH_CONSTRAIN_TOOLTIP = "Limita un nombre perquè estigui entre els límits especificats (inclosos).";
Blockly.Msg.MATH_DIVISION_SYMBOL = "÷"; // untranslated
Blockly.Msg.MATH_IS_DIVISIBLE_BY = "és divisible per";
Blockly.Msg.MATH_IS_EVEN = "és parell";
Blockly.Msg.MATH_IS_NEGATIVE = "és negatiu";
Blockly.Msg.MATH_IS_ODD = "és senar";
Blockly.Msg.MATH_IS_POSITIVE = "és positiu";
Blockly.Msg.MATH_IS_PRIME = "és primer";
Blockly.Msg.MATH_IS_TOOLTIP = "Comprova si un nombre és parell, senar, enter, positium negatiu, o si és divisible per un cert nombre. Retorna cert o fals.";
Blockly.Msg.MATH_IS_WHOLE = "és enter";
Blockly.Msg.MATH_MODULO_HELPURL = "https://ca.wikipedia.org/wiki/Residu_%28aritm%C3%A8tica%29";
Blockly.Msg.MATH_MODULO_TITLE = "residu de %1 ÷ %2";
Blockly.Msg.MATH_MODULO_TOOLTIP = "Retorna el residu de dividir els dos nombres.";
Blockly.Msg.MATH_MULTIPLICATION_SYMBOL = "×"; // untranslated
Blockly.Msg.MATH_NUMBER_HELPURL = "https://ca.wikipedia.org/wiki/Nombre";
Blockly.Msg.MATH_NUMBER_TOOLTIP = "Un nombre.";
Blockly.Msg.MATH_ONLIST_HELPURL = ""; // untranslated
Blockly.Msg.MATH_ONLIST_OPERATOR_AVERAGE = "mitjana de llista";
Blockly.Msg.MATH_ONLIST_OPERATOR_MAX = "màxim de llista";
Blockly.Msg.MATH_ONLIST_OPERATOR_MEDIAN = "mediana de llista";
Blockly.Msg.MATH_ONLIST_OPERATOR_MIN = "mínim de llista";
Blockly.Msg.MATH_ONLIST_OPERATOR_MODE = "moda de llista";
Blockly.Msg.MATH_ONLIST_OPERATOR_RANDOM = "element aleatori de llista";
Blockly.Msg.MATH_ONLIST_OPERATOR_STD_DEV = "desviació estàndard de llista";
Blockly.Msg.MATH_ONLIST_OPERATOR_SUM = "suma de llista";
Blockly.Msg.MATH_ONLIST_TOOLTIP_AVERAGE = "Retorna la mitjana (mitjana aritmètica) dels valors numèrics de la llista.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MAX = "Retorna el nombre més gran de la llista.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MEDIAN = "Retorna la mediana de la llista.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MIN = "Retorna el nombre més petit de la llista.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MODE = "Retorna una llista dels elements que apareixen més vegades a la llista.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_RANDOM = "Retorna un element aleatori de la lllista.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_STD_DEV = "Retorna la desviació estàndard de la llista.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_SUM = "Retorna la suma de tots els nombres de la llista.";
Blockly.Msg.MATH_POWER_SYMBOL = "^"; // untranslated
Blockly.Msg.MATH_RANDOM_FLOAT_HELPURL = "https://ca.wikipedia.org/wiki/Generaci%C3%B3_de_nombres_aleatoris";
Blockly.Msg.MATH_RANDOM_FLOAT_TITLE_RANDOM = "fracció aleatòria";
Blockly.Msg.MATH_RANDOM_FLOAT_TOOLTIP = "Retorna una fracció aleatòria entre 0,0 (inclòs) i 1,0 (exclòs).";
Blockly.Msg.MATH_RANDOM_INT_HELPURL = "https://ca.wikipedia.org/wiki/Generaci%C3%B3_de_nombres_aleatoris";
Blockly.Msg.MATH_RANDOM_INT_TITLE = "nombre aleatori entre %1 i %2";
Blockly.Msg.MATH_RANDOM_INT_TOOLTIP = "Retorna un nombre aleatori entre els dos límits especificats, inclosos.";
Blockly.Msg.MATH_ROUND_HELPURL = "https://ca.wikipedia.org/wiki/Arrodoniment";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUND = "arrodonir";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUNDDOWN = "arrodonir cap avall";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUNDUP = "arrodonir cap amunt";
Blockly.Msg.MATH_ROUND_TOOLTIP = "Arrodonir un nombre cap amunt o cap avall.";
Blockly.Msg.MATH_SINGLE_HELPURL = "https://ca.wikipedia.org/wiki/Arrel_quadrada";
Blockly.Msg.MATH_SINGLE_OP_ABSOLUTE = "absolut";
Blockly.Msg.MATH_SINGLE_OP_ROOT = "arrel quadrada";
Blockly.Msg.MATH_SINGLE_OP_SQUARE = "square"; // untranslated
Blockly.Msg.MATH_SINGLE_TOOLTIP_ABS = "Retorna el valor absolut d'un nombre.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_EXP = "Retorna ''e'' elevat a la potència del nombre indicat.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_LN = "Retorna el logaritme natural d'un nombre.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_LOG10 = "Retorna el logaritme en base 10 d'un nombre.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_NEG = "Retorna l'oposat d'un nombre.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_POW10 = "Retorna 10 elevat a la potència del nombre indicat.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_ROOT = "Retorna l'arrel quadrada d'un nombre.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_SQUARE = "Return the number multiplied by itself."; // untranslated
Blockly.Msg.MATH_SUBTRACTION_SYMBOL = "-"; // untranslated
Blockly.Msg.MATH_THYMIO_TRIG_TOOLTIP = "All trigonometric functions map the angles [-pi, pi] radians to [-32768, 32767]. The resultant sin and cos values are similarly mapped, namely [-1.0, 1.0] to [-32768, 32767]."; // 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://ca.wikipedia.org/wiki/Funci%C3%B3_trigonom%C3%A8trica";
Blockly.Msg.MATH_TRIG_SIN = "sin"; // untranslated
Blockly.Msg.MATH_TRIG_TAN = "tan"; // untranslated
Blockly.Msg.MATH_TRIG_TOOLTIP_ACOS = "Retorna l'arccosinus d'un nombre.";
Blockly.Msg.MATH_TRIG_TOOLTIP_ASIN = "Retorna l'arcsinus d'un nombre.";
Blockly.Msg.MATH_TRIG_TOOLTIP_ATAN = "Retorna l'arctangent d'un nombre.";
Blockly.Msg.MATH_TRIG_TOOLTIP_COS = "Retorna el cosinus d'un grau (no radiant).";
Blockly.Msg.MATH_TRIG_TOOLTIP_SIN = "Retorna el sinus d'un grau (no radiant).";
Blockly.Msg.MATH_TRIG_TOOLTIP_TAN = "Retorna la tangent d'un grau (no radiant).";
Blockly.Msg.MAX_ANGLE = "Maximum angle"; // untranslated
Blockly.Msg.MAX_PULSE_WIDTH = "Maximum pulse width"; // untranslated
Blockly.Msg.MBUILD_PORT_TOOLTIP = "Block for the mBuild Port. The order of the compatible mbuild sensor blocks should be identical to the real system."; // untranslated
Blockly.Msg.ME = "Jo";
Blockly.Msg.MENU_ABOUT = "quant a";
Blockly.Msg.MENU_ABOUT_PROJECT = "about the Open Roberta Project"; // untranslated
Blockly.Msg.MENU_ATTACH = "adjunta ...";
Blockly.Msg.MENU_BEGINNER = "debutant";
Blockly.Msg.MENU_CHANGE = "canvia ...";
Blockly.Msg.MENU_CHECK = "comprova";
Blockly.Msg.MENU_CODE_DOWNLOAD_TOOLTIP = "Baixa el codi font del programa a l'ordinador.";
Blockly.Msg.MENU_CODE_REFRESH_TOOLTIP = "Actualitza el codi font si has canviat els blocs visuals NEPO.";
Blockly.Msg.MENU_CONNECT = "connecta ...";
Blockly.Msg.MENU_CREATE_LINK = "crea un enllaç al programa ...";
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 = "esborra l'usuari ...";
Blockly.Msg.MENU_EDIT = "edita";
Blockly.Msg.MENU_EDIT_TOOLTIP = "Edita.";
Blockly.Msg.MENU_EV3 = "Prepara el robot EV3";
Blockly.Msg.MENU_EXPERT = "expert";
Blockly.Msg.MENU_EXPORT_ALL_PROGS = "export all programs"; // untranslated
Blockly.Msg.MENU_EXPORT_PROG = "exporta el programa";
Blockly.Msg.MENU_FAQ = "Preguntes Més Freqüents";
Blockly.Msg.MENU_GALLERY = "galeria";
Blockly.Msg.MENU_GALLERY_TOOLTIP = "Galeria.";
Blockly.Msg.MENU_GENERAL = "ajuda general";
Blockly.Msg.MENU_HELP = "ajuda general";
Blockly.Msg.MENU_HELP_TOOLTIP = "Ajuda.";
Blockly.Msg.MENU_IMPORT_PROG = "importa programa";
Blockly.Msg.MENU_LANGUAGE = "idiomes";
Blockly.Msg.MENU_LANGUAGE_TOOLTIP = "Idiomes.";
Blockly.Msg.MENU_LIST = "llista ...";
Blockly.Msg.MENU_LIST_CONF = "les meves configuracions ...";
Blockly.Msg.MENU_LIST_PROG = "els meus programes ...";
Blockly.Msg.MENU_LIST_PROG_EXAMPLES = "programes d'exemple ...";
Blockly.Msg.MENU_LOGGING = "accedint";
Blockly.Msg.MENU_LOG_IN = "inicia la sessió ...";
Blockly.Msg.MENU_LOG_OUT = "tanca la sessió";
Blockly.Msg.MENU_MANAGE_USERGROUPS = "Manage user groups ..."; // untranslated
Blockly.Msg.MENU_MESSAGE_DOWNLOAD = "El teu programa ha baixat correctament.";
Blockly.Msg.MENU_NEW = "nou ...";
Blockly.Msg.MENU_PROGRAMMING = "programant amb NEPO";
Blockly.Msg.MENU_PROPERTIES = "propietats";
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 = "Obre/tanca l'ajuda";
Blockly.Msg.MENU_RIGHT_INFO_TOOLTIP = "Obre/tanca la vista d'informació";
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";
Blockly.Msg.MENU_ROBOT_STATE_INFO = "informació";
Blockly.Msg.MENU_ROBOT_STATE_TOOLTIP = "Informació del robot";
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";
Blockly.Msg.MENU_ROBOT_WLAN = "WLAN credentials ..."; // untranslated
Blockly.Msg.MENU_RUN_MULT_SIM = "multiple robot simulation ..."; // untranslated
Blockly.Msg.MENU_SAVE = "desa";
Blockly.Msg.MENU_SAVE_AS = "anomena i desa ...";
Blockly.Msg.MENU_SHORTCUT = "keyboard shortcuts"; // untranslated
Blockly.Msg.MENU_SHORTCUT_RUN = "run on robot"; // untranslated
Blockly.Msg.MENU_SHOW_AGAIN = "Mostra la nota de benvinguda un altre cop.";
Blockly.Msg.MENU_SHOW_CODE = "mostra el codi font";
Blockly.Msg.MENU_SIM_ADD_COLOR_OBJECT_TOOLTIP = "Add a color area."; // untranslated
Blockly.Msg.MENU_SIM_ADD_MARKER_OBJECT_TOOLTIP = "Add a marker"; // 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 = "Puja la teva imatge de fons per al simulador, la qual s'afegirà al final de la llista d'imatges de fons.";
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 = "obre/tanca la vista del robot";
Blockly.Msg.MENU_SIM_SCENE_TOOLTIP = "canvia l'escena";
Blockly.Msg.MENU_SIM_START_TOOLTIP = "Inicia el teu programa al simulador.";
Blockly.Msg.MENU_SIM_STOP_TOOLTIP = "Para el teu programa al simulador.";
Blockly.Msg.MENU_SIM_TRAIL_TOOLTIP = "Enable/Disable robot draw trail."; // untranslated
Blockly.Msg.MENU_SIM_VALUES_TOOLTIP = "Obre/tanca la vista de dades dels sensors.";
Blockly.Msg.MENU_SOURCE_CODE_EDITOR = "open source code editor"; // untranslated
Blockly.Msg.MENU_START_BRICK = "executa a »$«";
Blockly.Msg.MENU_START_SIM = "obre/tanca el simulador";
Blockly.Msg.MENU_STATE_INFO = "informació d'estat";
Blockly.Msg.MENU_STOP_BRICK = "stop program on »$«"; // untranslated
Blockly.Msg.MENU_TOOLBOX = "Blocs NEPO";
Blockly.Msg.MENU_TOOLBOX_BEGINNER = "Blocs NEPO per debutants";
Blockly.Msg.MENU_TOOLBOX_EXPERT = "Blocs NEPO per experts";
Blockly.Msg.MENU_TUTORIAL = "tutorials"; // untranslated
Blockly.Msg.MENU_TUTORIAL_TOOLTIP = "tutorials"; // untranslated
Blockly.Msg.MENU_USER = "inicia la sessió";
Blockly.Msg.MENU_USERGROUP_LOG_IN = "Log in with user group ..."; // untranslated
Blockly.Msg.MENU_USER_STATE_TOOLTIP = "informació de l'usuari";
Blockly.Msg.MENU_USER_TOOLTIP = "usuari";
Blockly.Msg.MENU_WLAN_CREDENTIALS = "WLAN credentials"; // untranslated
Blockly.Msg.MENU_ZOOM = "zoom";
Blockly.Msg.MENU_ZOOM_IN = "apropar";
Blockly.Msg.MENU_ZOOM_OUT = "allunyar";
Blockly.Msg.MENU_ZOOM_RESET = "reinicia el zoom";
Blockly.Msg.MESSAGE_ADDED_USER = "S'ha afegit l'usuari »$«";
Blockly.Msg.MESSAGE_CONFIGURATION_DELETED = "S'ha esborrat la configuració »$«";
Blockly.Msg.MESSAGE_EDIT_CHECK = "S'ha comprovat el teu programa!";
Blockly.Msg.MESSAGE_EDIT_SAVE_CONFIGURATION = "S'ha desat la teva configuració";
Blockly.Msg.MESSAGE_EDIT_SAVE_CONFIGURATION_AS = "La teva configuració s'ha desat com a »$«";
Blockly.Msg.MESSAGE_EDIT_SAVE_GROUP_AS = "S'ha creat el teu grup";
Blockly.Msg.MESSAGE_EDIT_SAVE_PROGRAM = "S'ha desat el teu programa";
Blockly.Msg.MESSAGE_EDIT_SAVE_PROGRAM_AS = "S'ha desat el teu programa com a »$«";
Blockly.Msg.MESSAGE_EDIT_START = "Your program »$« will run in a moment!"; // untranslated
Blockly.Msg.MESSAGE_FIRMWARE_ERROR = "Hi ha un conflicte amb la versió de firmware del teu robot i l'Open Roberta Lab. Si us plau, posa't en contacte amb nosaltres.";
Blockly.Msg.MESSAGE_GROUP_DELETED = "S'ha esborrat el grup »$«";
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 = "Si us plau, escriu un nom correcte. Ha de començar per una lletra i tan sols pot estar format per lletres i números.";
Blockly.Msg.MESSAGE_NOT_AVAILABLE = "No disponible.";
Blockly.Msg.MESSAGE_PROGRAM_DELETED = "S'ha esborrat el programa »$«";
Blockly.Msg.MESSAGE_RESTART_ROBOT = "Si us plau, torna a connectar el teu robot a l'Open Roberta Lab.";
Blockly.Msg.MESSAGE_ROBOT_CONNECTED = "S'ha connectat el teu robot »$«";
Blockly.Msg.MESSAGE_ROBOT_DISCONNECTED = "An active robot was disconnected"; // untranslated
Blockly.Msg.MESSAGE_USER_DELETED = "Usuari esborrat";
Blockly.Msg.MESSAGE_USER_GROUP_DELETED = "S'ha esborrat l'usuari »$«";
Blockly.Msg.MESSAGE_USER_LOGIN = "Hola »$«";
Blockly.Msg.MESSAGE_USER_LOGOUT = "Has sortit de la teva sessió";
Blockly.Msg.MICROBITBRICK_TOOLTIP = "Representa un micro:bit, a ordinador programable de butxaca. Aquest conté sensors i actuadors interns, com ara botons, pantalla...";
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";
Blockly.Msg.MODE_ACCELERATION = "accelerar";
Blockly.Msg.MODE_ACCURACY = "accuracy"; // untranslated
Blockly.Msg.MODE_ALTITUDE = "altitude"; // untranslated
Blockly.Msg.MODE_AMBIENTLIGHT = "llum ambiente";
Blockly.Msg.MODE_ANALOG = "analog value"; // untranslated
Blockly.Msg.MODE_ANGLE = "àngle";
Blockly.Msg.MODE_BALL = "ball information"; // untranslated
Blockly.Msg.MODE_CALIBRATION = "Calibration Value"; // untranslated
Blockly.Msg.MODE_CALIBRATIONNEED = "calibration needed"; // untranslated
Blockly.Msg.MODE_CAPACITIVE = "capacitive"; // untranslated
Blockly.Msg.MODE_CLAP = "clap"; // untranslated
Blockly.Msg.MODE_CLOSE = "tanca";
Blockly.Msg.MODE_CLOSING = "dark"; // untranslated
Blockly.Msg.MODE_CO2EQUIVALENT = "CO2 Equivalent"; // untranslated
Blockly.Msg.MODE_COLOR = "color"; // untranslated
Blockly.Msg.MODE_COLOUR = "color";
Blockly.Msg.MODE_COMPASS = "compass"; // untranslated
Blockly.Msg.MODE_CURRENT = "current"; // untranslated
Blockly.Msg.MODE_DATE = "date"; // untranslated
Blockly.Msg.MODE_DEGREE = "grau";
Blockly.Msg.MODE_DIGITAL = "digital value"; // untranslated
Blockly.Msg.MODE_DISTANCE = "distància";
Blockly.Msg.MODE_FORCE = "force"; // 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 = "llum";
Blockly.Msg.MODE_LINE = "line"; // untranslated
Blockly.Msg.MODE_LINE_STATE = "line following state"; // untranslated
Blockly.Msg.MODE_LONGITUDE = "longitude"; // untranslated
Blockly.Msg.MODE_MAGNETICFIELD = "mag field"; // untranslated
Blockly.Msg.MODE_MAGNETICFLUX = "magnetic flux"; // untranslated
Blockly.Msg.MODE_MODULATED = "modulated"; // untranslated
Blockly.Msg.MODE_MOISTURE = "moisture"; // untranslated
Blockly.Msg.MODE_MOTION = "motion"; // untranslated
Blockly.Msg.MODE_NAMEALL = "names (list)"; // untranslated
Blockly.Msg.MODE_NAMEONE = "name"; // untranslated
Blockly.Msg.MODE_NOT_SUPPORTED = "The selected mode of this block is not supported by this system!"; // untranslated
Blockly.Msg.MODE_NUMBERLINES = "number of lines"; // untranslated
Blockly.Msg.MODE_OBSTACLE = "obstàcle";
Blockly.Msg.MODE_OPEN = "obre";
Blockly.Msg.MODE_OPENING = "light"; // untranslated
Blockly.Msg.MODE_ORIENTATION = "orientació";
Blockly.Msg.MODE_PM10 = "PM10"; // untranslated
Blockly.Msg.MODE_PM25 = "PM2.5"; // untranslated
Blockly.Msg.MODE_PRESENCE = "presència";
Blockly.Msg.MODE_PRESSED = "pressed"; // untranslated
Blockly.Msg.MODE_PRESSURE = "pressure"; // untranslated
Blockly.Msg.MODE_PROXIMITY = "proximity"; // untranslated
Blockly.Msg.MODE_PULSEHIGH = "pulse time HIGH"; // untranslated
Blockly.Msg.MODE_PULSELOW = "pulse time LOW"; // untranslated
Blockly.Msg.MODE_RATE = "ràtio";
Blockly.Msg.MODE_RCCODE = "R/C code"; // untranslated
Blockly.Msg.MODE_REFLEXION = "reflected light"; // untranslated
Blockly.Msg.MODE_RESISTANCE = "resistance "; // untranslated
Blockly.Msg.MODE_RESISTIVE = "resistive"; // untranslated
Blockly.Msg.MODE_RGB = "RGB";
Blockly.Msg.MODE_ROTATION = "rotació";
Blockly.Msg.MODE_SENSIVITY = "sensitivity"; // untranslated
Blockly.Msg.MODE_SENSOR1 = "Light Sensor1"; // untranslated
Blockly.Msg.MODE_SENSOR2 = "Light Sensor2"; // untranslated
Blockly.Msg.MODE_SPEED = "speed"; // untranslated
Blockly.Msg.MODE_TAPPED = "tapped"; // untranslated
Blockly.Msg.MODE_TEMPERATURE = "temperature"; // untranslated
Blockly.Msg.MODE_TILTED = "tilted"; // untranslated
Blockly.Msg.MODE_TIME = "time"; // untranslated
Blockly.Msg.MODE_TOUCH = "touch mode"; // 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.MOTIONDETECTOR_TOOLTIP = "Represents a motion detector for the camera."; // untranslated
Blockly.Msg.MOTIONKIT = "MotionKit"; // untranslated
Blockly.Msg.MOTIONKIT_DUAL_TOOLTIP = "Sets each MotionKit motor to the specified direction."; // untranslated
Blockly.Msg.MOTIONKIT_PIN_OVERLAP_WARNING = "The MotionKit uses the pins P1, P2, A0, A1, C16 and C17, so please make sure no other configuration-block uses them!"; // 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";
Blockly.Msg.MOTORDIFF_ON_FOR_TOOLTIP = "Posa en marxa el robot amb una velocitat determinada y l'atura desprès de la dintància indicada.";
Blockly.Msg.MOTORDIFF_ON_TOOLTIP = "Pone en marcha el robot con una velocidad determinada.";
Blockly.Msg.MOTORDIFF_STOP_TOOLTIP = "Detiene el robot.";
Blockly.Msg.MOTORDIFF_TURN_FOR_TOOLTIP = "Gira el robot un número determinado de grados";
Blockly.Msg.MOTORDIFF_TURN_TOOLTIP = "Gira el robot.";
Blockly.Msg.MOTOROMNI_CURVE_FOR_TOOLTIP = "Starts the robot with the combined speed of specific speeds in two directions [0;100] and stops after a specific distance."; // untranslated
Blockly.Msg.MOTOROMNI_CURVE_TOOLTIP = "Starts the robot with the combined speed of specific speeds in three directions [0;100]."; // untranslated
Blockly.Msg.MOTOROMNI_POSITION_TOOLTIP = "Drives the robot to a specific coordinate given by the odometry data with a specific speed."; // 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 = "Representa el chasis del robot Bot 'n Roll";
Blockly.Msg.MOTOR_BACKWARD = "hacia atrás";
Blockly.Msg.MOTOR_BIG = "grande";