diff --git a/Firmware/Configuration.h b/Firmware/Configuration.h index fbae1ecd..4d286a23 100644 --- a/Firmware/Configuration.h +++ b/Firmware/Configuration.h @@ -545,7 +545,12 @@ enum CalibrationStatus // For the wizard: factory assembled, needs to run Z calibration. CALIBRATION_STATUS_Z_CALIBRATION = 240, - // The XYZ calibration has been performed, now it remains to run the V2Calibration.gcode. +#ifdef TEMP_MODEL + // The XYZ calibration has been performed, needs to run Temp model calibration. + CALIBRATION_STATUS_TEMP_MODEL_CALIBRATION = 235, +#endif //TEMP_MODEL + +// The XYZ calibration AND OR Temp model calibration has been performed, now it remains to run the V2Calibration.gcode. CALIBRATION_STATUS_LIVE_ADJUST = 230, // Calibrated, ready to print. diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index 23d8d10c..835cb89b 100644 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -1547,6 +1547,12 @@ void setup() // Show the message. lcd_show_fullscreen_message_and_wait_P(_T(MSG_FOLLOW_CALIBRATION_FLOW)); } +#ifdef TEMP_MODEL + else if (calibration_status() == CALIBRATION_STATUS_TEMP_MODEL_CALIBRATION) { + lcd_show_fullscreen_message_and_wait_P(_T(MSG_TM_NOT_CAL)); + lcd_update_enable(true); + } +#endif //TEMP_MODEL else if (calibration_status() == CALIBRATION_STATUS_LIVE_ADJUST) { // Show the message. lcd_show_fullscreen_message_and_wait_P(_T(MSG_BABYSTEP_Z_NOT_SET)); @@ -3406,9 +3412,14 @@ bool gcode_M45(bool onlyZ, int8_t verbosity_level) lcd_bed_calibration_show_result(result, point_too_far_mask); if (result >= 0) { +#ifdef TEMP_MODEL + calibration_status_store(CALIBRATION_STATUS_TEMP_MODEL_CALIBRATION); + if (eeprom_read_byte((uint8_t*)EEPROM_WIZARD_ACTIVE) != 1) lcd_show_fullscreen_message_and_wait_P(_T(MSG_TM_NOT_CAL)); +#else // Calibration valid, the machine should be able to print. Advise the user to run the V2Calibration.gcode. calibration_status_store(CALIBRATION_STATUS_LIVE_ADJUST); if (eeprom_read_byte((uint8_t*)EEPROM_WIZARD_ACTIVE) != 1) lcd_show_fullscreen_message_and_wait_P(_T(MSG_BABYSTEP_Z_NOT_SET)); +#endif //TEMP_MODEL final_result = true; } } diff --git a/Firmware/messages.cpp b/Firmware/messages.cpp index 30898881..54bf4adc 100644 --- a/Firmware/messages.cpp +++ b/Firmware/messages.cpp @@ -164,6 +164,7 @@ const char MSG_IR_UNKNOWN[] PROGMEM_I1 = ISTR("unknown state");////MSG_IR_UNKNOW extern const char MSG_PAUSED_THERMAL_ERROR[] PROGMEM_I1 = ISTR("PAUSED THERMAL ERROR");////MSG_PAUSED_THERMAL_ERROR c=20 #ifdef TEMP_MODEL extern const char MSG_THERMAL_ANOMALY[] PROGMEM_I1 = ISTR("THERMAL ANOMALY");////MSG_THERMAL_ANOMALY c=20 +extern const char MSG_TM_NOT_CAL[] PROGMEM_I1 = ISTR("Temp model not calibrated yet.");////MSG_TM_NOT_CAL c=20 r=4 #endif //not internationalized messages diff --git a/Firmware/messages.h b/Firmware/messages.h index 2c701534..a0cfd2e1 100644 --- a/Firmware/messages.h +++ b/Firmware/messages.h @@ -168,6 +168,7 @@ extern const char MSG_IR_UNKNOWN[]; extern const char MSG_PAUSED_THERMAL_ERROR[]; #ifdef TEMP_MODEL extern const char MSG_THERMAL_ANOMALY[]; +extern const char MSG_TM_NOT_CAL[]; #endif //not internationalized messages diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp index 1fa915d9..3aa9b58d 100755 --- a/Firmware/ultralcd.cpp +++ b/Firmware/ultralcd.cpp @@ -1055,9 +1055,12 @@ void lcd_commands() } //if (lcd_commands_step == 1 && calibrated()) { if (lcd_commands_step == 1 && temp_model_valid()) { - enquecommand_P(PSTR("M500")); lcd_commands_step = 0; lcd_commands_type = LcdCommands::Idle; + enquecommand_P(PSTR("M500")); + if (eeprom_read_byte((uint8_t*)EEPROM_WIZARD_ACTIVE) == 1) { + lcd_wizard(WizState::IsFil); + } } } #endif //TEMP_MODEL @@ -4034,8 +4037,7 @@ void lcd_wizard(WizState state) { using S = WizState; bool end = false; - int8_t wizard_event; - const char *msg = NULL; + uint8_t wizard_event; // Make sure EEPROM_WIZARD_ACTIVE is true if entering using different entry point // other than WizState::Run - it is useful for debugging wizard. if (state != S::Run) eeprom_update_byte((uint8_t*)EEPROM_WIZARD_ACTIVE, 1); @@ -4043,7 +4045,7 @@ void lcd_wizard(WizState state) FORCE_BL_ON_START; while (!end) { - printf_P(PSTR("Wizard state: %d\n"), state); + printf_P(PSTR("Wizard state: %d\n"), (uint8_t)state); switch (state) { case S::Run: //Run wizard? @@ -4077,6 +4079,9 @@ void lcd_wizard(WizState state) case CALIBRATION_STATUS_ASSEMBLED: state = S::Selftest; break; //run selftest case CALIBRATION_STATUS_XYZ_CALIBRATION: state = S::Xyz; break; //run xyz cal. case CALIBRATION_STATUS_Z_CALIBRATION: state = S::Z; break; //run z cal. +#ifdef TEMP_MODEL + case CALIBRATION_STATUS_TEMP_MODEL_CALIBRATION: state = S::TempModel; break; //run temp model cal. +#endif //TEMP_MODEL case CALIBRATION_STATUS_LIVE_ADJUST: state = S::IsFil; break; //run live adjust case CALIBRATION_STATUS_CALIBRATED: end = true; eeprom_update_byte((uint8_t*)EEPROM_WIZARD_ACTIVE, 0); break; default: state = S::Selftest; break; //if calibration status is unknown, run wizard from the beginning @@ -4094,8 +4099,14 @@ void lcd_wizard(WizState state) case S::Xyz: lcd_show_fullscreen_message_and_wait_P(_i("I will run xyz calibration now. It will take approx. 12 mins."));////MSG_WIZARD_XYZ_CAL c=20 r=8 wizard_event = gcode_M45(false, 0); - if (wizard_event) state = S::IsFil; - else end = true; + if (wizard_event) { +#ifdef TEMP_MODEL + lcd_reset_alert_level(); + state = S::TempModel; +#else + state = S::IsFil; +#endif //TEMP_MODEL + } else end = true; break; case S::Z: lcd_show_fullscreen_message_and_wait_P(_i("Please remove shipping helpers first."));////MSG_REMOVE_SHIPPING_HELPERS c=20 r=3 @@ -4119,6 +4130,13 @@ void lcd_wizard(WizState state) } else end = true; break; +#ifdef TEMP_MODEL + case S::TempModel: + lcd_show_fullscreen_message_and_wait_P(_i("Temp model cal. takes approx. 12 mins."));////MSG_TM_CAL c=20 r=4 + lcd_commands_type = LcdCommands::TempModel; + end = true; // Leave wizard temporarily for Temp model cal. + break; +#endif //TEMP_MODEL case S::IsFil: //start to preheat nozzle and bed to save some time later setTargetHotend(PLA_PREHEAT_HOTEND_TEMP, 0); @@ -4185,7 +4203,8 @@ void lcd_wizard(WizState state) FORCE_BL_ON_END; - printf_P(_N("Wizard end state: %d\n"), state); + const char *msg = NULL; + printf_P(_N("Wizard end state: %d\n"), (uint8_t)state); switch (state) { //final message case S::Restore: //printer was already calibrated msg = _T(MSG_WIZARD_DONE); @@ -4195,21 +4214,25 @@ void lcd_wizard(WizState state) case S::Z: //z cal. msg = _T(MSG_WIZARD_CALIBRATION_FAILED); break; +#ifdef TEMP_MODEL + case S::TempModel: //Temp model calibration + break; +#endif //TEMP_MODEL case S::Finish: //we are finished - msg = _T(MSG_WIZARD_DONE); lcd_reset_alert_level(); lcd_setstatuspgm(MSG_WELCOME); lcd_return_to_status(); break; - + case S::Preheat: + case S::Lay1CalCold: + case S::Lay1CalHot: + break; default: msg = _T(MSG_WIZARD_QUIT); break; - } - if (!((S::Lay1CalCold == state) || (S::Lay1CalHot == state) || (S::Preheat == state))) - { + if (msg) { lcd_show_fullscreen_message_and_wait_P(msg); } lcd_update_enable(true); diff --git a/Firmware/ultralcd.h b/Firmware/ultralcd.h index ef89dcca..af9b6f8c 100755 --- a/Firmware/ultralcd.h +++ b/Firmware/ultralcd.h @@ -224,6 +224,9 @@ enum class WizState : uint8_t Selftest, //!< self test Xyz, //!< xyz calibration Z, //!< z calibration +#ifdef TEMP_MODEL + TempModel, //!< Temp model calibration +#endif //TEMP_MODEL IsFil, //!< Is filament loaded? First step of 1st layer calibration PreheatPla, //!< waiting for preheat nozzle for PLA Preheat, //!< Preheat for any material diff --git a/lang/po/Firmware.pot b/lang/po/Firmware.pot index 5578f336..7463824a 100644 --- a/lang/po/Firmware.pot +++ b/lang/po/Firmware.pot @@ -1720,6 +1720,17 @@ msgstr "" msgid "THERMAL ANOMALY" msgstr "" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "" + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "" + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_cs.po b/lang/po/Firmware_cs.po index aaa8d171..77ecb9a1 100644 --- a/lang/po/Firmware_cs.po +++ b/lang/po/Firmware_cs.po @@ -1780,6 +1780,17 @@ msgstr "Prohozene" msgid "THERMAL ANOMALY" msgstr "TEPLOTNI VYJIMKA" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Kalibrace teplotního modelu trvá asi 12 minut." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Teplotní model zatím nebyl kalibrován." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_da.po b/lang/po/Firmware_da.po index 0620c7ce..73ceec5d 100644 --- a/lang/po/Firmware_da.po +++ b/lang/po/Firmware_da.po @@ -1731,6 +1731,17 @@ msgstr "" msgid "THERMAL ANOMALY" msgstr "" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "" + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "" + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_de.po b/lang/po/Firmware_de.po index 5cd08f2f..e864fe27 100644 --- a/lang/po/Firmware_de.po +++ b/lang/po/Firmware_de.po @@ -1794,6 +1794,17 @@ msgstr "Ausgetauscht" msgid "THERMAL ANOMALY" msgstr "THERMISCHE ANOMALIE" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Tempmodell Kal. benötigt ca. 12 Min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Tempmodell noch unkalibriert." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_es.po b/lang/po/Firmware_es.po index ffa9bb74..a0275d5b 100644 --- a/lang/po/Firmware_es.po +++ b/lang/po/Firmware_es.po @@ -1797,6 +1797,17 @@ msgstr "Intercambiado" msgid "THERMAL ANOMALY" msgstr "ANOMALIA TERMICA" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Cal. modelo temp. tarda 12 mins. aprox." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Modelo temp. todavia sin cal." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_fr.po b/lang/po/Firmware_fr.po index b4cd2b05..2cc66596 100644 --- a/lang/po/Firmware_fr.po +++ b/lang/po/Firmware_fr.po @@ -1800,6 +1800,17 @@ msgstr "Echange" msgid "THERMAL ANOMALY" msgstr "ANOMALIE THERMIQUE" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Cal. du modele temp. dure env. 12 min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Modele de temp. non calibre." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_hr.po b/lang/po/Firmware_hr.po index a180a23a..caa7f596 100644 --- a/lang/po/Firmware_hr.po +++ b/lang/po/Firmware_hr.po @@ -1787,6 +1787,17 @@ msgstr "Zamjenjeno" msgid "THERMAL ANOMALY" msgstr "TERMALNA ANOMALIJA" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Temp model kal. traje cca. 12 min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Temp model još nije kalibriran." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_hu.po b/lang/po/Firmware_hu.po index 784b9489..6df7d38e 100644 --- a/lang/po/Firmware_hu.po +++ b/lang/po/Firmware_hu.po @@ -1789,6 +1789,17 @@ msgstr "Felcserelve" msgid "THERMAL ANOMALY" msgstr "Homersekl. anomalia" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Hőmérsékleti modell kal. kb. 12 percet." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "A hőmérsékleti modell még nincs kalibrálva." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_it.po b/lang/po/Firmware_it.po index efdefcb0..db24fba7 100644 --- a/lang/po/Firmware_it.po +++ b/lang/po/Firmware_it.po @@ -1790,6 +1790,17 @@ msgstr "Scambiato" msgid "THERMAL ANOMALY" msgstr "ANOMALIA TERMICA" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Calib mod temp richiede circa 12 min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Modello temp non calibrato." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_lb.po b/lang/po/Firmware_lb.po index 571d9607..c101b520 100644 --- a/lang/po/Firmware_lb.po +++ b/lang/po/Firmware_lb.po @@ -1731,6 +1731,17 @@ msgstr "" msgid "THERMAL ANOMALY" msgstr "" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "" + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "" + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_lt.po b/lang/po/Firmware_lt.po index 0b863189..552276fe 100644 --- a/lang/po/Firmware_lt.po +++ b/lang/po/Firmware_lt.po @@ -1731,6 +1731,17 @@ msgstr "" msgid "THERMAL ANOMALY" msgstr "" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "" + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "" + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_nl.po b/lang/po/Firmware_nl.po index 7801321b..4319efda 100644 --- a/lang/po/Firmware_nl.po +++ b/lang/po/Firmware_nl.po @@ -1796,6 +1796,17 @@ msgstr "Gewisseld" msgid "THERMAL ANOMALY" msgstr "THERMISCHE ANOMALIE" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Temp model kal. duurt ongeveer 12 min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Temp model nog ongekalibreerd." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_no.po b/lang/po/Firmware_no.po index 9cbd9a7a..07ccb30c 100644 --- a/lang/po/Firmware_no.po +++ b/lang/po/Firmware_no.po @@ -1771,6 +1771,17 @@ msgstr "Byttet" msgid "THERMAL ANOMALY" msgstr "THERMISK ANOMALI" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Temp modell kal. tar omtrent 12 min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Temp modell ikke kalibrert enda." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_pl.po b/lang/po/Firmware_pl.po index 69a57a73..e7bbfcf3 100644 --- a/lang/po/Firmware_pl.po +++ b/lang/po/Firmware_pl.po @@ -1785,6 +1785,17 @@ msgstr "Zamieniono" msgid "THERMAL ANOMALY" msgstr "THERMAL ANOMALY" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Kal. modelu temp. moze zajac ok. 12min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Model temp. nie zostal skalib." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_ro.po b/lang/po/Firmware_ro.po index cabc78fa..946d7af4 100644 --- a/lang/po/Firmware_ro.po +++ b/lang/po/Firmware_ro.po @@ -1787,6 +1787,17 @@ msgstr "inversate" msgid "THERMAL ANOMALY" msgstr "ANOMALIE TERMICA" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Cal. Model de temp dureaza aprox. 12 min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Modelul de temp. nu este inca calibrat." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_sk.po b/lang/po/Firmware_sk.po index 96effa88..ad39380a 100644 --- a/lang/po/Firmware_sk.po +++ b/lang/po/Firmware_sk.po @@ -1779,6 +1779,17 @@ msgstr "Prehodene" msgid "THERMAL ANOMALY" msgstr "THERMAL ANOMALY" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Výpočet teplotného modelu trvá približne 12 minút." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Teplotný model zatiaľ nebol kalibrovaný" + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_sl.po b/lang/po/Firmware_sl.po index 3e3c5cc4..fa95d8d3 100644 --- a/lang/po/Firmware_sl.po +++ b/lang/po/Firmware_sl.po @@ -1731,6 +1731,17 @@ msgstr "" msgid "THERMAL ANOMALY" msgstr "" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "" + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "" + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature" diff --git a/lang/po/Firmware_sv.po b/lang/po/Firmware_sv.po index 03639995..e2bcaf6d 100644 --- a/lang/po/Firmware_sv.po +++ b/lang/po/Firmware_sv.po @@ -1788,6 +1788,17 @@ msgstr "Utbytt" msgid "THERMAL ANOMALY" msgstr "TERMISK ANOMALI" +#. MSG_TM_CAL c=20 r=4 +#: ../../Firmware/ultralcd.cpp:4054 +msgid "Temp model cal. takes approx. 12 mins." +msgstr "Temp modell kal. tar ca. 12 min." + +#. MSG_TM_NOT_CAL c=20 r=4 +#: ../../Firmware/Marlin_main.cpp:1527 ../../Firmware/Marlin_main.cpp:3404 +#: ../../Firmware/messages.cpp:170 +msgid "Temp model not calibrated yet." +msgstr "Temp-modellen är inte kalibrerad ännu." + #. MSG_TEMPERATURE c=18 #: ../../Firmware/ultralcd.cpp:4816 msgid "Temperature"