|
@@ -1,3 +1,4 @@
|
|
1
|
+<<<<<<< HEAD
|
1
|
2
|
#ifndef LANGUAGE_H
|
2
|
3
|
#define LANGUAGE_H
|
3
|
4
|
|
|
@@ -504,3 +505,482 @@
|
504
|
505
|
|
505
|
506
|
#endif
|
506
|
507
|
#endif // ifndef LANGUAGE_H
|
|
508
|
+=======
|
|
509
|
+#ifndef LANGUAGE_H
|
|
510
|
+#define LANGUAGE_H
|
|
511
|
+
|
|
512
|
+// Languages
|
|
513
|
+// 1 Custom (For you to add your own messages)
|
|
514
|
+// 2 English
|
|
515
|
+// 3 French (Waiting translation)
|
|
516
|
+// 4 German (Waiting translation)
|
|
517
|
+// 5 Spanish
|
|
518
|
+// 6 Etc
|
|
519
|
+
|
|
520
|
+#define LANGUAGE_CHOICE 1 // Pick your language from the list above
|
|
521
|
+
|
|
522
|
+#define PROTOCOL_VERSION "1.0"
|
|
523
|
+
|
|
524
|
+#if MOTHERBOARD == 7 || MOTHERBOARD == 71
|
|
525
|
+ #define MACHINE_NAME "Ultimaker"
|
|
526
|
+ #define FIRMWARE_URL "http://firmware.ultimaker.com"
|
|
527
|
+#else
|
|
528
|
+ #define MACHINE_NAME "Mendel"
|
|
529
|
+ #define FIRMWARE_URL "http://www.mendel-parts.com"
|
|
530
|
+#endif
|
|
531
|
+
|
|
532
|
+#define STRINGIFY_(n) #n
|
|
533
|
+#define STRINGIFY(n) STRINGIFY_(n)
|
|
534
|
+
|
|
535
|
+#if LANGUAGE_CHOICE == 1
|
|
536
|
+
|
|
537
|
+// LCD Menu Messages
|
|
538
|
+ #define WELCOME_MSG MACHINE_NAME " Ready."
|
|
539
|
+ #define MSG_SD_INSERTED "Card inserted"
|
|
540
|
+ #define MSG_SD_REMOVED "Card removed"
|
|
541
|
+ #define MSG_MAIN " Main \003"
|
|
542
|
+ #define MSG_AUTOSTART " Autostart"
|
|
543
|
+ #define MSG_DISABLE_STEPPERS " Disable Steppers"
|
|
544
|
+ #define MSG_AUTO_HOME " Auto Home"
|
|
545
|
+ #define MSG_SET_ORIGIN " Set Origin"
|
|
546
|
+ #define MSG_COOLDOWN " Cooldown"
|
|
547
|
+ #define MSG_EXTRUDE " Extrude"
|
|
548
|
+ #define MSG_PREHEAT_PLA " Preheat PLA"
|
|
549
|
+ #define MSG_PREHEAT_ABS " Preheat ABS"
|
|
550
|
+ #define MSG_MOVE_AXIS " Move Axis \x7E"
|
|
551
|
+ #define MSG_SPEED " Speed:"
|
|
552
|
+ #define MSG_NOZZLE " \002Nozzle:"
|
|
553
|
+ #define MSG_NOZZLE1 " \002Nozzle2:"
|
|
554
|
+ #define MSG_NOZZLE2 " \002Nozzle3:"
|
|
555
|
+ #define MSG_BED " \002Bed:"
|
|
556
|
+ #define MSG_FAN_SPEED " Fan speed:"
|
|
557
|
+ #define MSG_FLOW " Flow:"
|
|
558
|
+ #define MSG_CONTROL " Control \003"
|
|
559
|
+ #define MSG_MIN " \002 Min:"
|
|
560
|
+ #define MSG_MAX " \002 Max:"
|
|
561
|
+ #define MSG_FACTOR " \002 Fact:"
|
|
562
|
+ #define MSG_AUTOTEMP " Autotemp:"
|
|
563
|
+ #define MSG_ON "On "
|
|
564
|
+ #define MSG_OFF "Off"
|
|
565
|
+ #define MSG_PID_P " PID-P: "
|
|
566
|
+ #define MSG_PID_I " PID-I: "
|
|
567
|
+ #define MSG_PID_D " PID-D: "
|
|
568
|
+ #define MSG_PID_C " PID-C: "
|
|
569
|
+ #define MSG_ACC " Acc:"
|
|
570
|
+ #define MSG_VXY_JERK " Vxy-jerk: "
|
|
571
|
+ #define MSG_VMAX " Vmax "
|
|
572
|
+ #define MSG_X "x:"
|
|
573
|
+ #define MSG_Y "y:"
|
|
574
|
+ #define MSG_Z "z:"
|
|
575
|
+ #define MSG_E "e:"
|
|
576
|
+ #define MSG_VMIN " Vmin:"
|
|
577
|
+ #define MSG_VTRAV_MIN " VTrav min:"
|
|
578
|
+ #define MSG_AMAX " Amax "
|
|
579
|
+ #define MSG_A_RETRACT " A-retract:"
|
|
580
|
+ #define MSG_XSTEPS " Xsteps/mm:"
|
|
581
|
+ #define MSG_YSTEPS " Ysteps/mm:"
|
|
582
|
+ #define MSG_ZSTEPS " Zsteps/mm:"
|
|
583
|
+ #define MSG_ESTEPS " Esteps/mm:"
|
|
584
|
+ #define MSG_MAIN_WIDE " Main \003"
|
|
585
|
+ #define MSG_RECTRACT_WIDE " Rectract \x7E"
|
|
586
|
+ #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
|
|
587
|
+ #define MSG_MOTION_WIDE " Motion \x7E"
|
|
588
|
+ #define MSG_STORE_EPROM " Store memory"
|
|
589
|
+ #define MSG_LOAD_EPROM " Load memory"
|
|
590
|
+ #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
|
|
591
|
+ #define MSG_REFRESH "\004Refresh"
|
|
592
|
+ #define MSG_WATCH " Watch \003"
|
|
593
|
+ #define MSG_PREPARE " Prepare \x7E"
|
|
594
|
+ #define MSG_PREPARE_ALT " Prepare \003"
|
|
595
|
+ #define MSG_CONTROL_ARROW " Control \x7E"
|
|
596
|
+ #define MSG_RETRACT_ARROW " Control \x7E"
|
|
597
|
+ #define MSG_TUNE " Tune \x7E"
|
|
598
|
+ #define MSG_STOP_PRINT " Stop Print \x7E"
|
|
599
|
+ #define MSG_CARD_MENU " Card Menu \x7E"
|
|
600
|
+ #define MSG_NO_CARD " No Card"
|
|
601
|
+ #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
|
|
602
|
+ #define MSG_DWELL "Sleep..."
|
|
603
|
+ #define MSG_USERWAIT "Wait for user..."
|
|
604
|
+ #define MSG_NO_MOVE "No move."
|
|
605
|
+ #define MSG_PART_RELEASE "Partial Release"
|
|
606
|
+ #define MSG_KILLED "KILLED. "
|
|
607
|
+ #define MSG_STOPPED "STOPPED. "
|
|
608
|
+ #define MSG_PREHEAT_PLA " Preheat PLA"
|
|
609
|
+ #define MSG_PREHEAT_ABS " Preheat ABS"
|
|
610
|
+ #define MSG_STEPPER_RELEASED "Released."
|
|
611
|
+ #define MSG_CONTROL_RETRACT " Retract mm:"
|
|
612
|
+ #define MSG_CONTROL_RETRACTF " Retract F:"
|
|
613
|
+ #define MSG_CONTROL_RETRACT_ZLIFT " Hop mm:"
|
|
614
|
+ #define MSG_CONTROL_RETRACT_RECOVER " UnRet +mm:"
|
|
615
|
+ #define MSG_CONTROL_RETRACT_RECOVERF " UnRet F:"
|
|
616
|
+ #define MSG_AUTORETRACT " AutoRetr.:"
|
|
617
|
+
|
|
618
|
+// Serial Console Messages
|
|
619
|
+
|
|
620
|
+ #define MSG_Enqueing "enqueing \""
|
|
621
|
+ #define MSG_POWERUP "PowerUp"
|
|
622
|
+ #define MSG_EXTERNAL_RESET " External Reset"
|
|
623
|
+ #define MSG_BROWNOUT_RESET " Brown out Reset"
|
|
624
|
+ #define MSG_WATCHDOG_RESET " Watchdog Reset"
|
|
625
|
+ #define MSG_SOFTWARE_RESET " Software Reset"
|
|
626
|
+ #define MSG_MARLIN "Marlin "
|
|
627
|
+ #define MSG_AUTHOR " | Author: "
|
|
628
|
+ #define MSG_CONFIGURATION_VER " Last Updated: "
|
|
629
|
+ #define MSG_FREE_MEMORY " Free Memory: "
|
|
630
|
+ #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
|
|
631
|
+ #define MSG_OK "ok"
|
|
632
|
+ #define MSG_FILE_SAVED "Done saving file."
|
|
633
|
+ #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line:"
|
|
634
|
+ #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line:"
|
|
635
|
+ #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line:"
|
|
636
|
+ #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line:"
|
|
637
|
+ #define MSG_FILE_PRINTED "Done printing file"
|
|
638
|
+ #define MSG_BEGIN_FILE_LIST "Begin file list"
|
|
639
|
+ #define MSG_END_FILE_LIST "End file list"
|
|
640
|
+ #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
|
|
641
|
+ #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
|
|
642
|
+ #define MSG_ERR_NO_THERMISTORS "No thermistors - no temp"
|
|
643
|
+ #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
|
|
644
|
+ #define MSG_HEATING "Heating..."
|
|
645
|
+ #define MSG_HEATING_COMPLETE "Heating done."
|
|
646
|
+ #define MSG_BED_HEATING "Bed Heating."
|
|
647
|
+ #define MSG_BED_DONE "Bed done."
|
|
648
|
+ #define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) "\n"
|
|
649
|
+ #define MSG_COUNT_X " Count X:"
|
|
650
|
+ #define MSG_ERR_KILLED "Printer halted. kill() called !!"
|
|
651
|
+ #define MSG_ERR_STOPPED "Printer stopped deu to errors. Fix the error and use M999 to restart!. (Temperature is reset. Set it before restarting)"
|
|
652
|
+ #define MSG_RESEND "Resend:"
|
|
653
|
+ #define MSG_UNKNOWN_COMMAND "Unknown command:\""
|
|
654
|
+ #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
|
|
655
|
+ #define MSG_INVALID_EXTRUDER "Invalid extruder"
|
|
656
|
+ #define MSG_X_MIN "x_min:"
|
|
657
|
+ #define MSG_X_MAX "x_max:"
|
|
658
|
+ #define MSG_Y_MIN "y_min:"
|
|
659
|
+ #define MSG_Y_MAX "y_max:"
|
|
660
|
+ #define MSG_Z_MIN "z_min:"
|
|
661
|
+ #define MSG_Z_MAX "z_max:"
|
|
662
|
+
|
|
663
|
+ #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
|
|
664
|
+ #define MSG_SD_INIT_FAIL "SD init fail"
|
|
665
|
+ #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
|
|
666
|
+ #define MSG_SD_OPENROOT_FAIL "openRoot failed"
|
|
667
|
+ #define MSG_SD_CARD_OK "SD card ok"
|
|
668
|
+ #define MSG_SD_WORKDIR_FAIL "workDir open failed"
|
|
669
|
+ #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
|
|
670
|
+ #define MSG_SD_FILE_OPENED "File opened:"
|
|
671
|
+ #define MSG_SD_SIZE " Size:"
|
|
672
|
+ #define MSG_SD_FILE_SELECTED "File selected"
|
|
673
|
+ #define MSG_SD_WRITE_TO_FILE "Writing to file: "
|
|
674
|
+ #define MSG_SD_PRINTING_BYTE "SD printing byte "
|
|
675
|
+ #define MSG_SD_NOT_PRINTING "Not SD printing"
|
|
676
|
+ #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
|
|
677
|
+ #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir:"
|
|
678
|
+
|
|
679
|
+ #define MSG_STEPPER_TO_HIGH "Steprate to high : "
|
|
680
|
+ #define MSG_ENDSTOPS_HIT "endstops hit: "
|
|
681
|
+ #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
|
|
682
|
+ #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
|
|
683
|
+
|
|
684
|
+#endif
|
|
685
|
+#if LANGUAGE_CHOICE == 4
|
|
686
|
+
|
|
687
|
+// LCD Menu Messages
|
|
688
|
+
|
|
689
|
+ #define WELCOME_MSG MACHINE_NAME " Ready."
|
|
690
|
+
|
|
691
|
+ #define MSG_SD_INSERTED "Card inserted"
|
|
692
|
+ #define MSG_SD_REMOVED "Card removed"
|
|
693
|
+ #define MSG_MAIN " Main \003"
|
|
694
|
+ #define MSG_AUTOSTART " Autostart"
|
|
695
|
+ #define MSG_DISABLE_STEPPERS " Stepper abschalten"
|
|
696
|
+ #define MSG_AUTO_HOME " Auto Heim"
|
|
697
|
+ #define MSG_SET_ORIGIN " Position setzen"
|
|
698
|
+ #define MSG_PREHEAT_PLA " Aufheizen PLA"
|
|
699
|
+ #define MSG_PREHEAT_ABS " Aufheizen ABS"
|
|
700
|
+ #define MSG_COOLDOWN " Abkuehlen"
|
|
701
|
+ #define MSG_EXTRUDE " Extrude"
|
|
702
|
+ #define MSG_PREHEAT_PLA " Preheat PLA"
|
|
703
|
+ #define MSG_PREHEAT_ABS " Preheat ABS"
|
|
704
|
+ #define MSG_MOVE_AXIS " Move Axis \x7E"
|
|
705
|
+ #define MSG_MOVE_AXIS " Achsen verfahren \x7E"
|
|
706
|
+ #define MSG_SPEED " Geschw:"
|
|
707
|
+ #define MSG_NOZZLE " \002Duese:"
|
|
708
|
+ #define MSG_NOZZLE1 " \002Duese2:"
|
|
709
|
+ #define MSG_NOZZLE2 " \002Duese3:"
|
|
710
|
+ #define MSG_BED " \002Bett:"
|
|
711
|
+ #define MSG_FAN_SPEED " Luefter geschw.:"
|
|
712
|
+ #define MSG_FLOW " Fluss:"
|
|
713
|
+ #define MSG_CONTROL " Kontrolle \003"
|
|
714
|
+ #define MSG_MIN " \002 Min:"
|
|
715
|
+ #define MSG_MAX " \002 Max:"
|
|
716
|
+ #define MSG_FACTOR " \002 Faktor:"
|
|
717
|
+ #define MSG_AUTOTEMP " AutoTemp:"
|
|
718
|
+ #define MSG_ON "Ein "
|
|
719
|
+ #define MSG_OFF "Aus "
|
|
720
|
+ #define MSG_PID_P " PID-P: "
|
|
721
|
+ #define MSG_PID_I " PID-I: "
|
|
722
|
+ #define MSG_PID_D " PID-D: "
|
|
723
|
+ #define MSG_PID_C " PID-C: "
|
|
724
|
+ #define MSG_ACC " Acc:"
|
|
725
|
+ #define MSG_VXY_JERK " Vxy-jerk: "
|
|
726
|
+ #define MSG_VMAX " Vmax "
|
|
727
|
+ #define MSG_X "x:"
|
|
728
|
+ #define MSG_Y "y:"
|
|
729
|
+ #define MSG_Z "z:"
|
|
730
|
+ #define MSG_E "e:"
|
|
731
|
+ #define MSG_VMIN " Vmin:"
|
|
732
|
+ #define MSG_VTRAV_MIN " VTrav min:"
|
|
733
|
+ #define MSG_AMAX " Amax "
|
|
734
|
+ #define MSG_A_RETRACT " A-retract:"
|
|
735
|
+ #define MSG_XSTEPS " Xsteps/mm:"
|
|
736
|
+ #define MSG_YSTEPS " Ysteps/mm:"
|
|
737
|
+ #define MSG_ZSTEPS " Zsteps/mm:"
|
|
738
|
+ #define MSG_ESTEPS " Esteps/mm:"
|
|
739
|
+ #define MSG_MAIN_WIDE " Main \003"
|
|
740
|
+ #define MSG_TEMPERATURE_WIDE " Temperatur \x7E"
|
|
741
|
+ #define MSG_MOTION_WIDE " Motion \x7E"
|
|
742
|
+ #define MSG_STORE_EPROM " EPROM speichern"
|
|
743
|
+ #define MSG_LOAD_EPROM " EPROM laden"
|
|
744
|
+ #define MSG_RESTORE_FAILSAFE " Standard Konfig."
|
|
745
|
+ #define MSG_REFRESH "\004Refresh"
|
|
746
|
+ #define MSG_WATCH " Beobachten \003"
|
|
747
|
+ #define MSG_PREPARE " Prepare \x7E"
|
|
748
|
+ #define MSG_PREPARE_ALT " Prepare \003"
|
|
749
|
+ #define MSG_CONTROL_ARROW " Control \x7E"
|
|
750
|
+
|
|
751
|
+ #define MSG_TUNE " Tune \x7E"
|
|
752
|
+ #define MSG_STOP_PRINT " Druck stoppen \x7E"
|
|
753
|
+ #define MSG_CARD_MENU " SDKarten Menue \x7E"
|
|
754
|
+ #define MSG_NO_CARD " Keine SDKarte"
|
|
755
|
+ #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Fehler in der Menuestruktur."
|
|
756
|
+ #define MSG_DWELL "DWELL..."
|
|
757
|
+ #define MSG_NO_MOVE "No move."
|
|
758
|
+ #define MSG_PART_RELEASE "Partial Release"
|
|
759
|
+ #define MSG_KILLED "KILLED. "
|
|
760
|
+ #define MSG_STOPPED "STOPPED. "
|
|
761
|
+ #define MSG_PREHEAT_PLA " Preheat PLA"
|
|
762
|
+ #define MSG_PREHEAT_ABS " Preheat ABS"
|
|
763
|
+ #define MSG_STEPPER_RELEASED "Released."
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+// Serial Console Messages
|
|
768
|
+
|
|
769
|
+ #define MSG_Enqueing "enqueing \""
|
|
770
|
+ #define MSG_POWERUP "PowerUp"
|
|
771
|
+ #define MSG_EXTERNAL_RESET " External Reset"
|
|
772
|
+ #define MSG_BROWNOUT_RESET " Brown out Reset"
|
|
773
|
+ #define MSG_WATCHDOG_RESET " Watchdog Reset"
|
|
774
|
+ #define MSG_SOFTWARE_RESET " Software Reset"
|
|
775
|
+ #define MSG_MARLIN "Marlin: "
|
|
776
|
+ #define MSG_AUTHOR " | Author: "
|
|
777
|
+ #define MSG_CONFIGURATION_VER " Last Updated: "
|
|
778
|
+ #define MSG_FREE_MEMORY " Free Memory: "
|
|
779
|
+ #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
|
|
780
|
+ #define MSG_OK "ok"
|
|
781
|
+ #define MSG_FILE_SAVED "Done saving file."
|
|
782
|
+ #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line:"
|
|
783
|
+ #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line:"
|
|
784
|
+ #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line:"
|
|
785
|
+ #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line:"
|
|
786
|
+ #define MSG_FILE_PRINTED "Done printing file"
|
|
787
|
+ #define MSG_BEGIN_FILE_LIST "Begin file list"
|
|
788
|
+ #define MSG_END_FILE_LIST "End file list"
|
|
789
|
+ #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
|
|
790
|
+ #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
|
|
791
|
+ #define MSG_ERR_NO_THERMISTORS "No thermistors - no temp"
|
|
792
|
+ #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
|
|
793
|
+ #define MSG_HEATING "Heating..."
|
|
794
|
+ #define MSG_HEATING_COMPLETE "Heating done."
|
|
795
|
+ #define MSG_BED_HEATING "Bed Heating."
|
|
796
|
+ #define MSG_BED_DONE "Bed done."
|
|
797
|
+ #define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) "\n"
|
|
798
|
+ #define MSG_COUNT_X " Count X:"
|
|
799
|
+ #define MSG_ERR_KILLED "Printer halted. kill() called !!"
|
|
800
|
+ #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart!"
|
|
801
|
+ #define MSG_RESEND "Resend:"
|
|
802
|
+ #define MSG_UNKNOWN_COMMAND "Unknown command:\""
|
|
803
|
+ #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
|
|
804
|
+ #define MSG_INVALID_EXTRUDER "Invalid extruder"
|
|
805
|
+ #define MSG_X_MIN "x_min:"
|
|
806
|
+ #define MSG_X_MAX "x_max:"
|
|
807
|
+ #define MSG_Y_MIN "y_min:"
|
|
808
|
+ #define MSG_Y_MAX "y_max:"
|
|
809
|
+ #define MSG_Z_MIN "z_min:"
|
|
810
|
+ #define MSG_Z_MAX "z_max:"
|
|
811
|
+
|
|
812
|
+ #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
|
|
813
|
+ #define MSG_SD_INIT_FAIL "SD init fail"
|
|
814
|
+ #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
|
|
815
|
+ #define MSG_SD_OPENROOT_FAIL "openRoot failed"
|
|
816
|
+ #define MSG_SD_CARD_OK "SD card ok"
|
|
817
|
+ #define MSG_SD_WORKDIR_FAIL "workDir open failed"
|
|
818
|
+ #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
|
|
819
|
+ #define MSG_SD_FILE_OPENED "File opened:"
|
|
820
|
+ #define MSG_SD_SIZE " Size:"
|
|
821
|
+ #define MSG_SD_FILE_SELECTED "File selected"
|
|
822
|
+ #define MSG_SD_WRITE_TO_FILE "Writing to file: "
|
|
823
|
+ #define MSG_SD_PRINTING_BYTE "SD printing byte "
|
|
824
|
+ #define MSG_SD_NOT_PRINTING "Not SD printing"
|
|
825
|
+ #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
|
|
826
|
+ #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir:"
|
|
827
|
+
|
|
828
|
+ #define MSG_STEPPER_TO_HIGH "Steprate to high : "
|
|
829
|
+ #define MSG_ENDSTOPS_HIT "endstops hit: "
|
|
830
|
+ #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
|
|
831
|
+ #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
|
|
832
|
+
|
|
833
|
+#endif
|
|
834
|
+
|
|
835
|
+#if LANGUAGE_CHOICE == 5
|
|
836
|
+
|
|
837
|
+// LCD Menu Messages
|
|
838
|
+#define WELCOME_MSG MACHINE_NAME " Lista."
|
|
839
|
+#define MSG_SD_INSERTED "Tarjeta SD Colocada"
|
|
840
|
+#define MSG_SD_REMOVED "Tarjeta SD Retirada"
|
|
841
|
+#define MSG_MAIN " Menu Principal \003"
|
|
842
|
+#define MSG_AUTOSTART " Autostart"
|
|
843
|
+#define MSG_DISABLE_STEPPERS " Apagar Motores"
|
|
844
|
+#define MSG_AUTO_HOME " Llevar Ejes al Cero"
|
|
845
|
+#define MSG_SET_ORIGIN " Establecer Cero"
|
|
846
|
+#define MSG_COOLDOWN " Enfriar"
|
|
847
|
+#define MSG_EXTRUDE " Extruir"
|
|
848
|
+#define MSG_PREHEAT_PLA " Precalentar PLA"
|
|
849
|
+#define MSG_PREHEAT_ABS " Precalentar ABS"
|
|
850
|
+#define MSG_MOVE_AXIS " Mover Ejes \x7E"
|
|
851
|
+#define MSG_SPEED " Velocidad:"
|
|
852
|
+#define MSG_NOZZLE " \002Nozzle:"
|
|
853
|
+#define MSG_NOZZLE1 " \002Nozzle2:"
|
|
854
|
+#define MSG_NOZZLE2 " \002Nozzle3:"
|
|
855
|
+#define MSG_BED " \002Base:"
|
|
856
|
+#define MSG_FAN_SPEED " Ventilador:"
|
|
857
|
+#define MSG_FLOW " Flujo:"
|
|
858
|
+#define MSG_CONTROL " Control \003"
|
|
859
|
+#define MSG_MIN " \002 Min:"
|
|
860
|
+#define MSG_MAX " \002 Max:"
|
|
861
|
+#define MSG_FACTOR " \002 Fact:"
|
|
862
|
+#define MSG_AUTOTEMP " Autotemp:"
|
|
863
|
+#define MSG_ON "On "
|
|
864
|
+#define MSG_OFF "Off"
|
|
865
|
+#define MSG_PID_P " PID-P: "
|
|
866
|
+#define MSG_PID_I " PID-I: "
|
|
867
|
+#define MSG_PID_D " PID-D: "
|
|
868
|
+#define MSG_PID_C " PID-C: "
|
|
869
|
+#define MSG_ACC " Acc:"
|
|
870
|
+#define MSG_VXY_JERK " Vxy-jerk: "
|
|
871
|
+#define MSG_VMAX " Vmax "
|
|
872
|
+#define MSG_X "x:"
|
|
873
|
+#define MSG_Y "y:"
|
|
874
|
+#define MSG_Z "z:"
|
|
875
|
+#define MSG_E "e:"
|
|
876
|
+#define MSG_VMIN " Vmin:"
|
|
877
|
+#define MSG_VTRAV_MIN " VTrav min:"
|
|
878
|
+#define MSG_AMAX " Amax "
|
|
879
|
+#define MSG_A_RETRACT " A-retrac.:"
|
|
880
|
+#define MSG_XSTEPS " Xpasos/mm:"
|
|
881
|
+#define MSG_YSTEPS " Ypasos/mm:"
|
|
882
|
+#define MSG_ZSTEPS " Zpasos/mm:"
|
|
883
|
+#define MSG_ESTEPS " Epasos/mm:"
|
|
884
|
+#define MSG_MAIN_WIDE " Menu Principal \003"
|
|
885
|
+#define MSG_RECTRACT_WIDE " Retraer \x7E"
|
|
886
|
+#define MSG_TEMPERATURE_WIDE " Temperatura \x7E"
|
|
887
|
+#define MSG_MOTION_WIDE " Movimiento \x7E"
|
|
888
|
+#define MSG_STORE_EPROM " Guardar Memoria"
|
|
889
|
+#define MSG_LOAD_EPROM " Cargar Memoria"
|
|
890
|
+#define MSG_RESTORE_FAILSAFE " Rest. de emergencia"
|
|
891
|
+#define MSG_REFRESH "\004Volver a cargar"
|
|
892
|
+#define MSG_WATCH " Monitorizar \003"
|
|
893
|
+#define MSG_PREPARE " Preparar \x7E"
|
|
894
|
+#define MSG_PREPARE_ALT " Preparar \003"
|
|
895
|
+#define MSG_CONTROL_ARROW " Control \x7E"
|
|
896
|
+#define MSG_RETRACT_ARROW " Control \x7E"
|
|
897
|
+#define MSG_TUNE " Ajustar \x7E"
|
|
898
|
+#define MSG_STOP_PRINT " Detener Impresion \x7E"
|
|
899
|
+#define MSG_CARD_MENU " Menu de SD \x7E"
|
|
900
|
+#define MSG_NO_CARD " No hay Tarjeta SD"
|
|
901
|
+#define MSG_SERIAL_ERROR_MENU_STRUCTURE "Hay un error en la estructura del menu"
|
|
902
|
+#define MSG_DWELL "Reposo..."
|
|
903
|
+#define MSG_USERWAIT "Esperando Ordenes..."
|
|
904
|
+#define MSG_NO_MOVE "Sin movimiento"
|
|
905
|
+#define MSG_PART_RELEASE "Desacople Parcial"
|
|
906
|
+#define MSG_KILLED "PARADA DE EMERGENCIA. "
|
|
907
|
+#define MSG_STOPPED "PARADA. "
|
|
908
|
+#define MSG_PREHEAT_PLA " Precalentar PLA"
|
|
909
|
+#define MSG_PREHEAT_ABS " Precalentar ABS"
|
|
910
|
+#define MSG_STEPPER_RELEASED "Desacoplada."
|
|
911
|
+#define MSG_CONTROL_RETRACT " Retraer mm:"
|
|
912
|
+#define MSG_CONTROL_RETRACTF " Retraer F:"
|
|
913
|
+#define MSG_CONTROL_RETRACT_ZLIFT " Levantar mm:"
|
|
914
|
+#define MSG_CONTROL_RETRACT_RECOVER " DesRet +mm:"
|
|
915
|
+#define MSG_CONTROL_RETRACT_RECOVERF " DesRet F:"
|
|
916
|
+#define MSG_AUTORETRACT " AutoRetr.:"
|
|
917
|
+
|
|
918
|
+// Serial Console Messages
|
|
919
|
+
|
|
920
|
+#define MSG_Enqueing "En cola \""
|
|
921
|
+#define MSG_POWERUP "PowerUp"
|
|
922
|
+#define MSG_EXTERNAL_RESET " Reset Externo"
|
|
923
|
+#define MSG_BROWNOUT_RESET " Reset por Voltaje Incorrecto"
|
|
924
|
+#define MSG_WATCHDOG_RESET " Reset por Bloqueo"
|
|
925
|
+#define MSG_SOFTWARE_RESET " Reset por Software"
|
|
926
|
+#define MSG_MARLIN "Marlin "
|
|
927
|
+#define MSG_AUTHOR " | Autor: "
|
|
928
|
+#define MSG_CONFIGURATION_VER " Ultima actualizacion: "
|
|
929
|
+#define MSG_FREE_MEMORY " Memoria libre: "
|
|
930
|
+#define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
|
|
931
|
+#define MSG_OK "ok"
|
|
932
|
+#define MSG_FILE_SAVED "Guardado."
|
|
933
|
+#define MSG_ERR_LINE_NO "El Numero de Linea no es igual al Ultimo Numero de Linea+1, Ultima Linea:"
|
|
934
|
+#define MSG_ERR_CHECKSUM_MISMATCH "el checksum no coincide, Ultima Linea:"
|
|
935
|
+#define MSG_ERR_NO_CHECKSUM "No se pudo hallar el Checksum con el numero de linea, Ultima Linea:"
|
|
936
|
+#define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No se hallo el Numero de Linea con el Checksum, Ultima Linea:"
|
|
937
|
+#define MSG_FILE_PRINTED "Impresion terminada"
|
|
938
|
+#define MSG_BEGIN_FILE_LIST "Comienzo de la lista de archivos"
|
|
939
|
+#define MSG_END_FILE_LIST "Fin de la lista de archivos"
|
|
940
|
+#define MSG_M104_INVALID_EXTRUDER "M104 Extrusor Invalido "
|
|
941
|
+#define MSG_M105_INVALID_EXTRUDER "M105 Extrusor Invalido "
|
|
942
|
+#define MSG_ERR_NO_THERMISTORS "No hay termistores - no temp"
|
|
943
|
+#define MSG_M109_INVALID_EXTRUDER "M109 Extrusor Invalido "
|
|
944
|
+#define MSG_HEATING "Calentando..."
|
|
945
|
+#define MSG_HEATING_COMPLETE "Calentamiento Hecho."
|
|
946
|
+#define MSG_BED_HEATING "Calentando la base."
|
|
947
|
+#define MSG_BED_DONE "Base Caliente."
|
|
948
|
+#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) "\n"
|
|
949
|
+#define MSG_COUNT_X " Cuenta X:"
|
|
950
|
+#define MSG_ERR_KILLED "¡¡Impresora Parada con kill()!!"
|
|
951
|
+#define MSG_ERR_STOPPED "¡Impresora parada por errores. Arregle el error y use M999 Para reiniciar!. (La temperatura se reestablece. Ajustela antes de continuar)"
|
|
952
|
+#define MSG_RESEND "Reenviar:"
|
|
953
|
+#define MSG_UNKNOWN_COMMAND "Comando Desconocido:\""
|
|
954
|
+#define MSG_ACTIVE_EXTRUDER "Extrusor Activo: "
|
|
955
|
+#define MSG_INVALID_EXTRUDER "Extrusor Invalido"
|
|
956
|
+#define MSG_X_MIN "x_min:"
|
|
957
|
+#define MSG_X_MAX "x_max:"
|
|
958
|
+#define MSG_Y_MIN "y_min:"
|
|
959
|
+#define MSG_Y_MAX "y_max:"
|
|
960
|
+#define MSG_Z_MIN "z_min:"
|
|
961
|
+#define MSG_Z_MAX "z_max:"
|
|
962
|
+
|
|
963
|
+#define MSG_SD_CANT_OPEN_SUBDIR "No se pudo abrir la subcarpeta."
|
|
964
|
+#define MSG_SD_INIT_FAIL "Fallo al iniciar la SD"
|
|
965
|
+#define MSG_SD_VOL_INIT_FAIL "Fallo al montar el volumen"
|
|
966
|
+#define MSG_SD_OPENROOT_FAIL "Fallo al abrir la carpeta raiz"
|
|
967
|
+#define MSG_SD_CARD_OK "Tarjeta SD OK"
|
|
968
|
+#define MSG_SD_WORKDIR_FAIL "Fallo al abrir la carpeta de trabajo"
|
|
969
|
+#define MSG_SD_OPEN_FILE_FAIL "Error al abrir, Archivo: "
|
|
970
|
+#define MSG_SD_FILE_OPENED "Archivo abierto:"
|
|
971
|
+#define MSG_SD_SIZE " Tamaño:"
|
|
972
|
+#define MSG_SD_FILE_SELECTED "Archivo Seleccionado"
|
|
973
|
+#define MSG_SD_WRITE_TO_FILE "Escribiendo en el archivo: "
|
|
974
|
+#define MSG_SD_PRINTING_BYTE "SD imprimiendo el byte "
|
|
975
|
+#define MSG_SD_NOT_PRINTING "No se esta imprimiendo con SD"
|
|
976
|
+#define MSG_SD_ERR_WRITE_TO_FILE "Error al escribir en el archivo"
|
|
977
|
+#define MSG_SD_CANT_ENTER_SUBDIR "No se puede entrar en la carpeta:"
|
|
978
|
+
|
|
979
|
+#define MSG_STEPPER_TO_HIGH "Steprate demasiado alto : "
|
|
980
|
+#define MSG_ENDSTOPS_HIT "Se ha tocado el fin de carril: "
|
|
981
|
+#define MSG_ERR_COLD_EXTRUDE_STOP " extrusion fria evitada"
|
|
982
|
+#define MSG_ERR_LONG_EXTRUDE_STOP " extrusion demasiado larga evitada"
|
|
983
|
+
|
|
984
|
+#endif
|
|
985
|
+#endif // ifndef LANGUAGE_H
|
|
986
|
+>>>>>>> 6cd150842f6741b75cd7b5911805f307d1dbc2eb
|