forked from RaspberryPiFoundation/blockly
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpl.js
More file actions
2303 lines (2299 loc) · 192 KB
/
Copy pathpl.js
File metadata and controls
2303 lines (2299 loc) · 192 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.pl');
goog.require('Blockly.Msg');
Blockly.Msg.ABOUT = "about"; // untranslated
Blockly.Msg.ACCELERATION_TOOLTIP = "Pobierz wartość przyspieszenia w tysięcznych częściach grawitacji. ";
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 = "Znacznik dodatkowej aktywności";
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 = "Reprezentuje uczestnika";
Blockly.Msg.ADDRESS = "address"; // untranslated
Blockly.Msg.ADD_COMMENT = "Dodaj komentarz";
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 = "analogowy/a";
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 = "Reprezentuje Bot'n Roll z podłączonymi aktorami i czujnikami. Są również dostępne wbudowane czujniki i aktorzy, na przykład przyciski, wyświetlacz ...";
Blockly.Msg.AREA = "area"; // untranslated
Blockly.Msg.AUTH = "Autoryzuj ten program, aby można było zapisać Twoją pracę i umożliwić Ci dzielenie się nią z innymi.";
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 = "Uruchomienie tego bloku nie będzie miało żadnego skutku!";
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 = "Zwraca poprzednio zapamiętaną liczbę.";
Blockly.Msg.BOB3_RECALL_NUMBER = "przypomnij liczbę";
Blockly.Msg.BOB3_REMEMBER_NUMBER = "zapamiętaj liczbę";
Blockly.Msg.BOB3_SAVENUMBER_TOOLTIP = "Liczba do zapamiętania powinna być liczbą całkowitą w zakresie 0-255.";
Blockly.Msg.BOTH = "obie";
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 = "diody kostki sterującej";
Blockly.Msg.BRICKLIGHT_BLUE = "niebieski";
Blockly.Msg.BRICKLIGHT_COLOR = "kolor";
Blockly.Msg.BRICKLIGHT_DOUBLE_FLASH = "podwójne miganie";
Blockly.Msg.BRICKLIGHT_FLASH = "miganie";
Blockly.Msg.BRICKLIGHT_GREEN = "zielony";
Blockly.Msg.BRICKLIGHT_OFF_TOOLTIP = "Wyłącza diody kostki sterującej.";
Blockly.Msg.BRICKLIGHT_ON = "włącz";
Blockly.Msg.BRICKLIGHT_ON_TOOLTIP = "Włącza diody kostki sterującej.";
Blockly.Msg.BRICKLIGHT_ORANGE = "pomarańczowy";
Blockly.Msg.BRICKLIGHT_RED = "czerwony";
Blockly.Msg.BRICKLIGHT_RESET_TOOLTIP = "Resetuje diody kostki sterującej. Przywraca domyślne ustawienia: migająca zielona dioda.";
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 = "szerokość toru";
Blockly.Msg.BRICK_USERNAME = "user name"; // untranslated
Blockly.Msg.BRICK_WHEEL_DIAMETER = "średnica koła";
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 = "Udostępnij";
Blockly.Msg.BUTTON_DO_UPLOAD_GALLERY = "Wyślij »$« tdo galerii";
Blockly.Msg.BUTTON_EMPTY_LIST = "Pusta lista";
Blockly.Msg.BUZZER_TOOLTIP = "Represents a buzzer."; // untranslated
Blockly.Msg.CALLIBOT_TOOLTIP = "Represents the Calli:bot extension board."; // untranslated
Blockly.Msg.CALLIOPEBRICK_TOOLTIP = "Reprezentuje Calliope - kieszonkowy, programowalny komputer. Ma on również wbudowane działania i czujniki, np. przyciski, wyświetlacz…";
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 = "środek";
Blockly.Msg.CHANGE_VALUE_TITLE = "Zmień wartość:";
Blockly.Msg.CHAT = "Rozmawiaj z swoim współpracownikiem, pisząc w tym polu!";
Blockly.Msg.CIRCLE = "circle"; // untranslated
Blockly.Msg.CLEAN_UP = "Uporządkuj bloki";
Blockly.Msg.CLEAR = "clear"; // untranslated
Blockly.Msg.COLLAPSE_ALL = "Zwiń bloki";
Blockly.Msg.COLLAPSE_BLOCK = "Zwiń blok";
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 = "kolor 1";
Blockly.Msg.COLOUR_BLEND_COLOUR2 = "kolor 2";
Blockly.Msg.COLOUR_BLEND_HELPURL = "http://meyerweb.com/eric/tools/color-blend/";
Blockly.Msg.COLOUR_BLEND_RATIO = "proporcja";
Blockly.Msg.COLOUR_BLEND_TITLE = "wymieszaj";
Blockly.Msg.COLOUR_BLEND_TOOLTIP = "Miesza dwa kolory w danej proporcji (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://en.wikipedia.org/wiki/Color";
Blockly.Msg.COLOUR_PICKER_TOOLTIP = "Wybierz kolor z palety.";
Blockly.Msg.COLOUR_RANDOM_HELPURL = "http://randomcolour.com"; // untranslated
Blockly.Msg.COLOUR_RANDOM_TITLE = "losowy kolor";
Blockly.Msg.COLOUR_RANDOM_TOOLTIP = "Wybierz kolor w sposób losowy.";
Blockly.Msg.COLOUR_RGB_BLUE = "niebieski";
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 = "zielony";
Blockly.Msg.COLOUR_RGB_HELPURL = "http://www.december.com/html/spec/colorper.html";
Blockly.Msg.COLOUR_RGB_RED = "czerwony";
Blockly.Msg.COLOUR_RGB_TITLE = "kolor z";
Blockly.Msg.COLOUR_RGB_TOOLTIP = "Połącz czerwony, zielony i niebieski w odpowiednich proporcjach, tak aby powstał nowy kolor. Zawartość każdego z nich określa liczba z przedziału od 0 do 255.";
Blockly.Msg.COLOUR_RGB_WHITE = "biały";
Blockly.Msg.COLOUR_SEGMENT = "colour segment"; // untranslated
Blockly.Msg.COLOUR_THRESHOLD = "colour threshold"; // untranslated
Blockly.Msg.COLOUR_TOOLTIP = "Reprezentuje czujnik koloru";
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 = "Reprezentuje czujnik kompasu";
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 = "Kierunek obrotów silnika z lewej i prawej strony jest inny!";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_LEFT_MISSING = "Brakuje konfiguracji dla lewego silnika";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_LEFT_UNREGULATED = "Lewy silnik jest niewyregulowany";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_MISSING = "Brakuje silnika na danym porcie";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_RIGHT_MISSING = "Brakuje konfiguracji dla prawego silnika";
Blockly.Msg.CONFIGURATION_ERROR_MOTOR_RIGHT_UNREGULATED = "Prawy silnik jest niewyregulowany";
Blockly.Msg.CONFIGURATION_ERROR_MULTIPLE_LEFT_MOTORS = "Masz wiele silników z lewej strony przypisanych do danej konfiguracji!";
Blockly.Msg.CONFIGURATION_ERROR_MULTIPLE_RIGHT_MOTORS = "Masz wiele silników z prawej strony przypisanych do danej konfiguracji!";
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 = "Ten czujnik nie jest do portu!";
Blockly.Msg.CONFIGURATION_ERROR_SENSOR_WRONG = "Połączony złego czujnika do tego portu!";
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 = "Kliknij tutaj, aby usunąć wszystkie wybrane programy. ";
Blockly.Msg.CONFLIST_DELETE_TOOLTIP = "Kliknij tutaj, aby usunąć konfigurację twojego robota. ";
Blockly.Msg.CONFLIST_LOAD_TOOLTIP = "Kloknij tutaj aby wczytać konfigurację twojego robota. ";
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 = "połączenie z robotem %1 aktywne?";
Blockly.Msg.CONNECTION_CHECK_TOOLTIP = "sprawdzić, czy połączenie z robotem jest aktywne.";
Blockly.Msg.CONNECTION_CONNECT = "połącz z robotem";
Blockly.Msg.CONNECTION_FROM_CONNECTION = "z połączenia";
Blockly.Msg.CONNECTION_FROM_ROBOT = "z robota";
Blockly.Msg.CONNECTION_MBED_RECEIVE_TOOLTIP = "Odczytuje wiadomość z jednego z kanałów (0-255). Domyślny kanał to 0. ";
Blockly.Msg.CONNECTION_MBED_SEND_TOOLTIP = "Wysyła wiadomość do innego systemu. Możesz podać siłę sygnału od 0 do 7, gdzie 0 to bardzo niska a 7 największa. Wiadomość jest wysyłana kanałem 0, chyba, że podasz inny kanał.";
Blockly.Msg.CONNECTION_MESSAGE = "message"; // untranslated
Blockly.Msg.CONNECTION_OVER_CHANNEL = "nad kanałem";
Blockly.Msg.CONNECTION_POWER = "z siłą";
Blockly.Msg.CONNECTION_PROTOCOL_BLUETOOTH = "Bluetooth";
Blockly.Msg.CONNECTION_RECEIVED_DATA = "otrzymane wiadomości";
Blockly.Msg.CONNECTION_RECEIVE_TOOLTIP = "Czeka na wiadomość od robota zadeklarowanego w połączeniu.";
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 = "wysłane wiadomość";
Blockly.Msg.CONNECTION_SEND_TOOLTIP = "Wyślij wiadomość do innego robota";
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 = "ustaw kanał na %1";
Blockly.Msg.CONNECTION_SET_CHANNEL_TOOLTIP = "Ustawia kanał do wysyłania i odbierania wiadomości. Może być ustawiony od 0 do 255.";
Blockly.Msg.CONNECTION_START_TOOLTIP = "Próbuje nawiązać połączenie z innym robotem za pomocą Bluetooth.";
Blockly.Msg.CONNECTION_TOOLTIP = "połączenie z robotem %1 aktywne?";
Blockly.Msg.CONNECTION_TO_CONNECTION = "do polączenia";
Blockly.Msg.CONNECTION_TO_ROBOT = "do robota";
Blockly.Msg.CONNECTION_WAIT_FOR_CONNECTION = "czekanie na połączenie";
Blockly.Msg.CONNECTION_WAIT_TOOLTIP = "Czeka na połączenie za pomocą 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 = "wyjdź z pętli";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE = "przejdź do kolejnej iteracji pętli";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK = "Wyjdź z zawierającej pętli.";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE = "Pomiń resztę pętli i kontynuuj w kolejnej iteracji.";
Blockly.Msg.CONTROLS_FLOW_STATEMENTS_WARNING = "Uwaga: Ten blok może być użyty tylko w pętli.";
Blockly.Msg.CONTROLS_FOREACH_HELPURL = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated
Blockly.Msg.CONTROLS_FOREACH_TITLE = "dla każdego elementu %1 na liście %2";
Blockly.Msg.CONTROLS_FOREACH_TOOLTIP = "Dla każdego elementu listy ustaw zmienną %1 na ten element, a następnie wykonaj kilka instrukcji.";
Blockly.Msg.CONTROLS_FOR_HELPURL = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated
Blockly.Msg.CONTROLS_FOR_TITLE = "licz z %1 od %2 do %3 co %4 (wartość kroku)";
Blockly.Msg.CONTROLS_FOR_TOOLTIP = "Przypisuje zmiennej %1 wartości od numeru startowego do numeru końcowego, licząc co określony interwał, wykonując określone bloki.";
Blockly.Msg.CONTROLS_IF_ELSEIF_TOOLTIP = "Dodaj warunek do bloku „jeśli”.";
Blockly.Msg.CONTROLS_IF_ELSE_TOOLTIP = "Dodaj ostatni warunek do bloku „jeśli”, gdy żaden wcześniejszy nie był spełniony.";
Blockly.Msg.CONTROLS_IF_HELPURL = "https://github.com/google/blockly/wiki/IfElse"; // untranslated
Blockly.Msg.CONTROLS_IF_IF_TOOLTIP = "Dodaj, usuń lub zmień kolejność bloków, żeby zmodyfikować ten blok „jeśli”.";
Blockly.Msg.CONTROLS_IF_MSG_ELSE = "w przeciwnym razie";
Blockly.Msg.CONTROLS_IF_MSG_ELSEIF = "w przeciwnym razie jeśli";
Blockly.Msg.CONTROLS_IF_MSG_IF = "jeśli";
Blockly.Msg.CONTROLS_IF_TOOLTIP_1 = "Jeśli wartość jest prawdziwa, to wykonaj kilka instrukcji.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_2 = "Jeśli wartość jest prawdziwa, to wykonaj pierwszy blok instrukcji. W przeciwnym razie, wykonaj drugi blok instrukcji.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_3 = "Jeśli pierwsza wartość jest prawdziwa, to wykonaj pierwszy blok instrukcji. W przeciwnym razie, jeśli druga wartość jest prawdziwa, to wykonaj drugi blok instrukcji.";
Blockly.Msg.CONTROLS_IF_TOOLTIP_4 = "Jeśli pierwsza wartość jest prawdziwa, wykonaj pierwszy blok instrukcji. W przeciwnym razie jeśli druga wartość jest prawdziwa, wykonaj drugi blok instrukcji. Jeżeli żadna z wartości nie jest prawdziwa, wykonaj ostatni blok instrukcji.";
Blockly.Msg.CONTROLS_REPEAT_HELPURL = "https://en.wikipedia.org/wiki/For_loop";
Blockly.Msg.CONTROLS_REPEAT_INPUT_DO = "wykonaj";
Blockly.Msg.CONTROLS_REPEAT_TITLE = "powtórz %1 razy";
Blockly.Msg.CONTROLS_REPEAT_TOOLTIP = "Wykonaj niektóre instrukcje kilka razy.";
Blockly.Msg.CONTROLS_WHILEUNTIL_HELPURL = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated
Blockly.Msg.CONTROLS_WHILEUNTIL_OPERATOR_UNTIL = "powtarzaj aż";
Blockly.Msg.CONTROLS_WHILEUNTIL_OPERATOR_WHILE = "powtarzaj dopóki";
Blockly.Msg.CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL = "Gdy wartość jest nieprawdziwa, wykonaj kilka instrukcji.";
Blockly.Msg.CONTROLS_WHILEUNTIL_TOOLTIP_WHILE = "Gdy wartość jest prawdziwa, wykonaj kilka instrukcji.";
Blockly.Msg.DATATABLE_ACTUALIZATION = "Data aktualizacji";
Blockly.Msg.DATATABLE_CONFIGURATIONS = "konfiguracje";
Blockly.Msg.DATATABLE_CONFIGURATION_NAME = "Nazwa konfiguracji";
Blockly.Msg.DATATABLE_CREATED_BY = "kreator";
Blockly.Msg.DATATABLE_CREATED_ON = "Krerator zmiennych";
Blockly.Msg.DATATABLE_MEMBERS = "members"; // untranslated
Blockly.Msg.DATATABLE_PROGRAMS = "programy";
Blockly.Msg.DATATABLE_PROGRAM_NAME = "Nazwa programu";
Blockly.Msg.DATATABLE_SHARED = "Współdzielone";
Blockly.Msg.DATATABLE_SHARED_PROGRAMS = "shared programs"; // untranslated
Blockly.Msg.DATATABLE_SHARED_WITH = "Współdzielone z";
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 = "Usunąć wszystkie %1 bloki(ów)?";
Blockly.Msg.DELETE_BLOCK = "Usuń blok";
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 = "Usuń %1 bloki(ów)";
Blockly.Msg.DIAMETER_RANGE = "diameter range"; // untranslated
Blockly.Msg.DIFFERENTIALDRIVE_TOOLTIP = "Represents two motors on a common axis controlled independetly."; // untranslated
Blockly.Msg.DIGITAL = "cyfrowe";
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 = "Wyłącz blok";
Blockly.Msg.DISPLAY_ANIMATION = "animacja";
Blockly.Msg.DISPLAY_CHARACTER = "znak";
Blockly.Msg.DISPLAY_CLEAR = "wyczyść wyświetlacz";
Blockly.Msg.DISPLAY_CLEAR_TOOLTIP = "Czyści ekran";
Blockly.Msg.DISPLAY_COL = "w kolumnie";
Blockly.Msg.DISPLAY_GET_BRIGHTNESS_TOOLTIP = "Zwraca jasność wszystkich diod wyświetlacza. Zero oznacza, że wszystkie są wyłączone. 9 to wartość odpowiadająca maksymalnej jasności.";
Blockly.Msg.DISPLAY_GET_PIXEL_TOOLTIP = "Zwraca jasność tej diody. Zero oznacza, że diota jest wygaszona. 9 to wartość maksymalnej jasności.";
Blockly.Msg.DISPLAY_IMAGE = "obraz";
Blockly.Msg.DISPLAY_NEW_ROW = "in new row"; // untranslated
Blockly.Msg.DISPLAY_PICTURE = "obraz";
Blockly.Msg.DISPLAY_PICTURE_EYES_CLOSED = "oczy zamknięte";
Blockly.Msg.DISPLAY_PICTURE_EYES_OPEN = "oczy otwarte";
Blockly.Msg.DISPLAY_PICTURE_FLOWERS = "kwiaty";
Blockly.Msg.DISPLAY_PICTURE_GLASSES = "szkła";
Blockly.Msg.DISPLAY_PICTURE_TACHO = "tachometr";
Blockly.Msg.DISPLAY_PICTURE_TOOLTIP = "Wyświetla obraz na ekranie";
Blockly.Msg.DISPLAY_PIXEL_BRIGHTNESS = "jasność";
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 = "w wierszu";
Blockly.Msg.DISPLAY_SET_BRIGHTNESS_TOOLTIP = "Ustawia jasność wszystkich diod wyświetlacza. Zero oznacza, że wszystkie są wygaszone. 9 to wartość maksymalnej jasności.";
Blockly.Msg.DISPLAY_SET_PIXEL_TOOLTIP = "Ustawia jasność tej diody. Zero oznacza, że dioda jest wygaszona. 9 to wartość maksymalnej jasności. Za pomocą x i y możesz określić pozycję diody, której jasność chcesz zmienić.";
Blockly.Msg.DISPLAY_SHOW = "pokaż";
Blockly.Msg.DISPLAY_TEXT = "tekst";
Blockly.Msg.DISPLAY_TEXT_TOOLTIP = "Wyświetla tekst na ekranie";
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 = "Duplikuj";
Blockly.Msg.DURATION = "duration"; // untranslated
Blockly.Msg.ENABLE_BLOCK = "Włącz blok";
Blockly.Msg.ENCODER_GETSAMPLE_TOOLTIP = "Gets the current reading from the motor encoder."; // untranslated
Blockly.Msg.ENCODER_RESET_TOOLTIP = "Przywraca enkode silnika";
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 = "Reprezentuje cegłę EV3 z podłączonmi aktorami i czujnikami. Istnieją także wbudowane czujniki i aktorzy na przykład przyciski, wyświetlacz ...";
Blockly.Msg.EXPAND_ALL = "Rozwiń bloki";
Blockly.Msg.EXPAND_BLOCK = "Rozwiń blok";
Blockly.Msg.EXTERNAL_INPUTS = "Zewnętrzne wejścia";
Blockly.Msg.FLAME_GETSAMPLE_TOOLTIP = "Gets the current reading from the flame sensor."; // untranslated
Blockly.Msg.FLAME_TOOLTIP = "Reprezentuje sensor płomieni.";
Blockly.Msg.FLYOUT_VARIABLE_TEXT = "Potrzebujesz zmiennej? Zadeklaruj ją najpierw, klikając na znak plus \"+\" bloku »start«\u00a0.";
Blockly.Msg.FOR = "dla";
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 = "przez";
Blockly.Msg.GALLERY_DATE = "stworzony";
Blockly.Msg.GALLERY_DISLIKE = "nie fajny";
Blockly.Msg.GALLERY_LIKE = "fajny";
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 = "Ten program został już wysłany do galerii. Jeżeli chcesz go zmienić, pobierz kopię z galerii i zmodyfikuj ją. Możesz również usunąć go z galeri gdy usuwasz kopię z galerii.";
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 = "weź";
Blockly.Msg.GETSAMPLE_TOOLTIP = "Pobiera aktualny odczyt z wybranego czujnika.";
Blockly.Msg.GET_CODE_TOOLTIP = "Zwraca wartość elementu do zlutowania w części głowy. Wartości będą w zakresie 0-31.";
Blockly.Msg.GO_TO_GROUPS = "Zobacz grupy";
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 = "Resetuje czujnik żyroskopowy.";
Blockly.Msg.GYRO_TOOLTIP = "Reprezentuje żyroskopu.";
Blockly.Msg.GYRO_TOOLTIP_WEDO = "Represents a tilt sensor."; // untranslated
Blockly.Msg.HELP = "Pomoc";
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 = "»JaSemBotMan« czy »ElaMelaDudka«? Nie wszyscy muszą znać Twoje prawdziwe personalia. Pomyśl o jakimś fajnym przezwisku, które możesz łatwo zapamiętać.";
Blockly.Msg.HINT_USER_AGE = "Czy masz poniżej 16 lat? Jeżeli tak, poproś rodzica lub opiekuna o pomoc. Można podać ich e-mail aby potwierdzili Twoje konto.";
Blockly.Msg.HINT_USER_EMAIL = "Tylko dla chętnych! Jednakże, pewne funkcje naszego labu są dostępne jedynie, gdy potwierdzisz swój adres e-mail. Masz mniej, niż 16 lat? Poproś rodzica lub opiekuna o pomoc i załóż konto korzystając z jego adresu e-mail. <br><a href=\"https://www.roberta-home.de/index.php?id=138&L=1\" target=\"_blank\">Czytaj więcej...</a>";
Blockly.Msg.HINT_USER_NAME = "Wpisz swoje prawdziwe imię i nazwisko jeżeli chcesz. To jest tylko dla Twojej wiedzy, nikt inny tego nie zobaczy.";
Blockly.Msg.HINT_USER_PASSWORT = "12345 to nie hasło. Pomyśl o bezpiecznej kombinacji cyfr i liter, którą zapamiętasz.";
Blockly.Msg.HINT_USER_PASSWORT_CONFIRM = "Zapamiętasz? Lepiej się upewnij!";
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 = "Sprawdza warunek w »if«. Jeśli warunek jest spełniony, wykonujw się akcja »do«.";
Blockly.Msg.IMAGE_GET_TOOLTIP = "Zwraca wybrany obraz.";
Blockly.Msg.IMAGE_GET_TOOLTIP_ANGRY = "zły";
Blockly.Msg.IMAGE_GET_TOOLTIP_ASLEEP = "uśpiony";
Blockly.Msg.IMAGE_GET_TOOLTIP_BUTTERFLY = "motyl";
Blockly.Msg.IMAGE_GET_TOOLTIP_CHESSBOARD = "szachownica";
Blockly.Msg.IMAGE_GET_TOOLTIP_CONFUSED = "zmieszany";
Blockly.Msg.IMAGE_GET_TOOLTIP_COW = "krowa";
Blockly.Msg.IMAGE_GET_TOOLTIP_DIAMOND = "diament";
Blockly.Msg.IMAGE_GET_TOOLTIP_DIAMOND_SMALL = "mały diament";
Blockly.Msg.IMAGE_GET_TOOLTIP_DUCK = "kaczka";
Blockly.Msg.IMAGE_GET_TOOLTIP_FABULOUS = "fantastyczny";
Blockly.Msg.IMAGE_GET_TOOLTIP_GHOST = "duch";
Blockly.Msg.IMAGE_GET_TOOLTIP_GIRAFFE = "żyrafa";
Blockly.Msg.IMAGE_GET_TOOLTIP_HEART = "serce";
Blockly.Msg.IMAGE_GET_TOOLTIP_HEART_SMALL = "małe serce";
Blockly.Msg.IMAGE_GET_TOOLTIP_HOUSE = "koń";
Blockly.Msg.IMAGE_GET_TOOLTIP_MEH = "nudny!";
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_CROTCHET = "ćwierćnuta";
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_QUAVER = "ósemka";
Blockly.Msg.IMAGE_GET_TOOLTIP_MUSIC_QUAVERS = "ósemki";
Blockly.Msg.IMAGE_GET_TOOLTIP_NO = "nie";
Blockly.Msg.IMAGE_GET_TOOLTIP_PACMAN = "pacman";
Blockly.Msg.IMAGE_GET_TOOLTIP_PITCHFORK = "kamerton";
Blockly.Msg.IMAGE_GET_TOOLTIP_RABBIT = "królik";
Blockly.Msg.IMAGE_GET_TOOLTIP_ROLLERSKATE = "rolki";
Blockly.Msg.IMAGE_GET_TOOLTIP_SAD = "smutny";
Blockly.Msg.IMAGE_GET_TOOLTIP_SILLY = "głupi";
Blockly.Msg.IMAGE_GET_TOOLTIP_SKULL = "czaszka";
Blockly.Msg.IMAGE_GET_TOOLTIP_SMILE = "uśmiech";
Blockly.Msg.IMAGE_GET_TOOLTIP_SNAKE = "wąż";
Blockly.Msg.IMAGE_GET_TOOLTIP_SQUARE = "kwadrat";
Blockly.Msg.IMAGE_GET_TOOLTIP_SQUARE_SMALL = "mały kwadrat";
Blockly.Msg.IMAGE_GET_TOOLTIP_STICKFIGURE = "ludzik z kresek";
Blockly.Msg.IMAGE_GET_TOOLTIP_SWORD = "miecz";
Blockly.Msg.IMAGE_GET_TOOLTIP_TARGET = "cel";
Blockly.Msg.IMAGE_GET_TOOLTIP_TORTOISE = "żółw";
Blockly.Msg.IMAGE_GET_TOOLTIP_TRIANGLE = "trójkąt";
Blockly.Msg.IMAGE_GET_TOOLTIP_TRIANGLE_LEFT = "lewy trójkąt";
Blockly.Msg.IMAGE_GET_TOOLTIP_TSHIRT = "T-shirt";
Blockly.Msg.IMAGE_GET_TOOLTIP_UMBRELLA = "parasol";
Blockly.Msg.IMAGE_GET_TOOLTIP_XMAS = "święta";
Blockly.Msg.IMAGE_GET_TOOLTIP_YES = "tak";
Blockly.Msg.IMAGE_INVERT = "odwróć";
Blockly.Msg.IMAGE_INVERT_TOOLTIP = "Odwraca kolory obrazka. Każdy piksel o wartości zero będzie ustawiony na # lub 9, zaś piksele o wartości # lub 9 zostaną ustawione na 0 lub pusty.";
Blockly.Msg.IMAGE_SHIFT = "przesuń";
Blockly.Msg.IMAGE_SHIFT_TOOLTIP = "Przesuwa obraz w zadanym kierunku o zadaną ilość.";
Blockly.Msg.IMAGE_TOOLTIP = "Tworzy obraz dla wyświetlacza. Możesz określić jasność każdego piksela od zera do 9 lub #, gdzie zero oznacza \"nie podświetlaj\", 1 to minimalna jasność, zaś 9 lub # to maksymalna jasność.";
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 = "Wbudowane wejścia";
Blockly.Msg.INPUT = "input"; // untranslated
Blockly.Msg.INTERNAL_PORT = "wewnętrzny";
Blockly.Msg.IRSEEKER_TOOLTIP = "Represents a HiTechnic NXT IRSeeker V2 sensor."; // untranslated
Blockly.Msg.I_TIME = "integration time"; // untranslated
Blockly.Msg.JOYSTICK_GETSAMPLE_TOOLTIP = "Pobiera obecny odczyt z jednej osi joysticka.";
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 = "wyłącz 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 = "Wyłącz wybrane LEDy.";
Blockly.Msg.LED_ON = "włącz 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 = "Ustala intensywność grupy LEDów w zakresie od 0 do 100.";
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 = "Włącza diodę LED. Uważaj, jest bardzo jasna!";
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 = "Reprezentuje 8 czujników światła.";
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 = "Reprezentuje czujnik światła.";
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";
Blockly.Msg.LISTS_CREATE_EMPTY_TITLE = "utwórz pustą listę";
Blockly.Msg.LISTS_CREATE_EMPTY_TOOLTIP = "Zwraca listę, o długości 0, nie zawierającą rekordów z danymi";
Blockly.Msg.LISTS_CREATE_TITLE = "lista";
Blockly.Msg.LISTS_CREATE_WITH_CONTAINER_TITLE_ADD = "lista";
Blockly.Msg.LISTS_CREATE_WITH_CONTAINER_TOOLTIP = "Dodaj, usuń lub zmień kolejność sekcji żeby skonfigurować ten blok listy.";
Blockly.Msg.LISTS_CREATE_WITH_HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated
Blockly.Msg.LISTS_CREATE_WITH_INPUT_WITH = "Tworzenie listy z";
Blockly.Msg.LISTS_CREATE_WITH_ITEM_TOOLTIP = "Dodaj element do listy.";
Blockly.Msg.LISTS_CREATE_WITH_TOOLTIP = "Utwórz listę z dowolną ilością elementów.";
Blockly.Msg.LISTS_GET_INDEX_FIRST = "pierwszy";
Blockly.Msg.LISTS_GET_INDEX_FROM_END = "# od końca";
Blockly.Msg.LISTS_GET_INDEX_FROM_START = "#";
Blockly.Msg.LISTS_GET_INDEX_GET = "pobierz";
Blockly.Msg.LISTS_GET_INDEX_GET_REMOVE = "Pobierz i usuń";
Blockly.Msg.LISTS_GET_INDEX_LAST = "ostatni";
Blockly.Msg.LISTS_GET_INDEX_RANDOM = "losowy";
Blockly.Msg.LISTS_GET_INDEX_REMOVE = "usuń";
Blockly.Msg.LISTS_GET_INDEX_TAIL = "";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FIRST = "Zwraca pierwszy element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FROM_END = "Zwraca element z określonej pozycji na liście. #1 to ostatni element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_FROM_START = "Zwraca element z konkretnej pozycji na liście. #1 to pierwszy element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_LAST = "Zwraca ostatni element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_RANDOM = "Zwraca losowy element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST = "Usuwa i zwraca pierwszy element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM_END = "Usuwa i zwraca element z określonej pozycji na liście. #1 to ostatni element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM_START = "Usuwa i zwraca element z określonej pozycji na liście. #1 to pierwszy element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST = "Usuwa i zwraca ostatni element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM = "Usuwa i zwraca losowy element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST = "Usuwa pierwszy element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM_END = "Usuwa element z określonej pozycji na liście. #1 to ostatni element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM_START = "Usuwa element z określonej pozycji na liście. #1 to pierwszy element.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST = "Usuwa ostatni element z listy.";
Blockly.Msg.LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM = "Usuwa losowy element z listy.";
Blockly.Msg.LISTS_GET_SUBLIST_END_FROM_END = "do # od końca";
Blockly.Msg.LISTS_GET_SUBLIST_END_FROM_START = "do #";
Blockly.Msg.LISTS_GET_SUBLIST_END_LAST = "do ostatniego";
Blockly.Msg.LISTS_GET_SUBLIST_HELPURL = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated
Blockly.Msg.LISTS_GET_SUBLIST_START_FIRST = "Pobierz listę podrzędną z pierwszego";
Blockly.Msg.LISTS_GET_SUBLIST_START_FROM_END = "Pobierz listę podrzędną z # od końca";
Blockly.Msg.LISTS_GET_SUBLIST_START_FROM_START = "Pobierz listę podrzędną z #";
Blockly.Msg.LISTS_GET_SUBLIST_TAIL = "";
Blockly.Msg.LISTS_GET_SUBLIST_TOOLTIP = "Tworzy kopię z określoną część listy.";
Blockly.Msg.LISTS_INDEX_OF_FIRST = "znaleźć pierwsze wystąpienie elementu";
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 = "znajduje ostatanie wystąpienie elementu";
Blockly.Msg.LISTS_INDEX_OF_TOOLTIP = "Zwraca indeks pierwszego/ostatniego wystąpienia elementu na liście. Zwraca wartość 0, jeśli tekst nie zostanie znaleziony.";
Blockly.Msg.LISTS_INLIST = "na liście";
Blockly.Msg.LISTS_ISEMPTY_HELPURL = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated
Blockly.Msg.LISTS_ISEMPTY_TITLE = "%1 jest pusty";
Blockly.Msg.LISTS_ISEMPTY_TOOLTIP = "Zwraca \"prawda\" jeśli lista jest pusta.";
Blockly.Msg.LISTS_LENGTH_HELPURL = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated
Blockly.Msg.LISTS_LENGTH_TITLE = "długość %1";
Blockly.Msg.LISTS_LENGTH_TOOLTIP = "Zwraca długość listy.";
Blockly.Msg.LISTS_REPEAT_HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated
Blockly.Msg.LISTS_REPEAT_TITLE = "stwórz listę, powtarzając element %1 %2 razy";
Blockly.Msg.LISTS_REPEAT_TOOLTIP = "Tworzy listę składającą się z podanej wartości powtórzonej odpowiednią liczbę razy.";
Blockly.Msg.LISTS_SET_INDEX_HELPURL = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated
Blockly.Msg.LISTS_SET_INDEX_INPUT_TO = "jako";
Blockly.Msg.LISTS_SET_INDEX_INSERT = "wstaw w";
Blockly.Msg.LISTS_SET_INDEX_SET = "ustaw";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST = "Wstawia element na początku listy.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FROM_END = "Wstawia element w odpowiednim miejscu na liście. #1 to ostatni element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_FROM_START = "Wstawia element w odpowiednim miejscu na liście. #1 to pierwszy element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_LAST = "Dodaj element na koniec listy.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM = "Wstawia element w losowym miejscu na liście.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FIRST = "Ustawia pierwszy element na liście.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FROM_END = "Ustawia element w określonym miejscu na liście. #1 to ostatni element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_FROM_START = "Ustawia element w określonym miejscu na liście. #1 to pierwszy element.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_LAST = "Ustawia ostatni element na liście.";
Blockly.Msg.LISTS_SET_INDEX_TOOLTIP_SET_RANDOM = "Ustawia losowy element na liście.";
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 = "stwórz listę z tekstu";
Blockly.Msg.LISTS_SPLIT_TEXT_FROM_LIST = "stwórz tekst z listy";
Blockly.Msg.LISTS_SPLIT_TOOLTIP_JOIN = "Łączy listę tekstów w jeden tekst, rozdzielany separatorem.";
Blockly.Msg.LISTS_SPLIT_TOOLTIP_SPLIT = "Rozdziela tekst na listę mniejszych tekstów, dzieląc na każdym separatorze.";
Blockly.Msg.LISTS_SPLIT_WITH_DELIMITER = "z separatorem";
Blockly.Msg.LIST_BACK_TOOLTIP = "Powróć do poprzedniego widoku.";
Blockly.Msg.LOGIC_BOOLEAN_FALSE = "fałsz";
Blockly.Msg.LOGIC_BOOLEAN_HELPURL = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated
Blockly.Msg.LOGIC_BOOLEAN_TOOLTIP = "Zwraca 'prawda' lub 'fałsz'.";
Blockly.Msg.LOGIC_BOOLEAN_TRUE = "prawda";
Blockly.Msg.LOGIC_COMPARE_HELPURL = "https://en.wikipedia.org/wiki/Inequality_(mathematics)";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_EQ = "Zwróć \"prawda\", jeśli oba wejścia są sobie równe.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_GT = "Zwróć \"prawda\" jeśli pierwsze wejście jest większe od drugiego.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_GTE = "Zwróć \"prawda\", jeśli pierwsze wejście jest większe lub równe drugiemu.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_LT = "Zwróć \"prawda\" jeśli pierwsze wejście jest większe od drugiego.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_LTE = "Zwróć \"prawda\", jeśli pierwsze wejście jest większe lub równe drugiemu.";
Blockly.Msg.LOGIC_COMPARE_TOOLTIP_NEQ = "Zwróć \"prawda\", jeśli oba wejścia są sobie nierówne.";
Blockly.Msg.LOGIC_NEGATE_HELPURL = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated
Blockly.Msg.LOGIC_NEGATE_TITLE = "nie %1";
Blockly.Msg.LOGIC_NEGATE_TOOLTIP = "Zwraca \"prawda\", jeśli dane wejściowe są fałszywe. Zwraca \"fałsz\", jeśli dana wejściowa jest prawdziwa.";
Blockly.Msg.LOGIC_NULL = "nic";
Blockly.Msg.LOGIC_NULL_HELPURL = "https://en.wikipedia.org/wiki/Nullable_type";
Blockly.Msg.LOGIC_NULL_TOOLTIP = "Zwraca nic.";
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 = "lub";
Blockly.Msg.LOGIC_OPERATION_TOOLTIP_AND = "Zwróć \"prawda\" jeśli oba dane elementy mają wartość \"prawda\".";
Blockly.Msg.LOGIC_OPERATION_TOOLTIP_OR = "Zwróć \"prawda\" jeśli co najmniej jeden dany element ma wartość \"prawda\".";
Blockly.Msg.LOGIC_TERNARY_CONDITION = "test";
Blockly.Msg.LOGIC_TERNARY_HELPURL = "https://en.wikipedia.org/wiki/%3F:";
Blockly.Msg.LOGIC_TERNARY_IF_FALSE = "jeśli fałsz";
Blockly.Msg.LOGIC_TERNARY_IF_TRUE = "jeśli prawda";
Blockly.Msg.LOGIC_TERNARY_TOOLTIP = "Sprawdź warunek w „test”. Jeśli warunek jest prawdziwy, to zwróci „jeśli prawda”; jeśli nie jest prawdziwy to zwróci „jeśli fałsz”.";
Blockly.Msg.LOGOTOUCH_TOOLTIP = "Represents a touch sensor shaped like the Micro:bit logo."; // untranslated
Blockly.Msg.LOOP = "powtarzaj aż";
Blockly.Msg.LOOPFOREVER_TOOLTIP = "Powtarzaj w nieskończoność akcję";
Blockly.Msg.LOOP_FOREVER = "powtarzaj w nieskończoność";
Blockly.Msg.MATH_ADDITION_SYMBOL = "+";
Blockly.Msg.MATH_ARITHMETIC_HELPURL = "https://pl.wikipedia.org/wiki/Arytmetyka";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_ADD = "Zwróć sumę dwóch liczb.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_DIVIDE = "Zwróć iloraz dwóch liczb.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_MINUS = "Zwróć różnicę dwóch liczb.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_MULTIPLY = "Zwróć iloczyn dwóch liczb.";
Blockly.Msg.MATH_ARITHMETIC_TOOLTIP_POWER = "Zwróć pierwszą liczbę podniesioną do potęgi o wykładniku drugiej liczby.";
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://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter";
Blockly.Msg.MATH_CHANGE_TITLE = "zmień %1 o %2";
Blockly.Msg.MATH_CHANGE_TOOLTIP = "Dodaj liczbę do zmiennej '%1'.";
Blockly.Msg.MATH_CONSTANT_HELPURL = "https://en.wikipedia.org/wiki/Mathematical_constant";
Blockly.Msg.MATH_CONSTANT_TOOLTIP = "Zwróć jedną wspólną stałą: π (3.141), e (2.718...), φ (1.618...), sqrt(2) (1.414...), sqrt(½) (0.707...) lub ∞ (nieskończoność).";
Blockly.Msg.MATH_CONSTRAIN_HELPURL = "https://en.wikipedia.org/wiki/Clamping_%28graphics%29"; // untranslated
Blockly.Msg.MATH_CONSTRAIN_TITLE = "ogranicz %1 z dołu %2 z góry %3";
Blockly.Msg.MATH_CONSTRAIN_TOOLTIP = "Ogranicz liczbę, aby była w określonych granicach (włącznie).";
Blockly.Msg.MATH_DIVISION_SYMBOL = "/";
Blockly.Msg.MATH_IS_DIVISIBLE_BY = "jest podzielna przez";
Blockly.Msg.MATH_IS_EVEN = "jest parzysta";
Blockly.Msg.MATH_IS_NEGATIVE = "jest ujemna";
Blockly.Msg.MATH_IS_ODD = "jest nieparzysta";
Blockly.Msg.MATH_IS_POSITIVE = "jest dodatnia";
Blockly.Msg.MATH_IS_PRIME = "jest liczbą pierwszą";
Blockly.Msg.MATH_IS_TOOLTIP = "Sprawdź, czy liczba jest parzysta, nieparzysta, pierwsza, całkowita, dodatnia, ujemna, lub czy jest podzielna przez podaną liczbę. Zwraca wartość \"prawda\" lub \"fałsz\".";
Blockly.Msg.MATH_IS_WHOLE = "jest liczbą całkowitą";
Blockly.Msg.MATH_MODULO_HELPURL = "https://en.wikipedia.org/wiki/Modulo_operation";
Blockly.Msg.MATH_MODULO_TITLE = "reszta z dzielenia %1 przez %2";
Blockly.Msg.MATH_MODULO_TOOLTIP = "Zwróć resztę z dzielenia dwóch liczb przez siebie.";
Blockly.Msg.MATH_MULTIPLICATION_SYMBOL = "×";
Blockly.Msg.MATH_NUMBER_HELPURL = "https://en.wikipedia.org/wiki/Number";
Blockly.Msg.MATH_NUMBER_TOOLTIP = "Liczba.";
Blockly.Msg.MATH_ONLIST_HELPURL = "";
Blockly.Msg.MATH_ONLIST_OPERATOR_AVERAGE = "średnia elementów listy";
Blockly.Msg.MATH_ONLIST_OPERATOR_MAX = "maksymalna wartość z listy";
Blockly.Msg.MATH_ONLIST_OPERATOR_MEDIAN = "mediana listy";
Blockly.Msg.MATH_ONLIST_OPERATOR_MIN = "minimalna wartość z listy";
Blockly.Msg.MATH_ONLIST_OPERATOR_MODE = "dominanty listy";
Blockly.Msg.MATH_ONLIST_OPERATOR_RANDOM = "losowy element z listy";
Blockly.Msg.MATH_ONLIST_OPERATOR_STD_DEV = "odchylenie standardowe listy";
Blockly.Msg.MATH_ONLIST_OPERATOR_SUM = "suma elementów listy";
Blockly.Msg.MATH_ONLIST_TOOLTIP_AVERAGE = "Zwróć średnią (średnią arytmetyczną) wartości liczbowych z listy.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MAX = "Zwróć największą liczbę w liście.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MEDIAN = "Zwróć medianę listy.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MIN = "Zwróć najmniejszą liczbę w liście.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_MODE = "Zwróć listę najczęściej występujących elementów w liście.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_RANDOM = "Zwróć losowy element z listy.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_STD_DEV = "Zwróć odchylenie standardowe listy.";
Blockly.Msg.MATH_ONLIST_TOOLTIP_SUM = "Zwróć sumę wszystkich liczb z listy.";
Blockly.Msg.MATH_POWER_SYMBOL = "^";
Blockly.Msg.MATH_RANDOM_FLOAT_HELPURL = "https://en.wikipedia.org/wiki/Random_number_generation";
Blockly.Msg.MATH_RANDOM_FLOAT_TITLE_RANDOM = "losowy ułamek";
Blockly.Msg.MATH_RANDOM_FLOAT_TOOLTIP = "Zwróć losowy ułamek między 0.0 (włącznie), a 1.0 (wyłącznie).";
Blockly.Msg.MATH_RANDOM_INT_HELPURL = "https://en.wikipedia.org/wiki/Random_number_generation";
Blockly.Msg.MATH_RANDOM_INT_TITLE = "losowa liczba całkowita od %1 do %2";
Blockly.Msg.MATH_RANDOM_INT_TOOLTIP = "Zwróć losową liczbę całkowitą w ramach dwóch wyznaczonych granic, włącznie.";
Blockly.Msg.MATH_ROUND_HELPURL = "https://en.wikipedia.org/wiki/Rounding";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUND = "zaokrąglij";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUNDDOWN = "zaokrąglij w dół";
Blockly.Msg.MATH_ROUND_OPERATOR_ROUNDUP = "zaokrąglij w górę";
Blockly.Msg.MATH_ROUND_TOOLTIP = "Zaokrąglij w górę lub w dół.";
Blockly.Msg.MATH_SINGLE_HELPURL = "https://en.wikipedia.org/wiki/Square_root";
Blockly.Msg.MATH_SINGLE_OP_ABSOLUTE = "wartość bezwzględna";
Blockly.Msg.MATH_SINGLE_OP_ROOT = "pierwiastek kwadratowy";
Blockly.Msg.MATH_SINGLE_OP_SQUARE = "square"; // untranslated
Blockly.Msg.MATH_SINGLE_TOOLTIP_ABS = "Zwróć wartość bezwzględną danej liczby.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_EXP = "Zwróć e do potęgi danej liczby.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_LN = "Zwróć logarytm naturalny danej liczby.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_LOG10 = "Zwraca logarytm dziesiętny danej liczby.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_NEG = "Zwróć negację danej liczby.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_POW10 = "Zwróć 10 do potęgi danej liczby.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_ROOT = "Zwróć pierwiastek kwadratowy danej liczby.";
Blockly.Msg.MATH_SINGLE_TOOLTIP_SQUARE = "Return the number multiplied by itself."; // untranslated
Blockly.Msg.MATH_SUBTRACTION_SYMBOL = "-";
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 = "arccos";
Blockly.Msg.MATH_TRIG_ASIN = "arcsin";
Blockly.Msg.MATH_TRIG_ATAN = "arctg";
Blockly.Msg.MATH_TRIG_COS = "cos";
Blockly.Msg.MATH_TRIG_HELPURL = "https://en.wikipedia.org/wiki/Trigonometric_functions";
Blockly.Msg.MATH_TRIG_SIN = "sin";
Blockly.Msg.MATH_TRIG_TAN = "tg";
Blockly.Msg.MATH_TRIG_TOOLTIP_ACOS = "Zwróć arcus cosinus danej liczby.";
Blockly.Msg.MATH_TRIG_TOOLTIP_ASIN = "Zwróć arcus sinus danej liczby.";
Blockly.Msg.MATH_TRIG_TOOLTIP_ATAN = "Zwróć arcus tangens danej liczby.";
Blockly.Msg.MATH_TRIG_TOOLTIP_COS = "Zwróć wartość cosinusa o stopniu (nie w radianach).";
Blockly.Msg.MATH_TRIG_TOOLTIP_SIN = "Zwróć wartość sinusa o stopniu (nie w radianach).";
Blockly.Msg.MATH_TRIG_TOOLTIP_TAN = "Zwróć tangens o stopniu (nie w radianach).";
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 = "Ja";
Blockly.Msg.MENU_ABOUT = "o Open Roberta Lab";
Blockly.Msg.MENU_ABOUT_PROJECT = "o projekcie Open Roberta";
Blockly.Msg.MENU_ATTACH = "dołącz ...";
Blockly.Msg.MENU_BEGINNER = "początkujjący";
Blockly.Msg.MENU_CHANGE = "zmień ...";
Blockly.Msg.MENU_CHECK = "sprawdź";
Blockly.Msg.MENU_CODE_DOWNLOAD_TOOLTIP = "Pobierz kod źródłowy programu na twój komputer.";
Blockly.Msg.MENU_CODE_REFRESH_TOOLTIP = "Odśwież kod źródłowy, jeżeli zmieniłeś bloki kontrolne programu.";
Blockly.Msg.MENU_CONNECT = "połacz ...";
Blockly.Msg.MENU_CREATE_LINK = "utwórz łącze programu...";
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 = "usuń użytkownika ...";
Blockly.Msg.MENU_EDIT = "edycja";
Blockly.Msg.MENU_EDIT_TOOLTIP = "edycja";
Blockly.Msg.MENU_EV3 = "Przygotowanie robota";
Blockly.Msg.MENU_EXPERT = "exprert";
Blockly.Msg.MENU_EXPORT_ALL_PROGS = "export all programs"; // untranslated
Blockly.Msg.MENU_EXPORT_PROG = "exprotuj program";
Blockly.Msg.MENU_FAQ = "FAQ";
Blockly.Msg.MENU_GALLERY = "galeria";
Blockly.Msg.MENU_GALLERY_TOOLTIP = "galeria";
Blockly.Msg.MENU_GENERAL = "pomoc ogólna";
Blockly.Msg.MENU_HELP = "pomoc";
Blockly.Msg.MENU_HELP_TOOLTIP = "pomoc";
Blockly.Msg.MENU_IMPORT_PROG = "Importuj program";
Blockly.Msg.MENU_LANGUAGE = "języki";
Blockly.Msg.MENU_LANGUAGE_TOOLTIP = "języki";
Blockly.Msg.MENU_LIST = "lista ...";
Blockly.Msg.MENU_LIST_CONF = "moja konfiguracja ...";
Blockly.Msg.MENU_LIST_PROG = "moje programy ...";
Blockly.Msg.MENU_LIST_PROG_EXAMPLES = "przykłądowe programy ...";
Blockly.Msg.MENU_LOGGING = "logowanie";
Blockly.Msg.MENU_LOG_IN = "login ...";
Blockly.Msg.MENU_LOG_OUT = "wyloguj";
Blockly.Msg.MENU_MANAGE_USERGROUPS = "Manage user groups ..."; // untranslated
Blockly.Msg.MENU_MESSAGE_DOWNLOAD = "Program został pomyślnie pobrany.";
Blockly.Msg.MENU_NEW = "new ...";
Blockly.Msg.MENU_PROGRAMMING = "programowanie z NEPO";
Blockly.Msg.MENU_PROPERTIES = "ustawienia";
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 = "Otwórz/zamknij pomoc";
Blockly.Msg.MENU_RIGHT_INFO_TOOLTIP = "Otwórz/zamknij informacje";
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 = "Info";
Blockly.Msg.MENU_ROBOT_STATE_TOOLTIP = "info o robocie";
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 = "roboty";
Blockly.Msg.MENU_ROBOT_WLAN = "WLAN credentials ..."; // untranslated
Blockly.Msg.MENU_RUN_MULT_SIM = "multiple robot simulation ..."; // untranslated
Blockly.Msg.MENU_SAVE = "zapisz";
Blockly.Msg.MENU_SAVE_AS = "zapisz jako ...";
Blockly.Msg.MENU_SHORTCUT = "keyboard shortcuts"; // untranslated
Blockly.Msg.MENU_SHORTCUT_RUN = "run on robot"; // untranslated
Blockly.Msg.MENU_SHOW_AGAIN = "pokaż ponownie powianie'";
Blockly.Msg.MENU_SHOW_CODE = "pokaż kod";
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 = "Wgraj swoje własne tło dla symulatora. Zostanie ono dodane na końcu listy dostępnych teł symulatora.";
Blockly.Msg.MENU_SIM_POSE_TOOLTIP = "Przesuń robota do jego początkowego położenia.";
Blockly.Msg.MENU_SIM_ROBOT_TOOLTIP = "otwórz/zamknij widok robota";
Blockly.Msg.MENU_SIM_SCENE_TOOLTIP = "zmień scenę";
Blockly.Msg.MENU_SIM_START_TOOLTIP = "Uruchom program w symulatorze.";
Blockly.Msg.MENU_SIM_STOP_TOOLTIP = "Zatrzymaj program w symulatorze.";
Blockly.Msg.MENU_SIM_TRAIL_TOOLTIP = "Enable/Disable robot draw trail."; // untranslated
Blockly.Msg.MENU_SIM_VALUES_TOOLTIP = "Otwórz/zamknij podgląd sensorów.";
Blockly.Msg.MENU_SOURCE_CODE_EDITOR = "open source code editor"; // untranslated
Blockly.Msg.MENU_START_BRICK = "uruchom na »$«";
Blockly.Msg.MENU_START_SIM = "otwórz/zamknij symulator";
Blockly.Msg.MENU_STATE_INFO = "informacja o stanie";
Blockly.Msg.MENU_STOP_BRICK = "stop program on »$«"; // untranslated
Blockly.Msg.MENU_TOOLBOX = "NEPO-Blocks";
Blockly.Msg.MENU_TOOLBOX_BEGINNER = "NEPO-Blocks początkujący";
Blockly.Msg.MENU_TOOLBOX_EXPERT = "NEPO-Blocks ekspert";
Blockly.Msg.MENU_TUTORIAL = "tutorials"; // untranslated
Blockly.Msg.MENU_TUTORIAL_TOOLTIP = "tutorials"; // untranslated
Blockly.Msg.MENU_USER = "login";
Blockly.Msg.MENU_USERGROUP_LOG_IN = "Log in with user group ..."; // untranslated
Blockly.Msg.MENU_USER_STATE_TOOLTIP = "informacje o użytkowniku";
Blockly.Msg.MENU_USER_TOOLTIP = "użytkownik";
Blockly.Msg.MENU_WLAN_CREDENTIALS = "WLAN credentials"; // untranslated
Blockly.Msg.MENU_ZOOM = "powiększenie";
Blockly.Msg.MENU_ZOOM_IN = "powiększ";
Blockly.Msg.MENU_ZOOM_OUT = "pomniejsz";
Blockly.Msg.MENU_ZOOM_RESET = "resetuj powiększenie";
Blockly.Msg.MESSAGE_ADDED_USER = "Użytkownik »$« został dodany";
Blockly.Msg.MESSAGE_CONFIGURATION_DELETED = "Konfiguracja »$« została usunięta";
Blockly.Msg.MESSAGE_EDIT_CHECK = "Twój program jest zaznaczony!";
Blockly.Msg.MESSAGE_EDIT_SAVE_CONFIGURATION = "Twoja konfiguracja została zapisana";
Blockly.Msg.MESSAGE_EDIT_SAVE_CONFIGURATION_AS = "Twoja konfiguracja została zapisana jako »$«";
Blockly.Msg.MESSAGE_EDIT_SAVE_GROUP_AS = "Twoja grupa została utworzona";
Blockly.Msg.MESSAGE_EDIT_SAVE_PROGRAM = "Twój program został zapisany";
Blockly.Msg.MESSAGE_EDIT_SAVE_PROGRAM_AS = "Twój program został zapisany jako »$«";
Blockly.Msg.MESSAGE_EDIT_START = "Your program »$« will run in a moment!"; // untranslated
Blockly.Msg.MESSAGE_FIRMWARE_ERROR = "Istnieje konflikt z wersją firmware swojego robota i Open Roberta Lab. Proszę, skontaktuj się z nami.";
Blockly.Msg.MESSAGE_GROUP_DELETED = "Grupa »$« została usunięta";
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 = "Proszę wypełnić właściwą nazwą. Prawidłowa nazwa zaczyna się literą i może zawierać tylko litery lub cyfry.";
Blockly.Msg.MESSAGE_NOT_AVAILABLE = "Niedostępne";
Blockly.Msg.MESSAGE_PROGRAM_DELETED = "Program »$« został usunięty";
Blockly.Msg.MESSAGE_RESTART_ROBOT = "Proszę podłączyć robota do Open Roberta Lab.";
Blockly.Msg.MESSAGE_ROBOT_CONNECTED = "Twoj robot »$« jest podłączony";
Blockly.Msg.MESSAGE_ROBOT_DISCONNECTED = "Aktywny robot został odłączony";
Blockly.Msg.MESSAGE_USER_DELETED = "Usunięto użytkownika";
Blockly.Msg.MESSAGE_USER_GROUP_DELETED = "Użytkownk »$« został usunięty";
Blockly.Msg.MESSAGE_USER_LOGIN = "Witaj »$«";
Blockly.Msg.MESSAGE_USER_LOGOUT = "Jesteś wylogowany";
Blockly.Msg.MICROBITBRICK_TOOLTIP = "Reprezentuje micro:bit, kieszonkowy, programowalny komputer z wbudowanymi sensorami (przyciski, wyświetlacz) i elementami sterowalnymi.";
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 = "tryb";
Blockly.Msg.MODE_ACCELERATION = "przyspieszenie";
Blockly.Msg.MODE_ACCURACY = "accuracy"; // untranslated
Blockly.Msg.MODE_ALTITUDE = "altitude"; // untranslated
Blockly.Msg.MODE_AMBIENTLIGHT = "światło otoczenia";
Blockly.Msg.MODE_ANALOG = "analog value"; // untranslated
Blockly.Msg.MODE_ANGLE = "kąt";
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 = "zamknij";
Blockly.Msg.MODE_CLOSING = "dark"; // untranslated
Blockly.Msg.MODE_CO2EQUIVALENT = "CO2 Equivalent"; // untranslated
Blockly.Msg.MODE_COLOR = "color"; // untranslated
Blockly.Msg.MODE_COLOUR = "kolor";
Blockly.Msg.MODE_COMPASS = "compass"; // untranslated
Blockly.Msg.MODE_CURRENT = "current"; // untranslated
Blockly.Msg.MODE_DATE = "date"; // untranslated
Blockly.Msg.MODE_DEGREE = "stopnie";
Blockly.Msg.MODE_DIGITAL = "digital value"; // untranslated
Blockly.Msg.MODE_DISTANCE = "odległość";
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 = "światło otoczenia";
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 = "przeszkoda";
Blockly.Msg.MODE_OPEN = "otwórz";
Blockly.Msg.MODE_OPENING = "light"; // untranslated
Blockly.Msg.MODE_ORIENTATION = "kierunek";
Blockly.Msg.MODE_PM10 = "PM10"; // untranslated
Blockly.Msg.MODE_PM25 = "PM2.5"; // untranslated
Blockly.Msg.MODE_PRESENCE = "obecność";
Blockly.Msg.MODE_PRESSED = "wciśnięty";
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 = "szybkość";
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 = "obrót";
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 = "wartość";
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 = "silnik";
Blockly.Msg.MOTORDIFF_ON_FOR_TOOLTIP = "Uruchom robota z określoną prędkością i zatrzymaj po przebyciu danego dystansu";
Blockly.Msg.MOTORDIFF_ON_TOOLTIP = "Uruchom robota z określoną prędkością";
Blockly.Msg.MOTORDIFF_STOP_TOOLTIP = "Zatrzymaj robota";
Blockly.Msg.MOTORDIFF_TURN_FOR_TOOLTIP = "Obróć robota o podany kąt";
Blockly.Msg.MOTORDIFF_TURN_TOOLTIP = "Obroć robota";
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 = "Reprezentuje Bot'n Roll silnik podwozia .";
Blockly.Msg.MOTOR_BACKWARD = "wstecz";
Blockly.Msg.MOTOR_BIG = "dużo";