forked from bear-lab-3d/Prusa-Firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang_en_lt.txt
1403 lines (1053 loc) · 21.6 KB
/
lang_en_lt.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#MSG_IR_03_OR_OLDER c=18
" 0.3 or older"
"\x00"
#MSG_FS_V_03_OR_OLDER c=18
"FS v0.3 or older"
"\x00"
#MSG_IR_04_OR_NEWER c=18
" 0.4 or newer"
"\x00"
#MSG_FS_V_04_OR_NEWER c=18
"FS v0.4 or newer"
"\x00"
#MSG_IR_UNKNOWN c=18
"unknown state"
"\x00"
#MSG_MEASURED_OFFSET c=20
"[0;0] point offset"
"\x00"
#MSG_CRASH_DET_ONLY_IN_NORMAL c=20 r=4
"Crash detection can\x0abe turned on only in\x0aNormal mode"
"\x00"
#MSG_CRASH_DET_STEALTH_FORCE_OFF c=20 r=4
"WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode"
"\x00"
#MSG_BABYSTEPPING_Z c=15
"Adjusting Z:"
"\x00"
#MSG_SELFTEST_CHECK_ALLCORRECT c=20
"All correct"
"\x00"
#MSG_WIZARD_DONE c=20 r=8
"All is done. Happy printing!"
"\x00"
#MSG_AMBIENT c=14
"Ambient"
"\x00"
#MSG_AUTO c=6
"Auto"
"\x00"
#MSG_PRESS c=20 r=2
"and press the knob"
"\x00"
#MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2
"Are left and right Z~carriages all up?"
"\x00"
#MSG_AUTO_HOME c=18
"Auto home"
"\x00"
#MSG_AUTOLOAD_FILAMENT c=18
"AutoLoad filament"
"\x00"
#MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4
"Autoloading filament available only when filament sensor is turned on..."
"\x00"
#MSG_AUTOLOADING_ENABLED c=20 r=4
"Autoloading filament is active, just press the knob and insert filament..."
"\x00"
#MSG_SELFTEST_AXIS_LENGTH c=20
"Axis length"
"\x00"
#MSG_SELFTEST_AXIS c=16
"Axis"
"\x00"
#MSG_SELFTEST_BEDHEATER c=20
"Bed/Heater"
"\x00"
#MSG_BED_DONE c=20
"Bed done"
"\x00"
#MSG_BED_HEATING c=20
"Bed Heating"
"\x00"
#MSG_BED_CORRECTION_MENU c=18
"Bed level correct"
"\x00"
#MSG_BELTTEST c=18
"Belt test"
"\x00"
#MSG_BED_LEVELING_FAILED_POINT_LOW c=20 r=6
"Bed leveling failed. Sensor didn't trigger. Debris on nozzle? Waiting for reset."
"\x00"
#MSG_BRIGHT c=6
"Bright"
"\x00"
#MSG_BRIGHTNESS c=18
"Brightness"
"\x00"
#MSG_BED c=13
"Bed"
"\x00"
#MSG_BELT_STATUS c=18
"Belt status"
"\x00"
#MSG_RECOVER_PRINT c=20 r=2
"Blackout occurred. Recover print?"
"\x00"
#MSG_CALIBRATING_HOME c=20
"Calibrating home"
"\x00"
#MSG_CALIBRATE_BED c=18
"Calibrate XYZ"
"\x00"
#MSG_HOMEYZ c=18
"Calibrate Z"
"\x00"
#MSG_CALIBRATE_PINDA c=17
"Calibrate"
"\x00"
#MSG_CANCEL2 c=10
">Cancel"
"\x00"
#MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8
"Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done."
"\x00"
#MSG_CALIBRATE_Z_AUTO c=20 r=2
"Calibrating Z"
"\x00"
#MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8
"Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done."
"\x00"
#MSG_HOMEYZ_DONE c=20
"Calibration done"
"\x00"
#MSG_MENU_CALIBRATION c=18
"Calibration"
"\x00"
#MSG_SD_REMOVED c=20
"Card removed"
"\x00"
#MSG_CHECKING_FILE c=17
"Checking file"
"\x00"
#MSG_NOT_COLOR c=19
"Color not correct"
"\x00"
#MSG_COOLDOWN c=18
"Cooldown"
"\x00"
#MSG_COPY_SEL_LANG c=20 r=3
"Copy selected language?"
"\x00"
#MSG_CRASHDETECT c=13
"Crash det."
"\x00"
#MSG_CHOOSE_FIL_1ST_LAYERCAL c=20 r=7
"Choose a filament for the First Layer Calibration and select it in the on-screen menu."
"\x00"
#MSG_CRASH_DETECTED c=20
"Crash detected."
"\x00"
#MSG_CRASH_RESUME c=20 r=3
"Crash detected. Resume print?"
"\x00"
#MSG_CRASH c=7
"Crash"
"\x00"
#MSG_CURRENT c=19
"Current"
"\x00"
#MSG_DATE c=17
"Date:"
"\x00"
#MSG_COMMUNITY_MADE c=18
"Community made"
"\x00"
#MSG_DISABLE_STEPPERS c=18
"Disable steppers"
"\x00"
#MSG_BABYSTEP_Z_NOT_SET c=20 r=12
"Distance between tip of the nozzle and the bed surface has not been set yet. Please follow the manual, chapter First steps, section First layer calibration."
"\x00"
#MSG_FS_CONTINUE c=5
"Cont."
"\x00"
#MSG_WIZARD_REPEAT_V2_CAL c=20 r=7
"Do you want to repeat last step to readjust distance between nozzle and heatbed?"
"\x00"
#MSG_EXTRUDER_CORRECTION c=13
"E-correct:"
"\x00"
#MSG_EJECT_FILAMENT c=16
"Eject filament"
"\x00"
#MSG_EJECTING_FILAMENT c=20
"Ejecting filament"
"\x00"
#MSG_SELFTEST_ENDSTOP_NOTHIT c=20
"Endstop not hit"
"\x00"
#MSG_SELFTEST_ENDSTOP c=16
"Endstop"
"\x00"
#MSG_SELFTEST_ENDSTOPS c=20
"Endstops"
"\x00"
#MSG_STACK_ERROR c=20 r=4
"Error - static memory has been overwritten"
"\x00"
#MSG_CUT_FILAMENT c=16
"Cut filament"
"\x00"
#MSG_CUTTER c=9
"Cutter"
"\x00"
#MSG_MMU_CUTTING_FIL c=18
"Cutting filament"
"\x00"
#MSG_FSENS_NOT_RESPONDING c=20 r=4
"ERROR: Filament sensor is not responding, please check connection."
"\x00"
#MSG_DIM c=6
"Dim"
"\x00"
#MSG_ERROR c=10
"ERROR:"
"\x00"
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
"Extruder fan:"
"\x00"
#MSG_INFO_EXTRUDER c=18
"Extruder info"
"\x00"
#MSG_EXTRUDER c=17
"Extruder"
"\x00"
#MSG_MMU_FAIL_STATS c=18
"Fail stats MMU"
"\x00"
#MSG_FSENSOR_AUTOLOAD c=13
"F. autoload"
"\x00"
#MSG_FAIL_STATS c=18
"Fail stats"
"\x00"
#MSG_FAN_SPEED c=14
"Fan speed"
"\x00"
#MSG_SELFTEST_FAN c=20
"Fan test"
"\x00"
#MSG_FANS_CHECK c=13
"Fans check"
"\x00"
#MSG_FSENSOR c=12
"Fil. sensor"
"\x00"
#MSG_FIL_RUNOUTS c=15
"Fil. runouts"
"\x00"
#MSG_FILAMENT_CLEAN c=20 r=2
"Filament extruding & with correct color?"
"\x00"
#MSG_NOT_LOADED c=19
"Filament not loaded"
"\x00"
#MSG_SELFTEST_FILAMENT_SENSOR c=17
"Filament sensor"
"\x00"
#MSG_FILAMENT_USED c=19
"Filament used"
"\x00"
#MSG_PRINT_TIME c=19
"Print time"
"\x00"
#MSG_FS_ACTION c=10
"FS Action"
"\x00"
#MSG_FILE_INCOMPLETE c=20 r=3
"File incomplete. Continue anyway?"
"\x00"
#MSG_FINISHING_MOVEMENTS c=20
"Finishing movements"
"\x00"
#MSG_V2_CALIBRATION c=18
"First layer cal."
"\x00"
#MSG_WIZARD_SELFTEST c=20 r=8
"First, I will run the selftest to check most common assembly problems."
"\x00"
#MSG_MMU_FIX_ISSUE c=20 r=4
"Fix the issue and then press button on MMU unit."
"\x00"
#MSG_FLOW c=15
"Flow"
"\x00"
#MSG_SELFTEST_COOLING_FAN c=20
"Front print fan?"
"\x00"
#MSG_BED_CORRECTION_FRONT c=14
"Front side[um]"
"\x00"
#MSG_SELFTEST_FANS c=20
"Front/left fans"
"\x00"
#MSG_SELFTEST_HEATERTHERMISTOR c=20
"Heater/Thermistor"
"\x00"
#MSG_BED_HEATING_SAFETY_DISABLED c=20 r=4
"Heating disabled by safety timer."
"\x00"
#MSG_HEATING_COMPLETE c=20
"Heating done."
"\x00"
#MSG_HEATING c=20
"Heating"
"\x00"
#MSG_WIZARD_WELCOME c=20 r=7
"Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?"
"Sveiki, as esu jusu originalus Prusa i3 spausdintuvas. Ar noretumete, kad padetu jums atlikti sarankos procesa?"
#MSG_FILAMENTCHANGE c=18
"Change filament"
"\x00"
#MSG_CHANGE_SUCCESS c=20
"Change success!"
"\x00"
#MSG_CORRECTLY c=20
"Changed correctly?"
"\x00"
#MSG_SELFTEST_CHECK_BED c=20
"Checking bed"
"\x00"
#MSG_SELFTEST_CHECK_ENDSTOPS c=20
"Checking endstops"
"\x00"
#MSG_SELFTEST_CHECK_HOTEND c=20
"Checking hotend"
"\x00"
#MSG_SELFTEST_CHECK_FSENSOR c=20
"Checking sensors"
"\x00"
#MSG_CHECKING_X c=20
"Checking X axis"
"\x00"
#MSG_CHECKING_Y c=20
"Checking Y axis"
"\x00"
#MSG_SELFTEST_CHECK_Z c=20
"Checking Z axis"
"\x00"
#MSG_CHOOSE_EXTRUDER c=20
"Choose extruder:"
"\x00"
#MSG_CHOOSE_FILAMENT c=20
"Choose filament:"
"\x00"
#MSG_FILAMENT c=17
"Filament"
"\x00"
#MSG_WIZARD_XYZ_CAL c=20 r=8
"I will run xyz calibration now. It will take approx. 12 mins."
"\x00"
#MSG_WIZARD_Z_CAL c=20 r=8
"I will run z calibration now."
"\x00"
#MSG_WATCH c=18
"Info screen"
"\x00"
#MSG_INSERT_FILAMENT c=20
"Insert filament"
"\x00"
#MSG_FILAMENT_LOADED c=20 r=2
"Is filament loaded?"
"\x00"
#MSG_STEEL_SHEET_CHECK c=20 r=2
"Is steel sheet on heatbed?"
"\x00"
#MSG_LAST_PRINT_FAILURES c=20
"Last print failures"
"\x00"
#MSG_WIZARD_WELCOME_SHIPPING c=20 r=16
"Hi, I am your Original Prusa i3 printer. I will guide you through a short setup process, in which the Z-axis will be calibrated. Then, you will be ready to print."
"\x00"
#MSG_ADDITIONAL_SHEETS c=20 r=9
"If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets."
"\x00"
#MSG_LAST_PRINT c=18
"Last print"
"\x00"
#MSG_SELFTEST_EXTRUDER_FAN c=20
"Left hotend fan?"
"\x00"
#MSG_LEFT c=10
"Left"
"\x00"
#MSG_BED_CORRECTION_LEFT c=14
"Left side [um]"
"\x00"
#MSG_LIN_CORRECTION c=18
"Lin. correction"
"\x00"
#MSG_BABYSTEP_Z c=18
"Live adjust Z"
"\x00"
#MSG_INSERT_FIL c=20 r=6
"Insert the filament (do not load it) into the extruder and then press the knob."
"\x00"
#MSG_LOAD_FILAMENT c=17
"Load filament"
"\x00"
#MSG_LOADING_COLOR c=20
"Loading color"
"\x00"
#MSG_LOADING_FILAMENT c=20
"Loading filament"
"\x00"
#MSG_ITERATION c=12
"Iteration"
"\x00"
#MSG_LOOSE_PULLEY c=20
"Loose pulley"
"\x00"
#MSG_LOAD_TO_NOZZLE c=18
"Load to nozzle"
"\x00"
#MSG_M117_V2_CALIBRATION c=25
"M117 First layer cal."
"\x00"
#MSG_MAIN c=18
"Main"
"\x00"
#MSG_BL_HIGH c=12
"Level Bright"
"\x00"
#MSG_BL_LOW c=12
"Level Dimmed"
"\x00"
#MSG_MEASURE_BED_REFERENCE_HEIGHT_LINE1 c=20 r=3
"Measuring reference height of calibration point"
"\x00"
#MSG_MESH_BED_LEVELING c=18
"Mesh Bed Leveling"
"\x00"
#MSG_MMU_OK_RESUMING_POSITION c=20 r=4
"MMU OK. Resuming position..."
"\x00"
#MSG_MMU_OK_RESUMING_TEMPERATURE c=20 r=4
"MMU OK. Resuming temperature..."
"\x00"
#MSG_MEASURED_SKEW c=14
"Measured skew"
"\x00"
#MSG_MMU_FAILS c=15
"MMU fails"
"\x00"
#MSG_MMU_LOAD_FAILED c=20
"MMU load failed"
"\x00"
#MSG_MMU_LOAD_FAILS c=15
"MMU load fails"
"\x00"
#MSG_MMU_OK_RESUMING c=20 r=4
"MMU OK. Resuming..."
"\x00"
#MSG_MODE c=6
"Mode"
"\x00"
#MSG_MK3_FIRMWARE_ON_MK3S c=20 r=4
"MK3 firmware detected on MK3S printer"
"\x00"
#MSG_NORMAL c=7
"Normal"
"\x00"
#MSG_SILENT c=7
"Silent"
"\x00"
#MSG_MMU_USER_ATTENTION c=20 r=3
"MMU needs user attention."
"\x00"
#MSG_MMU_POWER_FAILS c=15
"MMU power fails"
"\x00"
#MSG_STEALTH c=7
"Stealth"
"\x00"
#MSG_AUTO_POWER c=10
"Auto power"
"\x00"
#MSG_HIGH_POWER c=10
"High power"
"\x00"
#MSG_MMU_CONNECTED c=18
"MMU2 connected"
"\x00"
#MSG_SELFTEST_MOTOR c=18
"Motor"
"\x00"
#MSG_MOVE_AXIS c=18
"Move axis"
"\x00"
#MSG_MOVE_X c=18
"Move X"
"\x00"
#MSG_MOVE_Y c=18
"Move Y"
"\x00"
#MSG_MOVE_Z c=18
"Move Z"
"\x00"
#MSG_NO_MOVE c=20
"No move."
"\x00"
#MSG_NO_CARD c=18
"No SD card"
"\x00"
#MSG_NA c=3
"N/A"
"\x00"
#MSG_NO c=4
"No"
"\x00"
#MSG_SELFTEST_NOTCONNECTED c=20
"Not connected"
"\x00"
#MSG_NEW_FIRMWARE_AVAILABLE c=20 r=2
"New firmware version available:"
"\x00"
#MSG_SELFTEST_FAN_NO c=19
"Not spinning"
"\x00"
#MSG_WIZARD_V2_CAL c=20 r=8
"Now I will calibrate distance between tip of the nozzle and heatbed surface."
"\x00"
#MSG_WIZARD_WILL_PREHEAT c=20 r=4
"Now I will preheat nozzle for PLA."
"\x00"
#MSG_NOZZLE c=12
"Nozzle"
"\x00"
#MSG_DEFAULT_SETTINGS_LOADED c=20 r=6
"Old settings found. Default PID, Esteps etc. will be set."
"\x00"
#MSG_REMOVE_TEST_PRINT c=20 r=4
"Now remove the test print from steel sheet."
"\x00"
#MSG_NOZZLE_FAN c=10
"Nozzle FAN"
"\x00"
#MSG_PAUSE_PRINT c=18
"Pause print"
"\x00"
#MSG_PID_RUNNING c=20
"PID cal."
"\x00"
#MSG_PID_FINISHED c=20
"PID cal. finished"
"\x00"
#MSG_PID_EXTRUDER c=17
"PID calibration"
"\x00"
#MSG_PINDA_PREHEAT c=20
"PINDA Heating"
"\x00"
#MSG_PAPER c=20 r=10
"Place a sheet of paper under the nozzle during the calibration of first 4 points. If the nozzle catches the paper, power off the printer immediately."
"\x00"
#MSG_WIZARD_CLEAN_HEATBED c=20 r=8
"Please clean heatbed and then press the knob."
"\x00"
#MSG_CONFIRM_NOZZLE_CLEAN c=20 r=8
"Please clean the nozzle for calibration. Click when done."
"\x00"
#MSG_SELFTEST_PLEASECHECK c=20
"Please check:"
"\x00"
#MSG_WIZARD_CALIBRATION_FAILED c=20 r=8
"Please check our handbook and fix the problem. Then resume the Wizard by rebooting the printer."
"\x00"
#MSG_CHECK_IDLER c=20 r=5
"Please open idler and remove filament manually."
"\x00"
#MSG_PLACE_STEEL_SHEET c=20 r=5
"Please place steel sheet on heatbed."
"\x00"
#MSG_PRESS_TO_UNLOAD c=20 r=4
"Please press the knob to unload filament"
"\x00"
#MSG_PULL_OUT_FILAMENT c=20 r=4
"Please pull out filament immediately"
"\x00"
#MSG_EJECT_REMOVE c=20 r=4
"Please remove filament and then press the knob."
"\x00"
#MSG_REMOVE_STEEL_SHEET c=20 r=4
"Please remove steel sheet from heatbed."
"\x00"
#MSG_RUN_XYZ c=20 r=4
"Please run XYZ calibration first."
"\x00"
#MSG_UPDATE_MMU2_FW c=20 r=4
"Please update firmware in your MMU2. Waiting for reset."
"\x00"
#MSG_PLEASE_WAIT c=20
"Please wait"
"\x00"
#MSG_REMOVE_SHIPPING_HELPERS c=20 r=3
"Please remove shipping helpers first."
"\x00"
#MSG_PREHEAT_NOZZLE c=20
"Preheat the nozzle!"
"\x00"
#MSG_PREHEAT c=18
"Preheat"
"\x00"
#MSG_WIZARD_HEATING c=20 r=3
"Preheating nozzle. Please wait."
"\x00"
#MSG_NEW_FIRMWARE_PLEASE_UPGRADE c=20
"Please upgrade."
"\x00"
#MSG_PRESS_TO_PREHEAT c=20 r=4
"Press the knob to preheat nozzle and continue."
"\x00"
#MSG_FS_PAUSE c=5
"Pause"
"\x00"
#MSG_POWER_FAILURES c=15
"Power failures"
"\x00"
#MSG_PRINT_ABORTED c=20
"Print aborted"
"\x00"
#MSG_PREHEATING_TO_LOAD c=20
"Preheating to load"
"\x00"
#MSG_PREHEATING_TO_UNLOAD c=20
"Preheating to unload"
"\x00"
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
"Print fan:"
"\x00"
#MSG_CARD_MENU c=18
"Print from SD"
"\x00"
#MSG_PRESS_KNOB c=20
"Press the knob"
"\x00"
#MSG_PRINT_PAUSED c=20
"Print paused"
"\x00"
#MSG_RESUME_NOZZLE_TEMP c=20 r=4
"Press the knob to resume nozzle temperature."
"\x00"
#MSG_FOLLOW_CALIBRATION_FLOW c=20 r=8
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
"\x00"
#MSG_PRINT_FAN c=10
"Print FAN"
"\x00"
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
"Please insert filament into the extruder, then press the knob to load it."
"\x00"
#MSG_MMU_INSERT_FILAMENT_FIRST_TUBE c=20 r=6
"Please insert filament into the first tube of the MMU, then press the knob to load it."
"\x00"
#MSG_PLEASE_LOAD_PLA c=20 r=4
"Please load filament first."
"\x00"
#MSG_BED_CORRECTION_REAR c=14
"Rear side [um]"
"\x00"
#MSG_UNLOAD_FILAMENT_REPEAT c=20 r=4
"Please unload the filament first, then repeat this action."
"\x00"
#MSG_CHECK_IR_CONNECTION c=20 r=4
"Please check the IR sensor connection, unload filament if present."
"\x00"
#MSG_RECOVERING_PRINT c=20
"Recovering print"
"\x00"
#MSG_REMOVE_OLD_FILAMENT c=20 r=5
"Remove old filament and press the knob to start loading new filament."
"\x00"
#MSG_CALIBRATE_BED_RESET c=18
"Reset XYZ calibr."
"\x00"
#MSG_RESET c=14
"Reset"
"\x00"
#MSG_RESUME_PRINT c=18
"Resume print"
"\x00"
#MSG_RESUMING_PRINT c=20
"Resuming print"
"\x00"
#MSG_BED_CORRECTION_RIGHT c=14
"Right side[um]"
"\x00"
#MSG_RPI_PORT c=13
"RPi port"
"\x00"
#MSG_WIZARD_RERUN c=20 r=7
"Running Wizard will delete current calibration results and start from the beginning. Continue?"
"\x00"
#MSG_SD_CARD c=8
"SD card"
"\x00"
#MSG_RIGHT c=10
"Right"
"\x00"
#MSG_FIND_BED_OFFSET_AND_SKEW_LINE1 c=20 r=3
"Searching bed calibration point"
"\x00"
#MSG_LANGUAGE_SELECT c=18
"Select language"
"\x00"
#MSG_SELFTEST_OK c=20
"Self test OK"
"\x00"
#MSG_SELFTEST_START c=20
"Self test start"
"\x00"
#MSG_SELFTEST c=18
"Selftest"
"\x00"
#MSG_SELFTEST_ERROR c=20
"Selftest error!"
"\x00"
#MSG_SELFTEST_FAILED c=20
"Selftest failed"
"\x00"
#MSG_FORCE_SELFTEST c=20 r=8
"Selftest will be run to calibrate accurate sensorless rehoming."
"\x00"
#MSG_SEL_PREHEAT_TEMP c=20 r=6
"Select nozzle preheat temperature which matches your material."
"\x00"
#MSG_SET_TEMPERATURE c=20
"Set temperature:"
"\x00"
#MSG_SETTINGS c=18
"Settings"
"\x00"
#MSG_SHOW_END_STOPS c=18
"Show end stops"
"\x00"
#MSG_FILE_CNT c=20 r=6
"Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100."
"\x00"
#MSG_SORT c=7
"Sort"
"\x00"
#MSG_NONE c=8
"None"
"\x00"
#MSG_SORT_TIME c=8
"Time"
"\x00"
#MSG_SEVERE_SKEW c=14
"Severe skew"
"\x00"