diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 196d5756d..32122b962 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -15,6 +15,9 @@ Please, before you create a new bug report, please make sure you searched in ope **MMU Upgrade** - [e.g. MMU2S, MMU2, MMU1] **MMU upgrade firmware version [e.g. 1.0.6, 1.0.6-RC2, ...] +**SD card or USB/Octoprint** + Please let us know if you print via SD card or USB/Octoprint + **Describe the bug** A clear and concise description of what the bug is. diff --git a/Firmware/Configuration.h b/Firmware/Configuration.h index a4d797746..a9bf23e99 100644 --- a/Firmware/Configuration.h +++ b/Firmware/Configuration.h @@ -16,8 +16,8 @@ extern uint16_t nPrinterType; extern PGM_P sPrinterName; // Firmware version -#define FW_VERSION "3.9.0" -#define FW_COMMIT_NR 3421 +#define FW_VERSION "3.9.1" +#define FW_COMMIT_NR 3518 // FW_VERSION_UNKNOWN means this is an unofficial build. // The firmware should only be checked into github with this symbol. #define FW_DEV_VERSION FW_VERSION_UNKNOWN diff --git a/Firmware/Configuration_adv.h b/Firmware/Configuration_adv.h index 5386c2815..7ab7a2ee8 100644 --- a/Firmware/Configuration_adv.h +++ b/Firmware/Configuration_adv.h @@ -288,6 +288,7 @@ #define LA_K_DEF 0 // Default K factor (Unit: mm compression per 1mm/s extruder speed) #define LA_K_MAX 10 // Maximum acceptable K factor (exclusive, see notes in planner.cpp:plan_buffer_line) #define LA_LA10_MIN LA_K_MAX // Lin. Advance 1.0 threshold value (inclusive) + //#define LA_FLOWADJ // Adjust LA along with flow/M221 for uniform width //#define LA_NOCOMPAT // Disable Linear Advance 1.0 compatibility //#define LA_LIVE_K // Allow adjusting K in the Tune menu //#define LA_DEBUG // If enabled, this will generate debug information output over USB. @@ -436,6 +437,10 @@ const unsigned int dropsegments=5; //everything with less than this number of st #undef BED_MINTEMP #undef BED_MAXTEMP #endif +#if TEMP_SENSOR_AMBIENT == 0 + #undef AMBIENT_MINTEMP + #undef AMBIENT_MAXTEMP +#endif #endif //__CONFIGURATION_ADV_H diff --git a/Firmware/Dcodes.cpp b/Firmware/Dcodes.cpp index 1f902c5ee..c77cd96e1 100644 --- a/Firmware/Dcodes.cpp +++ b/Firmware/Dcodes.cpp @@ -1,5 +1,5 @@ #include "Dcodes.h" -//#include "Marlin.h" +#include "Marlin.h" #include "Configuration.h" #include "language.h" #include "cmdqueue.h" @@ -226,9 +226,7 @@ void dcode_0() LOG("D0 - Reset\n"); if (code_seen('B')) //bootloader { - cli(); - wdt_enable(WDTO_15MS); - while(1); + softReset(); } else //reset { @@ -252,8 +250,7 @@ void dcode_1() cli(); for (int i = 0; i < 8192; i++) eeprom_write_byte((unsigned char*)i, (unsigned char)0xff); - wdt_enable(WDTO_15MS); - while(1); + softReset(); } /*! @@ -420,8 +417,7 @@ void dcode_5() boot_dst_addr = (uint32_t)address; boot_src_addr = (uint32_t)(&data); bootapp_print_vars(); - wdt_enable(WDTO_15MS); - while(1); + softReset(); } while (count) { @@ -467,8 +463,7 @@ void dcode_7() boot_copy_size = (uint16_t)0xc00; boot_src_addr = (uint32_t)0x0003e400; boot_dst_addr = (uint32_t)0x0003f400; - wdt_enable(WDTO_15MS); - while(1); + softReset(); */ } diff --git a/Firmware/Marlin.h b/Firmware/Marlin.h index 52444337a..a1736e9c2 100755 --- a/Firmware/Marlin.h +++ b/Firmware/Marlin.h @@ -299,7 +299,7 @@ extern float feedrate; extern int feedmultiply; extern int extrudemultiply; // Sets extrude multiply factor (in percent) for all extruders extern int extruder_multiply[EXTRUDERS]; // sets extrude multiply factor (in percent) for each extruder individually -extern float volumetric_multiplier[EXTRUDERS]; // reciprocal of cross-sectional area of filament (in square millimeters), stored this way to reduce computational burden in planner +extern float extruder_multiplier[EXTRUDERS]; // reciprocal of cross-sectional area of filament (in square millimeters), stored this way to reduce computational burden in planner extern float current_position[NUM_AXIS] ; extern float destination[NUM_AXIS] ; extern float min_pos[3]; @@ -334,7 +334,6 @@ extern unsigned long stoptime; extern int bowden_length[4]; extern bool is_usb_printing; extern bool homing_flag; -extern bool temp_cal_active; extern bool loading_flag; extern unsigned int usb_printing_counter; @@ -513,4 +512,6 @@ void load_filament_final_feed(); void marlin_wait_for_click(); void raise_z_above(float target, bool plan=true); +extern "C" void softReset(); + #endif diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index abc52818e..2d9b13acc 100755 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -202,8 +202,6 @@ int bowden_length[4] = {385, 385, 385, 385}; bool is_usb_printing = false; bool homing_flag = false; -bool temp_cal_active = false; - unsigned long kicktime = _millis()+100000; unsigned int usb_printing_counter; @@ -650,6 +648,12 @@ void failstats_reset_print() #endif } +void softReset() +{ + cli(); + wdt_enable(WDTO_15MS); + while(1); +} #ifdef MESH_BED_LEVELING @@ -764,6 +768,7 @@ static void factory_reset(char level) } } + softReset(); break; @@ -1014,11 +1019,19 @@ void setup() lcd_splash(); Sound_Init(); // also guarantee "SET_OUTPUT(BEEPER)" + selectedSerialPort = eeprom_read_byte((uint8_t *)EEPROM_SECOND_SERIAL_ACTIVE); + if (selectedSerialPort == 0xFF) selectedSerialPort = 0; + eeprom_update_byte((uint8_t *)EEPROM_SECOND_SERIAL_ACTIVE, selectedSerialPort); + MYSERIAL.begin(BAUDRATE); + fdev_setup_stream(uartout, uart_putchar, NULL, _FDEV_SETUP_WRITE); //setup uart out stream + stdout = uartout; + #ifdef W25X20CL bool w25x20cl_success = w25x20cl_init(); + uint8_t optiboot_status = 1; if (w25x20cl_success) { - optiboot_w25x20cl_enter(); + optiboot_status = optiboot_w25x20cl_enter(); #if (LANG_MODE != 0) //secondary language support update_sec_lang_from_external_flash(); #endif //(LANG_MODE != 0) @@ -1040,15 +1053,13 @@ void setup() if ((farm_mode == 0xFF && farm_no == 0) || ((uint16_t)farm_no == 0xFFFF)) farm_mode = false; //if farm_mode has not been stored to eeprom yet and farm number is set to zero or EEPROM is fresh, deactivate farm mode if ((uint16_t)farm_no == 0xFFFF) farm_no = 0; - - selectedSerialPort = eeprom_read_byte((uint8_t*)EEPROM_SECOND_SERIAL_ACTIVE); - if (selectedSerialPort == 0xFF) selectedSerialPort = 0; if (farm_mode) { no_response = true; //we need confirmation by recieving PRUSA thx important_status = 8; prusa_statistics(8); selectedSerialPort = 1; + MYSERIAL.begin(BAUDRATE); #ifdef TMC2130 //increased extruder current (PFW363) tmc2130_current_h[E_AXIS] = 36; @@ -1062,12 +1073,12 @@ void setup() if(!(eeprom_read_byte((uint8_t*)EEPROM_FAN_CHECK_ENABLED))) eeprom_update_byte((unsigned char *)EEPROM_FAN_CHECK_ENABLED,true); } - MYSERIAL.begin(BAUDRATE); - fdev_setup_stream(uartout, uart_putchar, NULL, _FDEV_SETUP_WRITE); //setup uart out stream #ifndef W25X20CL SERIAL_PROTOCOLLNPGM("start"); -#endif //W25X20CL - stdout = uartout; +#else + if ((optiboot_status != 0) || (selectedSerialPort != 0)) + SERIAL_PROTOCOLLNPGM("start"); +#endif SERIAL_ECHO_START; printf_P(PSTR(" " FW_VERSION_FULL "\n")); @@ -1246,6 +1257,13 @@ void setup() w25x20cl_err_msg(); printf_P(_n("W25X20CL not responding.\n")); } +#ifdef EXTRUDER_ALTFAN_DETECT + SERIAL_ECHORPGM(_n("Extruder fan type: ")); + if (extruder_altfan_detect()) + SERIAL_ECHOLNRPGM(PSTR("ALTFAN")); + else + SERIAL_ECHOLNRPGM(PSTR("NOCTUA")); +#endif //EXTRUDER_ALTFAN_DETECT plan_init(); // Initialize planner; @@ -1332,8 +1350,7 @@ void setup() // Initialize current_position accounting for software endstops to // avoid unexpected initial shifts on the first move clamp_to_software_endstops(current_position); - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], - current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); #ifdef FILAMENT_SENSOR fsensor_init(); @@ -1453,8 +1470,7 @@ void setup() if (eeprom_read_byte((uint8_t*)EEPROM_TEMP_CAL_ACTIVE) == 255) { eeprom_write_byte((uint8_t*)EEPROM_TEMP_CAL_ACTIVE, 0); - temp_cal_active = false; - } else temp_cal_active = eeprom_read_byte((uint8_t*)EEPROM_TEMP_CAL_ACTIVE); + } if (eeprom_read_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA) == 255) { //eeprom_write_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA, 0); @@ -1462,7 +1478,6 @@ void setup() int16_t z_shift = 0; for (uint8_t i = 0; i < 5; i++) EEPROM_save_B(EEPROM_PROBE_TEMP_SHIFT + i * 2, &z_shift); eeprom_write_byte((uint8_t*)EEPROM_TEMP_CAL_ACTIVE, 0); - temp_cal_active = false; } if (eeprom_read_byte((uint8_t*)EEPROM_UVLO) == 255) { eeprom_write_byte((uint8_t*)EEPROM_UVLO, 0); @@ -1535,7 +1550,7 @@ void setup() lcd_show_fullscreen_message_and_wait_P(_T(MSG_BABYSTEP_Z_NOT_SET)); lcd_update_enable(true); } - else if (calibration_status() == CALIBRATION_STATUS_CALIBRATED && temp_cal_active == true && calibration_status_pinda() == false) { + else if (calibration_status() == CALIBRATION_STATUS_CALIBRATED && eeprom_read_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE) && calibration_status_pinda() == false) { //lcd_show_fullscreen_message_and_wait_P(_i("Temperature calibration has not been run yet"));////MSG_PINDA_NOT_CALIBRATED c=20 r=4 lcd_update_enable(true); } @@ -1948,7 +1963,7 @@ static void set_bed_level_equation_lsq(double *plane_equation_coefficients) // put the bed at 0 so we don't go below it. current_position[Z_AXIS] = cs.zprobe_zoffset; // in the lsq we reach here after raising the extruder due to the loop structure - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); } #else // not AUTO_BED_LEVELING_GRID @@ -1976,7 +1991,7 @@ static void set_bed_level_equation_3pts(float z_at_pt_1, float z_at_pt_2, float // put the bed at 0 so we don't go below it. current_position[Z_AXIS] = cs.zprobe_zoffset; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); } @@ -2008,7 +2023,7 @@ static void run_z_probe() { current_position[Z_AXIS] = st_get_position_mm(Z_AXIS); // make sure the planner knows where we are as it may be a bit different than we last said to move to - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); } static void do_blocking_move_to(float x, float y, float z) { @@ -2129,7 +2144,7 @@ void raise_z_above(float target, bool plan) if (axis_known_position[Z_AXIS] || z_min_endstop) { // current position is known or very low, it's safe to raise Z - if(plan) plan_buffer_line_curposXYZE(max_feedrate[Z_AXIS], active_extruder); + if(plan) plan_buffer_line_curposXYZE(max_feedrate[Z_AXIS]); return; } @@ -2142,15 +2157,14 @@ void raise_z_above(float target, bool plan) #ifdef TMC2130 tmc2130_home_enter(Z_AXIS_MASK); #endif //TMC2130 - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 60, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 60); st_synchronize(); #ifdef TMC2130 if (endstop_z_hit_on_purpose()) { // not necessarily exact, but will avoid further vertical moves current_position[Z_AXIS] = max_pos[Z_AXIS]; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], - current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); } tmc2130_home_exit(); #endif //TMC2130 @@ -2168,22 +2182,22 @@ bool calibrate_z_auto() int axis_up_dir = -home_dir(Z_AXIS); tmc2130_home_enter(Z_AXIS_MASK); current_position[Z_AXIS] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); set_destination_to_current(); destination[Z_AXIS] += (1.1 * max_length(Z_AXIS) * axis_up_dir); feedrate = homing_feedrate[Z_AXIS]; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate / 60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate / 60); st_synchronize(); // current_position[axis] = 0; - // plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + // plan_set_position_curposXYZE(); tmc2130_home_exit(); enable_endstops(false); current_position[Z_AXIS] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); set_destination_to_current(); destination[Z_AXIS] += 10 * axis_up_dir; //10mm up feedrate = homing_feedrate[Z_AXIS] / 2; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate / 60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate / 60); st_synchronize(); enable_endstops(endstops_enabled); if (PRINTER_TYPE == PRINTER_MK3) { @@ -2192,7 +2206,7 @@ bool calibrate_z_auto() else { current_position[Z_AXIS] = Z_MAX_POS + 9.0; } - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); return true; } #endif //TMC2130 @@ -2203,9 +2217,9 @@ static void check_Z_crash(void) if (READ(Z_TMC2130_DIAG) != 0) { //Z crash FORCE_HIGH_POWER_END; current_position[Z_AXIS] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); current_position[Z_AXIS] += MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(max_feedrate[Z_AXIS], active_extruder); + plan_buffer_line_curposXYZE(max_feedrate[Z_AXIS]); st_synchronize(); kill(_T(MSG_BED_LEVELING_FAILED_POINT_LOW)); } @@ -2235,24 +2249,24 @@ void homeaxis(int axis, uint8_t cnt) // and the following movement to endstop has a chance to achieve the required velocity // for the stall guard to work. current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); set_destination_to_current(); // destination[axis] = 11.f; destination[axis] = -3.f * axis_home_dir; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); // Move away from the possible collision with opposite endstop with the collision detection disabled. endstops_hit_on_purpose(); enable_endstops(false); current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); destination[axis] = 1. * axis_home_dir; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); // Now continue to move up to the left end stop with the collision detection enabled. enable_endstops(true); destination[axis] = 1.1 * axis_home_dir * max_length(axis); - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); for (uint8_t i = 0; i < cnt; i++) { @@ -2260,9 +2274,9 @@ void homeaxis(int axis, uint8_t cnt) endstops_hit_on_purpose(); enable_endstops(false); current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); destination[axis] = -10.f * axis_home_dir; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); endstops_hit_on_purpose(); // Now move left up to the collision, this time with a repeatable velocity. @@ -2273,7 +2287,7 @@ void homeaxis(int axis, uint8_t cnt) #else //TMC2130 feedrate = homing_feedrate[axis] / 2; #endif //TMC2130 - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); #ifdef TMC2130 uint16_t mscnt = tmc2130_rd_MSCNT(axis); @@ -2307,10 +2321,10 @@ void homeaxis(int axis, uint8_t cnt) float dist = - axis_home_dir * 0.01f * 64; #endif //TMC2130 current_position[axis] -= dist; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); current_position[axis] += dist; destination[axis] = current_position[axis]; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], 0.5f*feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(0.5f*feedrate/60); st_synchronize(); feedrate = 0.0; @@ -2322,22 +2336,22 @@ void homeaxis(int axis, uint8_t cnt) #endif int axis_home_dir = home_dir(axis); current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); destination[axis] = 1.5 * max_length(axis) * axis_home_dir; feedrate = homing_feedrate[axis]; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); #ifdef TMC2130 check_Z_crash(); #endif //TMC2130 current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); destination[axis] = -home_retract_mm(axis) * axis_home_dir; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); destination[axis] = 2*home_retract_mm(axis) * axis_home_dir; feedrate = homing_feedrate[axis]/2 ; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); st_synchronize(); #ifdef TMC2130 check_Z_crash(); @@ -2360,7 +2374,7 @@ void home_xy() set_destination_to_current(); homeaxis(X_AXIS); homeaxis(Y_AXIS); - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); endstops_hit_on_purpose(); } @@ -2383,7 +2397,7 @@ void refresh_cmd_timeout(void) retracted[active_extruder]=true; prepare_move(); current_position[Z_AXIS]-=cs.retract_zlift; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); prepare_move(); feedrate = oldFeedrate; } else if(!retracting && retracted[active_extruder]) { @@ -2392,7 +2406,7 @@ void refresh_cmd_timeout(void) destination[Z_AXIS]=current_position[Z_AXIS]; destination[E_AXIS]=current_position[E_AXIS]; current_position[Z_AXIS]+=cs.retract_zlift; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); current_position[E_AXIS]-=(swapretract?(retract_length_swap+retract_recover_length_swap):(cs.retract_length+cs.retract_recover_length))*float(extrudemultiply)*0.01f; plan_set_e_position(current_position[E_AXIS]); float oldFeedrate = feedrate; @@ -2595,7 +2609,7 @@ static void gcode_G28(bool home_x_axis, long home_x_value, bool home_y_axis, lon int x_axis_home_dir = home_dir(X_AXIS); - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); destination[X_AXIS] = 1.5 * max_length(X_AXIS) * x_axis_home_dir;destination[Y_AXIS] = 1.5 * max_length(Y_AXIS) * home_dir(Y_AXIS); feedrate = homing_feedrate[X_AXIS]; if(homing_feedrate[Y_AXIS]= 0) @@ -2984,7 +2998,7 @@ bool gcode_M45(bool onlyZ, int8_t verbosity_level) clean_up_after_endstop_move(l_feedmultiply); // Print head up. current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 40, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 40); st_synchronize(); // if (result >= 0) babystep_apply(); #endif //HEATBED_V2 @@ -3097,18 +3111,18 @@ static void gcode_M600(bool automatic, float x_position, float y_position, float //Retract E current_position[E_AXIS] += e_shift; - plan_buffer_line_curposXYZE(FILAMENTCHANGE_RFEED, active_extruder); + plan_buffer_line_curposXYZE(FILAMENTCHANGE_RFEED); st_synchronize(); //Lift Z current_position[Z_AXIS] += z_shift; - plan_buffer_line_curposXYZE(FILAMENTCHANGE_ZFEED, active_extruder); + plan_buffer_line_curposXYZE(FILAMENTCHANGE_ZFEED); st_synchronize(); //Move XY to side current_position[X_AXIS] = x_position; current_position[Y_AXIS] = y_position; - plan_buffer_line_curposXYZE(FILAMENTCHANGE_XYFEED, active_extruder); + plan_buffer_line_curposXYZE(FILAMENTCHANGE_XYFEED); st_synchronize(); //Beep, manage nozzle heater and wait for user to start unload filament @@ -3133,7 +3147,7 @@ static void gcode_M600(bool automatic, float x_position, float y_position, float lcd_set_cursor(0, 2); lcd_puts_P(_T(MSG_PLEASE_WAIT)); current_position[X_AXIS] -= 100; - plan_buffer_line_curposXYZE(FILAMENTCHANGE_XYFEED, active_extruder); + plan_buffer_line_curposXYZE(FILAMENTCHANGE_XYFEED); st_synchronize(); lcd_show_fullscreen_message_and_wait_P(_i("Please open idler and remove filament manually."));////MSG_CHECK_IDLER c=20 r=4 } @@ -3170,7 +3184,7 @@ static void gcode_M600(bool automatic, float x_position, float y_position, float if (!automatic) { current_position[E_AXIS] += FILAMENTCHANGE_RECFEED; - plan_buffer_line_curposXYZE(FILAMENTCHANGE_EXFEED, active_extruder); + plan_buffer_line_curposXYZE(FILAMENTCHANGE_EXFEED); } //Move XY back @@ -3228,12 +3242,12 @@ void gcode_M701() lcd_setstatuspgm(_T(MSG_LOADING_FILAMENT)); current_position[E_AXIS] += 40; - plan_buffer_line_curposXYZE(400 / 60, active_extruder); //fast sequence + plan_buffer_line_curposXYZE(400 / 60); //fast sequence st_synchronize(); raise_z_above(MIN_Z_FOR_LOAD, false); current_position[E_AXIS] += 30; - plan_buffer_line_curposXYZE(400 / 60, active_extruder); //fast sequence + plan_buffer_line_curposXYZE(400 / 60); //fast sequence load_filament_final_feed(); //slow sequence st_synchronize(); @@ -3399,8 +3413,7 @@ static void gcode_G92() current_position[E_AXIS] = values[E_AXIS]; // Set all at once - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], - current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); } } @@ -3807,9 +3820,7 @@ void process_commands() #if (defined(WATCHDOG) && (MOTHERBOARD == BOARD_EINSY_1_0a)) boot_app_magic = BOOT_APP_MAGIC; boot_app_flags = BOOT_APP_FLG_RUN; - wdt_enable(WDTO_15MS); - cli(); - while(1); + softReset(); #else //WATCHDOG asm volatile("jmp 0x3E000"); #endif //WATCHDOG @@ -4353,7 +4364,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) current_position[X_AXIS] = uncorrected_position.x; current_position[Y_AXIS] = uncorrected_position.y; current_position[Z_AXIS] = uncorrected_position.z; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); int l_feedmultiply = setup_for_endstop_move(); feedrate = homing_feedrate[Z_AXIS]; @@ -4467,7 +4478,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) apply_rotation_xyz(plan_bed_level_matrix, x_tmp, y_tmp, z_tmp); //Apply the correction sending the probe offset current_position[Z_AXIS] = z_tmp - real_z + current_position[Z_AXIS]; //The difference is added to current position and sent to planner. - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); } break; #ifndef Z_PROBE_SLED @@ -4555,11 +4566,15 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) /*! ### G76 - PINDA probe temperature calibration G76: PINDA probe temperature calibration This G-code is used to calibrate the temperature drift of the PINDA (inductive Sensor). - + The PINDAv2 sensor has a built-in thermistor which has the advantage that the calibration can be done once for all materials. The Original i3 Prusa MK2/s uses PINDAv1 and this calibration improves the temperature drift, but not as good as the PINDAv2. + superPINDA sensor has internal temperature compensation and no thermistor output. There is no point of doing temperature calibration in such case. + If PINDA_THERMISTOR and DETECT_SUPERPINDA is defined during compilation, calibration is skipped with serial message "No PINDA thermistor". + This can be caused also if PINDA thermistor connection is broken or PINDA temperature is lower than PINDA_MINTEMP. + #### Example ``` @@ -4574,154 +4589,155 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) case 76: { #ifdef PINDA_THERMISTOR - if (true) - { + if (!has_temperature_compensation()) + { + SERIAL_ECHOLNPGM("No PINDA thermistor"); + break; + } - if (calibration_status() >= CALIBRATION_STATUS_XYZ_CALIBRATION) { - //we need to know accurate position of first calibration point - //if xyz calibration was not performed yet, interrupt temperature calibration and inform user that xyz cal. is needed - lcd_show_fullscreen_message_and_wait_P(_i("Please run XYZ calibration first.")); - break; - } - - if (!(axis_known_position[X_AXIS] && axis_known_position[Y_AXIS] && axis_known_position[Z_AXIS])) - { - // We don't know where we are! HOME! - // Push the commands to the front of the message queue in the reverse order! - // There shall be always enough space reserved for these commands. - repeatcommand_front(); // repeat G76 with all its parameters - enquecommand_front_P((PSTR("G28 W0"))); - break; - } - lcd_show_fullscreen_message_and_wait_P(_i("Stable ambient temperature 21-26C is needed a rigid stand is required."));////MSG_TEMP_CAL_WARNING c=20 r=4 - bool result = lcd_show_fullscreen_message_yes_no_and_wait_P(_T(MSG_STEEL_SHEET_CHECK), false, false); - - if (result) - { - current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - current_position[Z_AXIS] = 50; - current_position[Y_AXIS] = 180; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - st_synchronize(); - lcd_show_fullscreen_message_and_wait_P(_T(MSG_REMOVE_STEEL_SHEET)); - current_position[Y_AXIS] = pgm_read_float(bed_ref_points_4 + 1); - current_position[X_AXIS] = pgm_read_float(bed_ref_points_4); - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - st_synchronize(); - gcode_G28(false, false, true); + if (calibration_status() >= CALIBRATION_STATUS_XYZ_CALIBRATION) { + //we need to know accurate position of first calibration point + //if xyz calibration was not performed yet, interrupt temperature calibration and inform user that xyz cal. is needed + lcd_show_fullscreen_message_and_wait_P(_i("Please run XYZ calibration first.")); + break; + } - } - if ((current_temperature_pinda > 35) && (farm_mode == false)) { - //waiting for PIDNA probe to cool down in case that we are not in farm mode - current_position[Z_AXIS] = 100; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - if (lcd_wait_for_pinda(35) == false) { //waiting for PINDA probe to cool, if this takes more then time expected, temp. cal. fails - lcd_temp_cal_show_result(false); - break; - } - } - lcd_update_enable(true); - KEEPALIVE_STATE(NOT_BUSY); //no need to print busy messages as we print current temperatures periodicaly - SERIAL_ECHOLNPGM("PINDA probe calibration start"); + if (!(axis_known_position[X_AXIS] && axis_known_position[Y_AXIS] && axis_known_position[Z_AXIS])) + { + // We don't know where we are! HOME! + // Push the commands to the front of the message queue in the reverse order! + // There shall be always enough space reserved for these commands. + repeatcommand_front(); // repeat G76 with all its parameters + enquecommand_front_P((PSTR("G28 W0"))); + break; + } + lcd_show_fullscreen_message_and_wait_P(_i("Stable ambient temperature 21-26C is needed a rigid stand is required."));////MSG_TEMP_CAL_WARNING c=20 r=4 + bool result = lcd_show_fullscreen_message_yes_no_and_wait_P(_T(MSG_STEEL_SHEET_CHECK), false, false); - float zero_z; - int z_shift = 0; //unit: steps - float start_temp = 5 * (int)(current_temperature_pinda / 5); - if (start_temp < 35) start_temp = 35; - if (start_temp < current_temperature_pinda) start_temp += 5; - printf_P(_N("start temperature: %.1f\n"), start_temp); + if (result) + { + current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; + plan_buffer_line_curposXYZE(3000 / 60); + current_position[Z_AXIS] = 50; + current_position[Y_AXIS] = 180; + plan_buffer_line_curposXYZE(3000 / 60); + st_synchronize(); + lcd_show_fullscreen_message_and_wait_P(_T(MSG_REMOVE_STEEL_SHEET)); + current_position[Y_AXIS] = pgm_read_float(bed_ref_points_4 + 1); + current_position[X_AXIS] = pgm_read_float(bed_ref_points_4); + plan_buffer_line_curposXYZE(3000 / 60); + st_synchronize(); + gcode_G28(false, false, true); + + } + if ((current_temperature_pinda > 35) && (farm_mode == false)) { + //waiting for PIDNA probe to cool down in case that we are not in farm mode + current_position[Z_AXIS] = 100; + plan_buffer_line_curposXYZE(3000 / 60); + if (lcd_wait_for_pinda(35) == false) { //waiting for PINDA probe to cool, if this takes more then time expected, temp. cal. fails + lcd_temp_cal_show_result(false); + break; + } + } + lcd_update_enable(true); + KEEPALIVE_STATE(NOT_BUSY); //no need to print busy messages as we print current temperatures periodicaly + SERIAL_ECHOLNPGM("PINDA probe calibration start"); + + float zero_z; + int z_shift = 0; //unit: steps + float start_temp = 5 * (int)(current_temperature_pinda / 5); + if (start_temp < 35) start_temp = 35; + if (start_temp < current_temperature_pinda) start_temp += 5; + printf_P(_N("start temperature: %.1f\n"), start_temp); // setTargetHotend(200, 0); - setTargetBed(70 + (start_temp - 30)); + setTargetBed(70 + (start_temp - 30)); - custom_message_type = CustomMsg::TempCal; - custom_message_state = 1; - lcd_setstatuspgm(_T(MSG_TEMP_CALIBRATION)); - current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - current_position[X_AXIS] = PINDA_PREHEAT_X; - current_position[Y_AXIS] = PINDA_PREHEAT_Y; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - current_position[Z_AXIS] = PINDA_PREHEAT_Z; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - st_synchronize(); + custom_message_type = CustomMsg::TempCal; + custom_message_state = 1; + lcd_setstatuspgm(_T(MSG_TEMP_CALIBRATION)); + current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; + plan_buffer_line_curposXYZE(3000 / 60); + current_position[X_AXIS] = PINDA_PREHEAT_X; + current_position[Y_AXIS] = PINDA_PREHEAT_Y; + plan_buffer_line_curposXYZE(3000 / 60); + current_position[Z_AXIS] = PINDA_PREHEAT_Z; + plan_buffer_line_curposXYZE(3000 / 60); + st_synchronize(); - while (current_temperature_pinda < start_temp) - { - delay_keep_alive(1000); - serialecho_temperatures(); - } + while (current_temperature_pinda < start_temp) + { + delay_keep_alive(1000); + serialecho_temperatures(); + } - eeprom_update_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA, 0); //invalidate temp. calibration in case that in will be aborted during the calibration process + eeprom_update_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA, 0); //invalidate temp. calibration in case that in will be aborted during the calibration process - current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - current_position[X_AXIS] = pgm_read_float(bed_ref_points_4); - current_position[Y_AXIS] = pgm_read_float(bed_ref_points_4 + 1); - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - st_synchronize(); + current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; + plan_buffer_line_curposXYZE(3000 / 60); + current_position[X_AXIS] = pgm_read_float(bed_ref_points_4); + current_position[Y_AXIS] = pgm_read_float(bed_ref_points_4 + 1); + plan_buffer_line_curposXYZE(3000 / 60); + st_synchronize(); - bool find_z_result = find_bed_induction_sensor_point_z(-1.f); - if (find_z_result == false) { - lcd_temp_cal_show_result(find_z_result); - break; - } - zero_z = current_position[Z_AXIS]; + bool find_z_result = find_bed_induction_sensor_point_z(-1.f); + if (find_z_result == false) { + lcd_temp_cal_show_result(find_z_result); + break; + } + zero_z = current_position[Z_AXIS]; - printf_P(_N("\nZERO: %.3f\n"), current_position[Z_AXIS]); + printf_P(_N("\nZERO: %.3f\n"), current_position[Z_AXIS]); - int i = -1; for (; i < 5; i++) - { - float temp = (40 + i * 5); - printf_P(_N("\nStep: %d/6 (skipped)\nPINDA temperature: %d Z shift (mm):0\n"), i + 2, (40 + i*5)); - if (i >= 0) EEPROM_save_B(EEPROM_PROBE_TEMP_SHIFT + i * 2, &z_shift); - if (start_temp <= temp) break; - } + int i = -1; for (; i < 5; i++) + { + float temp = (40 + i * 5); + printf_P(_N("\nStep: %d/6 (skipped)\nPINDA temperature: %d Z shift (mm):0\n"), i + 2, (40 + i*5)); + if (i >= 0) EEPROM_save_B(EEPROM_PROBE_TEMP_SHIFT + i * 2, &z_shift); + if (start_temp <= temp) break; + } - for (i++; i < 5; i++) - { - float temp = (40 + i * 5); - printf_P(_N("\nStep: %d/6\n"), i + 2); - custom_message_state = i + 2; - setTargetBed(50 + 10 * (temp - 30) / 5); + for (i++; i < 5; i++) + { + float temp = (40 + i * 5); + printf_P(_N("\nStep: %d/6\n"), i + 2); + custom_message_state = i + 2; + setTargetBed(50 + 10 * (temp - 30) / 5); // setTargetHotend(255, 0); - current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - current_position[X_AXIS] = PINDA_PREHEAT_X; - current_position[Y_AXIS] = PINDA_PREHEAT_Y; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - current_position[Z_AXIS] = PINDA_PREHEAT_Z; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - st_synchronize(); - while (current_temperature_pinda < temp) - { - delay_keep_alive(1000); - serialecho_temperatures(); - } - current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - current_position[X_AXIS] = pgm_read_float(bed_ref_points_4); - current_position[Y_AXIS] = pgm_read_float(bed_ref_points_4 + 1); - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); - st_synchronize(); - find_z_result = find_bed_induction_sensor_point_z(-1.f); - if (find_z_result == false) { - lcd_temp_cal_show_result(find_z_result); - break; - } - z_shift = (int)((current_position[Z_AXIS] - zero_z)*cs.axis_steps_per_unit[Z_AXIS]); + current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; + plan_buffer_line_curposXYZE(3000 / 60); + current_position[X_AXIS] = PINDA_PREHEAT_X; + current_position[Y_AXIS] = PINDA_PREHEAT_Y; + plan_buffer_line_curposXYZE(3000 / 60); + current_position[Z_AXIS] = PINDA_PREHEAT_Z; + plan_buffer_line_curposXYZE(3000 / 60); + st_synchronize(); + while (current_temperature_pinda < temp) + { + delay_keep_alive(1000); + serialecho_temperatures(); + } + current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; + plan_buffer_line_curposXYZE(3000 / 60); + current_position[X_AXIS] = pgm_read_float(bed_ref_points_4); + current_position[Y_AXIS] = pgm_read_float(bed_ref_points_4 + 1); + plan_buffer_line_curposXYZE(3000 / 60); + st_synchronize(); + find_z_result = find_bed_induction_sensor_point_z(-1.f); + if (find_z_result == false) { + lcd_temp_cal_show_result(find_z_result); + break; + } + z_shift = (int)((current_position[Z_AXIS] - zero_z)*cs.axis_steps_per_unit[Z_AXIS]); - printf_P(_N("\nPINDA temperature: %.1f Z shift (mm): %.3f"), current_temperature_pinda, current_position[Z_AXIS] - zero_z); + printf_P(_N("\nPINDA temperature: %.1f Z shift (mm): %.3f"), current_temperature_pinda, current_position[Z_AXIS] - zero_z); - EEPROM_save_B(EEPROM_PROBE_TEMP_SHIFT + i * 2, &z_shift); + EEPROM_save_B(EEPROM_PROBE_TEMP_SHIFT + i * 2, &z_shift); - } - lcd_temp_cal_show_result(true); + } + lcd_temp_cal_show_result(true); - break; - } -#endif //PINDA_THERMISTOR +#else //PINDA_THERMISTOR setTargetBed(PINDA_MIN_T); float zero_z; @@ -4743,7 +4759,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) current_position[X_AXIS] = PINDA_PREHEAT_X; current_position[Y_AXIS] = PINDA_PREHEAT_Y; current_position[Z_AXIS] = PINDA_PREHEAT_Z; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); + plan_buffer_line_curposXYZE(3000 / 60); st_synchronize(); while (abs(degBed() - PINDA_MIN_T) > 1) { @@ -4759,11 +4775,11 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) eeprom_update_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA, 0); //invalidate temp. calibration in case that in will be aborted during the calibration process current_position[Z_AXIS] = 5; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); + plan_buffer_line_curposXYZE(3000 / 60); current_position[X_AXIS] = BED_X0; current_position[Y_AXIS] = BED_Y0; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); + plan_buffer_line_curposXYZE(3000 / 60); st_synchronize(); find_bed_induction_sensor_point_z(-1.f); @@ -4780,7 +4796,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) current_position[X_AXIS] = PINDA_PREHEAT_X; current_position[Y_AXIS] = PINDA_PREHEAT_Y; current_position[Z_AXIS] = PINDA_PREHEAT_Z; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); + plan_buffer_line_curposXYZE(3000 / 60); st_synchronize(); while (degBed() < t_c) { delay_keep_alive(1000); @@ -4791,10 +4807,10 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) serialecho_temperatures(); } current_position[Z_AXIS] = 5; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); + plan_buffer_line_curposXYZE(3000 / 60); current_position[X_AXIS] = BED_X0; current_position[Y_AXIS] = BED_Y0; - plan_buffer_line_curposXYZE(3000 / 60, active_extruder); + plan_buffer_line_curposXYZE(3000 / 60); st_synchronize(); find_bed_induction_sensor_point_z(-1.f); z_shift = (int)((current_position[Z_AXIS] - zero_z)*cs.axis_steps_per_unit[Z_AXIS]); @@ -4817,13 +4833,12 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) disable_e2(); setTargetBed(0); //set bed target temperature back to 0 lcd_show_fullscreen_message_and_wait_P(_T(MSG_TEMP_CALIBRATION_DONE)); - temp_cal_active = true; eeprom_update_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE, 1); lcd_update_enable(true); lcd_update(2); - +#endif //PINDA_THERMISTOR } break; @@ -4937,7 +4952,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) // Cycle through all points and probe them // First move up. During this first movement, the babystepping will be reverted. current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 60, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 60); // The move to the first calibration point. current_position[X_AXIS] = BED_X0; current_position[Y_AXIS] = BED_Y0; @@ -4952,7 +4967,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) world2machine_clamp(current_position[X_AXIS], current_position[Y_AXIS]); #endif //SUPPORT_VERBOSITY - plan_buffer_line_curposXYZE(homing_feedrate[X_AXIS] / 30, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[X_AXIS] / 30); // Wait until the move is finished. st_synchronize(); @@ -4967,7 +4982,6 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) } #endif // SUPPORT_VERBOSITY int l_feedmultiply = setup_for_endstop_move(false); //save feedrate and feedmultiply, sets feedmultiply to 100 - const char *kill_message = NULL; while (mesh_point != nMeasPoints * nMeasPoints) { // Get coords of a measuring point. uint8_t ix = mesh_point % nMeasPoints; // from 0 to MESH_NUM_X_POINTS - 1 @@ -5004,7 +5018,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) if((ix == 0) && (iy == 0)) current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; else current_position[Z_AXIS] += 2.f / nMeasPoints; //use relative movement from Z coordinate where PINDa triggered on previous point. This makes calibration faster. float init_z_bckp = current_position[Z_AXIS]; - plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE); st_synchronize(); // Move to XY position of the sensor point. @@ -5025,7 +5039,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) #endif // SUPPORT_VERBOSITY //printf_P(PSTR("after clamping: [%f;%f]\n"), current_position[X_AXIS], current_position[Y_AXIS]); - plan_buffer_line_curposXYZE(XY_AXIS_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(XY_AXIS_FEEDRATE); st_synchronize(); // Go down until endstop is hit @@ -5037,7 +5051,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) if (init_z_bckp - current_position[Z_AXIS] < 0.1f) { //broken cable or initial Z coordinate too low. Go to MESH_HOME_Z_SEARCH and repeat last step (z-probe) again to distinguish between these two cases. //printf_P(PSTR("Another attempt! Current Z position: %f\n"), current_position[Z_AXIS]); current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE); st_synchronize(); if (!find_bed_induction_sensor_point_z((has_z && mesh_point > 0) ? z0 - Z_CALIBRATION_THRESHOLD : -10.f, nProbeRetry)) { //if we have data from z calibration max allowed difference is 1mm for each point, if we dont have data max difference is 10mm from initial point @@ -5092,7 +5106,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) MYSERIAL.print(current_position[Z_AXIS], 5); } #endif // SUPPORT_VERBOSITY - plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE); st_synchronize(); if (mesh_point != nMeasPoints * nMeasPoints) { Sound_MakeSound(e_SOUND_TYPE_StandardAlert); @@ -5109,14 +5123,14 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) // ~ Z-homing (can not be used "G28", because X & Y-homing would have been done before (Z-homing)) bState=enable_z_endstop(false); current_position[Z_AXIS] -= 1; - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 40, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 40); st_synchronize(); enable_z_endstop(true); #ifdef TMC2130 tmc2130_home_enter(Z_AXIS_MASK); #endif // TMC2130 current_position[Z_AXIS] = MESH_HOME_Z_SEARCH; - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 40, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 40); st_synchronize(); #ifdef TMC2130 tmc2130_home_exit(); @@ -5244,9 +5258,9 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) go_home_with_z_lift(); // SERIAL_ECHOLNPGM("Go home finished"); //unretract (after PINDA preheat retraction) - if (degHotend(active_extruder) > EXTRUDE_MINTEMP && temp_cal_active == true && calibration_status_pinda() == true && target_temperature_bed >= 50) { + if ((degHotend(active_extruder) > EXTRUDE_MINTEMP) && eeprom_read_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE) && calibration_status_pinda() && (target_temperature_bed >= 50)) { current_position[E_AXIS] += default_retraction; - plan_buffer_line_curposXYZE(400, active_extruder); + plan_buffer_line_curposXYZE(400); } KEEPALIVE_STATE(NOT_BUSY); // Restore custom message state @@ -5268,7 +5282,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) if (mbl.active) { SERIAL_PROTOCOLPGM("Num X,Y: "); SERIAL_PROTOCOL(MESH_NUM_X_POINTS); - SERIAL_PROTOCOLPGM(","); + SERIAL_PROTOCOL(','); SERIAL_PROTOCOL(MESH_NUM_Y_POINTS); SERIAL_PROTOCOLPGM("\nZ search height: "); SERIAL_PROTOCOL(MESH_HOME_Z_SEARCH); @@ -5278,7 +5292,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) SERIAL_PROTOCOLPGM(" "); SERIAL_PROTOCOL_F(mbl.z_values[y][x], 5); } - SERIAL_PROTOCOLPGM("\n"); + SERIAL_PROTOCOLLN(); } } else @@ -6288,7 +6302,7 @@ Sigma_Exit: for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) { SERIAL_PROTOCOLPGM(" T"); SERIAL_PROTOCOL(cur_extruder); - SERIAL_PROTOCOLPGM(":"); + SERIAL_PROTOCOL(':'); SERIAL_PROTOCOL_F(degHotend(cur_extruder),1); SERIAL_PROTOCOLPGM(" /"); SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1); @@ -7973,9 +7987,8 @@ Sigma_Exit: { SERIAL_PROTOCOLPGM("P:"); SERIAL_PROTOCOL_F(current_temperature_pinda, 1); - SERIAL_PROTOCOLPGM("/"); - SERIAL_PROTOCOL(set_target_pinda); - SERIAL_PROTOCOLLN(""); + SERIAL_PROTOCOL('/'); + SERIAL_PROTOCOLLN(set_target_pinda); codenum = _millis(); } manage_heater(); @@ -8564,7 +8577,7 @@ Sigma_Exit: break; /*! - ### M999 - Restart after being stopped M999: Restart after being stopped by error + ### M999 - Restart after being stopped M999: Restart after being stopped by error @todo Usually doesn't work. Should be fixed or removed. Most of the time, if `Stopped` it set, the print fails and is unrecoverable. */ case 999: @@ -8724,7 +8737,7 @@ Sigma_Exit: #else //SNMM if (tmp_extruder >= EXTRUDERS) { SERIAL_ECHO_START; - SERIAL_ECHOPGM("T"); + SERIAL_ECHO('T'); SERIAL_PROTOCOLLN((int)tmp_extruder); SERIAL_ECHOLNRPGM(_n("Invalid extruder"));////MSG_INVALID_EXTRUDER } @@ -8754,7 +8767,7 @@ Sigma_Exit: } // Set the new active extruder and position active_extruder = tmp_extruder; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); // Move to the old position if 'F' was in the parameters if (make_move && Stopped == false) { prepare_move(); @@ -9304,13 +9317,13 @@ void prepare_move() // Do not use feedmultiply for E or Z only moves if( (current_position[X_AXIS] == destination [X_AXIS]) && (current_position[Y_AXIS] == destination [Y_AXIS])) { - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder); + plan_buffer_line_destinationXYZE(feedrate/60); } else { #ifdef MESH_BED_LEVELING mesh_plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate*feedmultiply*(1./(60.f*100.f)), active_extruder); #else - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate*feedmultiply*(1./(60.f*100.f)), active_extruder); + plan_buffer_line_destinationXYZE(feedrate*feedmultiply*(1./(60.f*100.f))); #endif } @@ -9444,7 +9457,32 @@ static void handleSafetyTimer() } #endif //SAFETYTIMER -#define FS_CHECK_COUNT 250 +#ifdef IR_SENSOR_ANALOG +#define FS_CHECK_COUNT 16 +/// Switching mechanism of the fsensor type. +/// Called from 2 spots which have a very similar behavior +/// 1: ClFsensorPCB::_Old -> ClFsensorPCB::_Rev04 and print _i("FS v0.4 or newer") +/// 2: ClFsensorPCB::_Rev04 -> oFsensorPCB=ClFsensorPCB::_Old and print _i("FS v0.3 or older") +void manage_inactivity_IR_ANALOG_Check(uint16_t &nFSCheckCount, ClFsensorPCB isVersion, ClFsensorPCB switchTo, const char *statusLineTxt_P) { + bool bTemp = (!CHECK_ALL_HEATERS); + bTemp = bTemp && (menu_menu == lcd_status_screen); + bTemp = bTemp && ((oFsensorPCB == isVersion) || (oFsensorPCB == ClFsensorPCB::_Undef)); + bTemp = bTemp && fsensor_enabled; + if (bTemp) { + nFSCheckCount++; + if (nFSCheckCount > FS_CHECK_COUNT) { + nFSCheckCount = 0; // not necessary + oFsensorPCB = switchTo; + eeprom_update_byte((uint8_t *)EEPROM_FSENSOR_PCB, (uint8_t)oFsensorPCB); + printf_IRSensorAnalogBoardChange(); + lcd_setstatuspgm(statusLineTxt_P); + } + } else { + nFSCheckCount = 0; + } +} +#endif + void manage_inactivity(bool ignore_stepper_queue/*=false*/) //default argument set in Marlin.h { #ifdef FILAMENT_SENSOR @@ -9457,15 +9495,15 @@ static uint16_t nFSCheckCount=0; { //-// if (mcode_in_progress != 600) //M600 not in progress #ifdef PAT9125 - bInhibitFlag=(menu_menu==lcd_menu_extruder_info); // Support::ExtruderInfo menu active + bInhibitFlag=(menu_menu==lcd_menu_extruder_info); // Support::ExtruderInfo menu active #endif // PAT9125 #ifdef IR_SENSOR - bInhibitFlag=(menu_menu==lcd_menu_show_sensors_state); // Support::SensorInfo menu active + bInhibitFlag=(menu_menu==lcd_menu_show_sensors_state); // Support::SensorInfo menu active #ifdef IR_SENSOR_ANALOG - bInhibitFlag=bInhibitFlag||bMenuFSDetect; // Settings::HWsetup::FSdetect menu active + bInhibitFlag=bInhibitFlag||bMenuFSDetect; // Settings::HWsetup::FSdetect menu active #endif // IR_SENSOR_ANALOG #endif // IR_SENSOR - if ((mcode_in_progress != 600) && (eFilamentAction != FilamentAction::AutoLoad) && (!bInhibitFlag)) //M600 not in progress, preHeat @ autoLoad menu not active, Support::ExtruderInfo/SensorInfo menu not active + if ((mcode_in_progress != 600) && (eFilamentAction != FilamentAction::AutoLoad) && (!bInhibitFlag)) //M600 not in progress, preHeat @ autoLoad menu not active, Support::ExtruderInfo/SensorInfo menu not active { if (!moves_planned() && !IS_SD_PRINTING && !is_usb_printing && (lcd_commands_type != LcdCommands::Layer1Cal) && ! eeprom_read_byte((uint8_t*)EEPROM_WIZARD_ACTIVE)) { @@ -9476,7 +9514,7 @@ static uint16_t nFSCheckCount=0; if( current_voltage_raw_IR > maxVolt )maxVolt = current_voltage_raw_IR; if( current_voltage_raw_IR < minVolt )minVolt = current_voltage_raw_IR; -#if 0 +#if 0 // Start: IR Sensor debug info { // debug print static uint16_t lastVolt = ~0U; if( current_voltage_raw_IR != lastVolt ){ @@ -9484,38 +9522,29 @@ static uint16_t nFSCheckCount=0; lastVolt = current_voltage_raw_IR; } } -#endif - // the trouble is, I can hold the filament in the hole in such a way, that it creates the exact voltage - // to be detected as the new fsensor - // We can either fake it by extending the detection window to a looooong time - // or do some other countermeasures +#endif // End: IR Sensor debug info + //! The trouble is, I can hold the filament in the hole in such a way, that it creates the exact voltage + //! to be detected as the new fsensor + //! We can either fake it by extending the detection window to a looooong time + //! or do some other countermeasures - // what we want to detect: - // if minvolt gets below ~0.6V, it means there is an old fsensor - // if maxvolt gets above 4.6V, it means we either have an old fsensor or broken cables/fsensor - // So I'm waiting for a situation, when minVolt gets to range <0, 0.7> and maxVolt gets into range <4.4, 5> - // If and only if minVolt is in range <0.6, 0.7> and maxVolt is in range <4.4, 4.5>, I'm considering a situation with the new fsensor - // otherwise, I don't care - - if( minVolt >= Voltage2Raw(0.3F) && minVolt <= Voltage2Raw(0.5F) - && maxVolt >= Voltage2Raw(4.2F) && maxVolt <= Voltage2Raw(4.6F) + //! what we want to detect: + //! if minvolt gets below ~0.3V, it means there is an old fsensor + //! if maxvolt gets above 4.6V, it means we either have an old fsensor or broken cables/fsensor + //! So I'm waiting for a situation, when minVolt gets to range <0, 1.5> and maxVolt gets into range <3.0, 5> + //! If and only if minVolt is in range <0.3, 1.5> and maxVolt is in range <3.0, 4.6>, I'm considering a situation with the new fsensor + if( minVolt >= IRsensor_Ldiode_TRESHOLD && minVolt <= IRsensor_Lmax_TRESHOLD + && maxVolt >= IRsensor_Hmin_TRESHOLD && maxVolt <= IRsensor_Hopen_TRESHOLD ){ - bool bTemp = (!CHECK_ALL_HEATERS); - bTemp = bTemp && (menu_menu==lcd_status_screen); - bTemp = bTemp && ((oFsensorPCB==ClFsensorPCB::_Old)||(oFsensorPCB==ClFsensorPCB::_Undef)); - bTemp = bTemp && fsensor_enabled; - if(bTemp){ - nFSCheckCount++; - if(nFSCheckCount>FS_CHECK_COUNT){ - nFSCheckCount=0; // not necessary - oFsensorPCB=ClFsensorPCB::_Rev04; - eeprom_update_byte((uint8_t*)EEPROM_FSENSOR_PCB,(uint8_t)oFsensorPCB); - printf_IRSensorAnalogBoardChange(true); - lcd_setstatuspgm(_i("FS v0.4 or newer"));////c=18 - } - } else { - nFSCheckCount=0; - } + manage_inactivity_IR_ANALOG_Check(nFSCheckCount, ClFsensorPCB::_Old, ClFsensorPCB::_Rev04, _i("FS v0.4 or newer") ); ////c=18 + } + //! If and only if minVolt is in range <0.0, 0.3> and maxVolt is in range <4.6, 5.0V>, I'm considering a situation with the old fsensor + //! Note, we are not relying on one voltage here - getting just +5V can mean an old fsensor or a broken new sensor - that's why + //! we need to have both voltages detected correctly to allow switching back to the old fsensor. + else if( minVolt < IRsensor_Ldiode_TRESHOLD + && maxVolt > IRsensor_Hopen_TRESHOLD && maxVolt <= IRsensor_VMax_TRESHOLD + ){ + manage_inactivity_IR_ANALOG_Check(nFSCheckCount, ClFsensorPCB::_Rev04, oFsensorPCB=ClFsensorPCB::_Old, _i("FS v0.3 or older")); ////c=18 } #endif // IR_SENSOR_ANALOG if (fsensor_check_autoload()) @@ -9526,7 +9555,7 @@ static uint16_t nFSCheckCount=0; //-// if (degHotend0() > EXTRUDE_MINTEMP) if(0) { - Sound_MakeCustom(50,1000,false); + Sound_MakeCustom(50,1000,false); loading_flag = true; enquecommand_front_P((PSTR("M701"))); } @@ -9537,20 +9566,17 @@ if(0) show_preheat_nozzle_warning(); lcd_update_enable(true); */ - eFilamentAction=FilamentAction::AutoLoad; - bFilamentFirstRun=false; - if(target_temperature[0]>=EXTRUDE_MINTEMP) - { - bFilamentPreheatState=true; -// mFilamentItem(target_temperature[0],target_temperature_bed); - menu_submenu(mFilamentItemForce); - } - else - { - menu_submenu(lcd_generic_preheat_menu); - lcd_timeoutToStatus.start(); - } - } + eFilamentAction=FilamentAction::AutoLoad; + bFilamentFirstRun=false; + if(target_temperature[0]>=EXTRUDE_MINTEMP){ + bFilamentPreheatState=true; +// mFilamentItem(target_temperature[0],target_temperature_bed); + menu_submenu(mFilamentItemForce); + } else { + menu_submenu(lcd_generic_preheat_menu); + lcd_timeoutToStatus.start(); + } + } } } else @@ -9942,7 +9968,7 @@ static void wait_for_heater(long codenum, uint8_t extruder) { } else { - SERIAL_PROTOCOLLN("?"); + SERIAL_PROTOCOLLN('?'); } } #else @@ -10073,16 +10099,16 @@ void bed_check(float x_dimension, float y_dimension, int x_points_num, int y_poi card.openFile(filename_wldsd, false); /*destination[Z_AXIS] = mesh_home_z_search; - //plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE, active_extruder); + //plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE); - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], Z_LIFT_FEEDRATE, active_extruder); + plan_buffer_line_destinationXYZE(Z_LIFT_FEEDRATE); for(int8_t i=0; i < NUM_AXIS; i++) { current_position[i] = destination[i]; } st_synchronize(); */ destination[Z_AXIS] = measure_z_height; - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], Z_LIFT_FEEDRATE, active_extruder); + plan_buffer_line_destinationXYZE(Z_LIFT_FEEDRATE); for(int8_t i=0; i < NUM_AXIS; i++) { current_position[i] = destination[i]; } @@ -10107,9 +10133,9 @@ void bed_check(float x_dimension, float y_dimension, int x_points_num, int y_poi if (iy & 1) ix = (x_points_num - 1) - ix; // Zig zag float z0 = 0.f; /*destination[Z_AXIS] = mesh_home_z_search; - //plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE, active_extruder); + //plan_buffer_line_curposXYZE(Z_LIFT_FEEDRATE); - plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], Z_LIFT_FEEDRATE, active_extruder); + plan_buffer_line_destinationXYZE(Z_LIFT_FEEDRATE); for(int8_t i=0; i < NUM_AXIS; i++) { current_position[i] = destination[i]; } @@ -10122,8 +10148,8 @@ void bed_check(float x_dimension, float y_dimension, int x_points_num, int y_poi destination[X_AXIS] = ix * (x_dimension / (x_points_num - 1)) + shift_x; destination[Y_AXIS] = iy * (y_dimension / (y_points_num - 1)) + shift_y; - mesh_plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], XY_AXIS_FEEDRATE/6, active_extruder); - set_current_to_destination(); + mesh_plan_buffer_line_destinationXYZE(XY_AXIS_FEEDRATE/6); + set_current_to_destination(); st_synchronize(); // printf_P(PSTR("X = %f; Y= %f \n"), current_position[X_AXIS], current_position[Y_AXIS]); @@ -10476,7 +10502,11 @@ float temp_comp_interpolation(float inp_temperature) { if (i>0) EEPROM_read_B(EEPROM_PROBE_TEMP_SHIFT + (i-1) * 2, &shift[i]); //read shift in steps from EEPROM temp_C[i] = 50 + i * 10; //temperature in C #ifdef PINDA_THERMISTOR - temp_C[i] = 35 + i * 5; //temperature in C + constexpr int start_compensating_temp = 35; + temp_C[i] = start_compensating_temp + i * 5; //temperature in degrees C +#ifdef DETECT_SUPERPINDA + static_assert(start_compensating_temp >= PINDA_MINTEMP, "Temperature compensation start point is lower than PINDA_MINTEMP."); +#endif //DETECT_SUPERPINDA #else temp_C[i] = 50 + i * 10; //temperature in C #endif @@ -10529,7 +10559,7 @@ float temp_comp_interpolation(float inp_temperature) { #ifdef PINDA_THERMISTOR float temp_compensation_pinda_thermistor_offset(float temperature_pinda) { - if (!temp_cal_active) return 0; + if (!eeprom_read_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE)) return 0; if (!calibration_status_pinda()) return 0; return temp_comp_interpolation(temperature_pinda) / cs.axis_steps_per_unit[Z_AXIS]; } @@ -10546,12 +10576,12 @@ void long_pause() //long pause print //lift z current_position[Z_AXIS] += Z_PAUSE_LIFT; if (current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS; - plan_buffer_line_curposXYZE(15, active_extruder); + plan_buffer_line_curposXYZE(15); //Move XY to side current_position[X_AXIS] = X_PAUSE_POS; current_position[Y_AXIS] = Y_PAUSE_POS; - plan_buffer_line_curposXYZE(50, active_extruder); + plan_buffer_line_curposXYZE(50); // Turn off the print fan fanSpeed = 0; @@ -10661,7 +10691,7 @@ void uvlo_() // Retract current_position[E_AXIS] -= default_retraction; - plan_buffer_line_curposXYZE(95, active_extruder); + plan_buffer_line_curposXYZE(95); st_synchronize(); disable_e0(); @@ -10674,7 +10704,7 @@ void uvlo_() current_position[Z_AXIS] += float(1024 - z_microsteps) / (z_res * cs.axis_steps_per_unit[Z_AXIS]) + UVLO_Z_AXIS_SHIFT; - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS]/60, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS]/60); st_synchronize(); poweroff_z(); @@ -10737,7 +10767,7 @@ void uvlo_() // All is set: with all the juice left, try to move extruder away to detach the nozzle completely from the print poweron_z(); current_position[X_AXIS] = (current_position[X_AXIS] < 0.5f * (X_MIN_POS + X_MAX_POS)) ? X_MIN_POS : X_MAX_POS; - plan_buffer_line_curposXYZE(500, active_extruder); + plan_buffer_line_curposXYZE(500); st_synchronize(); wdt_enable(WDTO_1S); @@ -10788,7 +10818,7 @@ void uvlo_tiny() current_position[Z_AXIS] += float(1024 - z_microsteps) / (z_res * cs.axis_steps_per_unit[Z_AXIS]) + UVLO_TINY_Z_AXIS_SHIFT; - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS]/60, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS]/60); st_synchronize(); poweroff_z(); @@ -10967,7 +10997,7 @@ bool recover_machine_state_after_power_panic() // 5) Set the physical positions from the logical positions using the world2machine transformation // This is only done to inizialize Z/E axes with physical locations, since X/Y are unknown. - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); // 6) Power up the Z motors, mark their positions as known. axis_known_position[Z_AXIS] = true; @@ -11391,9 +11421,9 @@ void print_mesh_bed_leveling_table() for (int8_t y = 0; y < MESH_NUM_Y_POINTS; ++ y) for (int8_t x = 0; x < MESH_NUM_Y_POINTS; ++ x) { MYSERIAL.print(mbl.z_values[y][x], 3); - SERIAL_ECHOPGM(" "); + SERIAL_ECHO(' '); } - SERIAL_ECHOLNPGM(""); + SERIAL_ECHOLN(); } uint16_t print_time_remaining() { @@ -11441,7 +11471,7 @@ static void print_time_remaining_init() void load_filament_final_feed() { current_position[E_AXIS]+= FILAMENTCHANGE_FINALFEED; - plan_buffer_line_curposXYZE(FILAMENTCHANGE_EFEED_FINAL, active_extruder); + plan_buffer_line_curposXYZE(FILAMENTCHANGE_EFEED_FINAL); } //! @brief Wait for user to check the state @@ -11586,7 +11616,7 @@ void M600_load_filament_movements() plan_buffer_line_curposXYZE(50, active_extruder); #else current_position[E_AXIS]+= FILAMENTCHANGE_FIRSTFEED ; - plan_buffer_line_curposXYZE(FILAMENTCHANGE_EFEED_FIRST, active_extruder); + plan_buffer_line_curposXYZE(FILAMENTCHANGE_EFEED_FIRST); #endif load_filament_final_feed(); lcd_loading_filament(); @@ -11693,7 +11723,6 @@ void disable_force_z() #endif // TMC2130 } - void enable_force_z() { if(bEnableForce_z) diff --git a/Firmware/bootapp.c b/Firmware/bootapp.c index 4fd67db2b..c4585af5c 100644 --- a/Firmware/bootapp.c +++ b/Firmware/bootapp.c @@ -9,6 +9,8 @@ extern FILE _uartout; #define uartout (&_uartout) +extern void softReset(); + void bootapp_print_vars(void) { fprintf_P(uartout, PSTR("boot_src_addr =0x%08lx\n"), boot_src_addr); @@ -39,8 +41,7 @@ void bootapp_ram2flash(uint16_t rptr, uint16_t fptr, uint16_t size) boot_src_addr = (uint32_t)rptr; boot_dst_addr = (uint32_t)fptr; bootapp_print_vars(); - wdt_enable(WDTO_15MS); - while(1); + softReset(); } void bootapp_reboot_user0(uint8_t reserved) @@ -50,6 +51,5 @@ void bootapp_reboot_user0(uint8_t reserved) boot_app_flags = BOOT_APP_FLG_USER0; boot_reserved = reserved; bootapp_print_vars(); - wdt_enable(WDTO_15MS); - while(1); + softReset(); } diff --git a/Firmware/cardreader.cpp b/Firmware/cardreader.cpp index fb25ff6cf..a49cd6d68 100644 --- a/Firmware/cardreader.cpp +++ b/Firmware/cardreader.cpp @@ -331,7 +331,7 @@ void CardReader::diveSubfolder (const char *fileName, SdFile& dir) { SERIAL_PROTOCOLRPGM(MSG_SD_OPEN_FILE_FAIL); SERIAL_PROTOCOL(subdirname); - SERIAL_PROTOCOLLNPGM("."); + SERIAL_PROTOCOLLN('.'); return; } else @@ -430,7 +430,7 @@ void CardReader::openFile(const char* name,bool read, bool replace_current/*=tru { SERIAL_PROTOCOLRPGM(MSG_SD_OPEN_FILE_FAIL); SERIAL_PROTOCOL(fname); - SERIAL_PROTOCOLLNPGM("."); + SERIAL_PROTOCOLLN('.'); } } else @@ -439,7 +439,7 @@ void CardReader::openFile(const char* name,bool read, bool replace_current/*=tru { SERIAL_PROTOCOLRPGM(MSG_SD_OPEN_FILE_FAIL); SERIAL_PROTOCOL(fname); - SERIAL_PROTOCOLLNPGM("."); + SERIAL_PROTOCOLLN('.'); } else { @@ -496,17 +496,15 @@ void CardReader::getStatus() SERIAL_PROTOCOLLNPGM("Print saved"); } else { - SERIAL_PROTOCOL(longFilename); - SERIAL_PROTOCOLPGM("\n"); + SERIAL_PROTOCOLLN(longFilename); SERIAL_PROTOCOLRPGM(_N("SD printing byte "));////MSG_SD_PRINTING_BYTE SERIAL_PROTOCOL(sdpos); - SERIAL_PROTOCOLPGM("/"); + SERIAL_PROTOCOL('/'); SERIAL_PROTOCOLLN(filesize); - uint16_t time = _millis()/60000 - starttime/60000; + uint16_t time = ( _millis() - starttime ) / 60000U; SERIAL_PROTOCOL(itostr2(time/60)); SERIAL_PROTOCOL(':'); - SERIAL_PROTOCOL(itostr2(time%60)); - SERIAL_PROTOCOLPGM("\n"); + SERIAL_PROTOCOLLN(itostr2(time%60)); } } else { diff --git a/Firmware/eeprom.h b/Firmware/eeprom.h index 61e078fc0..5cb7ddb85 100644 --- a/Firmware/eeprom.h +++ b/Firmware/eeprom.h @@ -341,8 +341,9 @@ static_assert(sizeof(Sheets) == EEPROM_SHEETS_SIZEOF, "Sizeof(Sheets) is not EEP | 0x0D9F 3487 | uint8 | ^ | 00h 0 | ffh 255 | 8th sheet - bed temp | ^ | D3 Ax0d9f C1 | 0x0DA0 3488 | uint8 | ^ | 00h 0 | ffh 255 | 8th sheet - PINDA temp | ^ | D3 Ax0da0 C1 | 0x0DA1 3489 | uint8 | ??? | 00h 0 | ffh 255 | ??? | ??? | D3 Ax0da1 C1 -| 0x0D48 3400 | uint8 | EEPROM_FSENSOR_PCB | ??? | ffh 255 | Filament Sensor type old vs new | ??? | D3 Ax0d48 C1 -| ^ | ^ | ^ | ??? | ^ | Filament Sensor type ??? | ^ | ^ +| 0x0D48 3400 | uint8 | EEPROM_FSENSOR_PCB | ffh 255 | ffh 255 | Filament Sensor type IR unknown | LCD Support | D3 Ax0d48 C1 +| ^ | ^ | ^ | 00h 0 | ^ | Filament Sensor type IR 0.3 or older | ^ | ^ +| ^ | ^ | ^ | 01h 1 | ^ | Filament Sensor type IR 0.4 or newer | ^ | ^ | 0x0D47 3399 | uint8 | EEPROM_FSENSOR_ACTION_NA | 00h 0 | ffh 255 | Filament Sensor action: __Continue__ | LCD menu | D3 Ax0d47 C1 | ^ | ^ | ^ | 01h 1 | ^ | Filament Sensor action: __Pause__ | ^ | ^ | 0x0D37 3383 | float | EEPROM_UVLO_SAVED_TARGET | ??? | ff ff ff ffh | Power panic saved target all-axis | ??? | D3 Ax0d37 C16 @@ -358,6 +359,12 @@ static_assert(sizeof(Sheets) == EEPROM_SHEETS_SIZEOF, "Sizeof(Sheets) is not EEP | ^ | ^ | ^ | 00h 0 | ^ | LCD backlight mode: __Dim__ | ^ | ^ | 0x0D30 3376 | uint16 | EEPROM_BACKLIGHT_TIMEOUT | 01 00 - ff ff | 0a 00h 65535 | LCD backlight timeout: __10__ seconds | LCD menu | D3 Ax0d30 C2 | 0x0D2C 3372 | float | EEPROM_UVLO_LA_K | ??? | ff ff ff ffh | Power panic saved Linear Advanced K value | ??? | D3 Ax0d2c C4 +| 0x0D2B 3371 | uint8 | EEPROM_ALTFAN_OVERRIDE | ffh 255 | ffh 255 | ALTFAN override unknown state | LCD menu | D3 Ax0d2b C1 +| ^ | ^ | ^ | 00h 0 | ^ | ALTFAN override deactivated | ^ | ^ +| ^ | ^ | ^ | 01h 1 | ^ | ALTFAN override activated | ^ | ^ +| 0x0D2A 3370 | uint8 | EEPROM_EXPERIMENTAL_VISIBILITY | ffh 255 | ffh 255 | Experimental menu visibility unknown state | LCD menu | D3 Ax0d2a C1 +| ^ | ^ | ^ | 00h 0 | ^ | Experimental menu visibility hidden | ^ | ^ +| ^ | ^ | ^ | 01h 1 | ^ | Experimental menu visibility visible | ^ | ^ | Address begin | Bit/Type | Name | Valid values | Default/FactoryReset | Description | Gcode/Function| Debug code @@ -560,8 +567,11 @@ static Sheets * const EEPROM_Sheets_base = (Sheets*)(EEPROM_SHEETS_BASE); #define EEPROM_UVLO_LA_K (EEPROM_BACKLIGHT_TIMEOUT-4) // float +#define EEPROM_ALTFAN_OVERRIDE (EEPROM_UVLO_LA_K-1) //uint8 +#define EEPROM_EXPERIMENTAL_VISIBILITY (EEPROM_ALTFAN_OVERRIDE-1) //uint8 + //This is supposed to point to last item to allow EEPROM overrun check. Please update when adding new items. -#define EEPROM_LAST_ITEM EEPROM_UVLO_LA_K +#define EEPROM_LAST_ITEM EEPROM_EXPERIMENTAL_VISIBILITY // !!!!! // !!!!! this is end of EEPROM section ... all updates MUST BE inserted before this mark !!!!! // !!!!! diff --git a/Firmware/fsensor.cpp b/Firmware/fsensor.cpp index edb2fa894..7908c5dbc 100755 --- a/Firmware/fsensor.cpp +++ b/Firmware/fsensor.cpp @@ -170,6 +170,21 @@ void fsensor_checkpoint_print(void) restore_print_from_ram_and_continue(0); } +#ifdef IR_SENSOR_ANALOG +const char* FsensorIRVersionText() +{ + switch(oFsensorPCB) + { + case ClFsensorPCB::_Old: + return _T(MSG_IR_03_OR_OLDER); + case ClFsensorPCB::_Rev04: + return _T(MSG_IR_04_OR_NEWER); + default: + return _T(MSG_IR_UNKNOWN); + } +} +#endif //IR_SENSOR_ANALOG + void fsensor_init(void) { #ifdef PAT9125 @@ -207,9 +222,9 @@ void fsensor_init(void) } printf_P(PSTR("FSensor %S"), (fsensor_enabled?PSTR("ENABLED"):PSTR("DISABLED"))); #ifdef IR_SENSOR_ANALOG - printf_P(PSTR(" (sensor board revision:%S)\n"), (oFsensorPCB==ClFsensorPCB::_Rev04) ? _T(MSG_04_OR_NEWER) : _T(MSG_03_OR_OLDER)); + printf_P(PSTR(" (sensor board revision:%S)\n"), FsensorIRVersionText()); #else //IR_SENSOR_ANALOG - printf_P(PSTR("\n")); + MYSERIAL.println(); #endif //IR_SENSOR_ANALOG if (check_for_ir_sensor()){ ir_sensor_detected = true; @@ -463,22 +478,8 @@ bool fsensor_oq_result(void) } #endif //FSENSOR_QUALITY -ISR(FSENSOR_INT_PIN_VECT) +FORCE_INLINE static void fsensor_isr(int st_cnt) { - if (mmu_enabled || ir_sensor_detected) return; - if (!((fsensor_int_pin_old ^ FSENSOR_INT_PIN_PIN_REG) & FSENSOR_INT_PIN_MASK)) return; - fsensor_int_pin_old = FSENSOR_INT_PIN_PIN_REG; - - // prevent isr re-entry - static bool _lock = false; - if (_lock) return; - _lock = true; - - // fetch fsensor_st_cnt atomically - int st_cnt = fsensor_st_cnt; - fsensor_st_cnt = 0; - sei(); - uint8_t old_err_cnt = fsensor_err_cnt; uint8_t pat9125_res = fsensor_oq_meassure?pat9125_update():pat9125_update_y(); if (!pat9125_res) @@ -563,8 +564,28 @@ ISR(FSENSOR_INT_PIN_VECT) #endif //DEBUG_FSENSOR_LOG pat9125_y = 0; - _lock = false; - return; +} + +ISR(FSENSOR_INT_PIN_VECT) +{ + if (mmu_enabled || ir_sensor_detected) return; + if (!((fsensor_int_pin_old ^ FSENSOR_INT_PIN_PIN_REG) & FSENSOR_INT_PIN_MASK)) return; + fsensor_int_pin_old = FSENSOR_INT_PIN_PIN_REG; + + // prevent isr re-entry + static bool _lock = false; + if (!_lock) + { + // fetch fsensor_st_cnt atomically + int st_cnt = fsensor_st_cnt; + fsensor_st_cnt = 0; + + _lock = true; + sei(); + fsensor_isr(st_cnt); + cli(); + _lock = false; + } } void fsensor_setup_interrupt(void) @@ -611,42 +632,41 @@ void fsensor_enque_M600(){ void fsensor_update(void) { #ifdef PAT9125 - if (fsensor_watch_runout && (fsensor_err_cnt > FSENSOR_ERR_MAX)) - { - fsensor_stop_and_save_print(); + if (fsensor_watch_runout && (fsensor_err_cnt > FSENSOR_ERR_MAX)) + { + fsensor_stop_and_save_print(); KEEPALIVE_STATE(IN_HANDLER); - bool autoload_enabled_tmp = fsensor_autoload_enabled; - fsensor_autoload_enabled = false; - bool oq_meassure_enabled_tmp = fsensor_oq_meassure_enabled; - fsensor_oq_meassure_enabled = true; + bool autoload_enabled_tmp = fsensor_autoload_enabled; + fsensor_autoload_enabled = false; + bool oq_meassure_enabled_tmp = fsensor_oq_meassure_enabled; + fsensor_oq_meassure_enabled = true; // move the nozzle away while checking the filament current_position[Z_AXIS] += 0.8; if(current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS; - plan_buffer_line_curposXYZE(max_feedrate[Z_AXIS], active_extruder); + plan_buffer_line_curposXYZE(max_feedrate[Z_AXIS]); st_synchronize(); // check the filament in isolation fsensor_reset_err_cnt(); - fsensor_oq_meassure_start(0); + fsensor_oq_meassure_start(0); float e_tmp = current_position[E_AXIS]; current_position[E_AXIS] -= 3; - plan_buffer_line_curposXYZE(250/60, active_extruder); + plan_buffer_line_curposXYZE(250/60); current_position[E_AXIS] = e_tmp; - plan_buffer_line_curposXYZE(200/60, active_extruder); + plan_buffer_line_curposXYZE(200/60); st_synchronize(); - fsensor_oq_meassure_stop(); + fsensor_oq_meassure_stop(); - bool err = false; - err |= (fsensor_err_cnt > 0); // final error count is non-zero - err |= (fsensor_oq_er_sum > FSENSOR_OQ_MAX_ES); // total error count is above limit - err |= (fsensor_oq_yd_sum < FSENSOR_OQ_MIN_YD); // total measured distance is below limit + bool err = false; + err |= (fsensor_err_cnt > 0); // final error count is non-zero + err |= (fsensor_oq_er_sum > FSENSOR_OQ_MAX_ES); // total error count is above limit + err |= (fsensor_oq_yd_sum < FSENSOR_OQ_MIN_YD); // total measured distance is below limit fsensor_restore_print_and_continue(); fsensor_autoload_enabled = autoload_enabled_tmp; fsensor_oq_meassure_enabled = oq_meassure_enabled_tmp; - unsigned long now = _millis(); if (!err && (now - fsensor_softfail_last) > FSENSOR_SOFTERR_DELTA) fsensor_softfail_ccnt = 0; @@ -663,70 +683,70 @@ void fsensor_update(void) fsensor_softfail_last = 0; fsensor_enque_M600(); } - } + } #else //PAT9125 - if (CHECK_FSENSOR && ir_sensor_detected) + if (CHECK_FSENSOR && ir_sensor_detected) { - if(digitalRead(IR_SENSOR_PIN)) - { // IR_SENSOR_PIN ~ H + if(digitalRead(IR_SENSOR_PIN)) + { // IR_SENSOR_PIN ~ H #ifdef IR_SENSOR_ANALOG - if(!bIRsensorStateFlag) + if(!bIRsensorStateFlag) + { + bIRsensorStateFlag=true; + nIRsensorLastTime=_millis(); + } + else + { + if((_millis()-nIRsensorLastTime)>IR_SENSOR_STEADY) { - bIRsensorStateFlag=true; - nIRsensorLastTime=_millis(); - } - else - { - if((_millis()-nIRsensorLastTime)>IR_SENSOR_STEADY) - { - uint8_t nMUX1,nMUX2; - uint16_t nADC; - bIRsensorStateFlag=false; - // sequence for direct data reading from AD converter - DISABLE_TEMPERATURE_INTERRUPT(); - nMUX1=ADMUX; // ADMUX saving - nMUX2=ADCSRB; - adc_setmux(VOLT_IR_PIN); - ADCSRA|=(1<4.6V - // If it does, it means a disconnected cables or faulty board - if( (oFsensorPCB == ClFsensorPCB::_Rev04) && ( (nADC*OVERSAMPLENR) > IRsensor_Hopen_TRESHOLD ) ) - { - fsensor_disable(); - fsensor_not_responding = true; - printf_P(PSTR("IR sensor not responding (%d)!\n"),1); - if((ClFsensorActionNA)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_ACTION_NA)==ClFsensorActionNA::_Pause) + uint8_t nMUX1,nMUX2; + uint16_t nADC; + bIRsensorStateFlag=false; + // sequence for direct data reading from AD converter + DISABLE_TEMPERATURE_INTERRUPT(); + nMUX1=ADMUX; // ADMUX saving + nMUX2=ADCSRB; + adc_setmux(VOLT_IR_PIN); + ADCSRA|=(1<4.6V + // If it does, it means a disconnected cables or faulty board + if( (oFsensorPCB == ClFsensorPCB::_Rev04) && ( (nADC*OVERSAMPLENR) > IRsensor_Hopen_TRESHOLD ) ) + { + fsensor_disable(); + fsensor_not_responding = true; + printf_P(PSTR("IR sensor not responding (%d)!\n"),1); + if((ClFsensorActionNA)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_ACTION_NA)==ClFsensorActionNA::_Pause) - // if we are printing and FS action is set to "Pause", force pause the print - if(oFsensorActionNA==ClFsensorActionNA::_Pause) - lcd_pause_print(); - } - else - { + // if we are printing and FS action is set to "Pause", force pause the print + if(oFsensorActionNA==ClFsensorActionNA::_Pause) + lcd_pause_print(); + } + else + { #endif //IR_SENSOR_ANALOG - fsensor_checkpoint_print(); - fsensor_enque_M600(); + fsensor_checkpoint_print(); + fsensor_enque_M600(); #ifdef IR_SENSOR_ANALOG - } - } + } } - } - else - { // IR_SENSOR_PIN ~ L - bIRsensorStateFlag=false; + } + } + else + { // IR_SENSOR_PIN ~ L + bIRsensorStateFlag=false; #endif //IR_SENSOR_ANALOG - } - } + } + } #endif //PAT9125 } @@ -734,24 +754,36 @@ void fsensor_update(void) /// This is called only upon start of the printer or when switching the fsensor ON in the menu /// We cannot do temporal window checks here (aka the voltage has been in some range for a period of time) bool fsensor_IR_check(){ - if( IRsensor_Lmax_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_Hmin_TRESHOLD ){ - // If the voltage is in forbidden range, the fsensor is ok, but the lever is mounted improperly. - // Or the user is so creative so that he can hold a piece of fillament in the hole in such a genius way, - // that the IR fsensor reading is within 1.5 and 3V ... this would have been highly unusual - // and would have been considered more like a sabotage than normal printer operation - printf_P(PSTR("fsensor in forbidden range 1.5-3V - bad lever\n")); - return false; - } - - if( oFsensorPCB == ClFsensorPCB::_Rev04 ){ - // newer IR sensor cannot normally produce 4.6-5V, this is considered a failure/bad mount - if( IRsensor_Hopen_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_VMax_TRESHOLD ){ - printf_P(PSTR("fsensor v0.4 in fault range 4.6-5V - unconnected\n")); - return false; - } - } - - // otherwise the IR fsensor is considered working correctly - return true; + if( IRsensor_Lmax_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_Hmin_TRESHOLD ){ + /// If the voltage is in forbidden range, the fsensor is ok, but the lever is mounted improperly. + /// Or the user is so creative so that he can hold a piece of fillament in the hole in such a genius way, + /// that the IR fsensor reading is within 1.5 and 3V ... this would have been highly unusual + /// and would have been considered more like a sabotage than normal printer operation + printf_P(PSTR("fsensor in forbidden range 1.5-3V - check sensor\n")); + return false; + } + if( oFsensorPCB == ClFsensorPCB::_Rev04 ){ + /// newer IR sensor cannot normally produce 4.6-5V, this is considered a failure/bad mount + if( IRsensor_Hopen_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_VMax_TRESHOLD ){ + printf_P(PSTR("fsensor v0.4 in fault range 4.6-5V - unconnected\n")); + return false; + } + /// newer IR sensor cannot normally produce 0-0.3V, this is considered a failure +#if 0 //Disabled as it has to be decided if we gonna use this or not. + if( IRsensor_Hopen_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_VMax_TRESHOLD ){ + printf_P(PSTR("fsensor v0.4 in fault range 0.0-0.3V - wrong IR sensor\n")); + return false; + } +#endif + } + /// If IR sensor is "uknown state" and filament is not loaded > 1.5V return false +#if 0 + if( (oFsensorPCB == ClFsensorPCB::_Undef) && ( current_voltage_raw_IR > IRsensor_Lmax_TRESHOLD ) ){ + printf_P(PSTR("Unknown IR sensor version and no filament loaded detected.\n")); + return false; + } +#endif + // otherwise the IR fsensor is considered working correctly + return true; } #endif //IR_SENSOR_ANALOG diff --git a/Firmware/fsensor.h b/Firmware/fsensor.h index 4038d6b61..7eb09ab8b 100755 --- a/Firmware/fsensor.h +++ b/Firmware/fsensor.h @@ -83,6 +83,7 @@ extern uint8_t fsensor_log; //! @} #endif //PAT9125 +#define VOLT_DIV_REF 5 #ifdef IR_SENSOR_ANALOG #define IR_SENSOR_STEADY 10 // [ms] @@ -103,8 +104,21 @@ enum class ClFsensorActionNA:uint_least8_t extern ClFsensorPCB oFsensorPCB; extern ClFsensorActionNA oFsensorActionNA; +extern const char* FsensorIRVersionText(); extern bool fsensor_IR_check(); +constexpr uint16_t Voltage2Raw(float V){ + return ( V * 1023 * OVERSAMPLENR / VOLT_DIV_REF ) + 0.5F; +} +constexpr float Raw2Voltage(uint16_t raw){ + return VOLT_DIV_REF*(raw / (1023.F * OVERSAMPLENR) ); +} +constexpr uint16_t IRsensor_Ldiode_TRESHOLD = Voltage2Raw(0.3F); // ~0.3V, raw value=982 +constexpr uint16_t IRsensor_Lmax_TRESHOLD = Voltage2Raw(1.5F); // ~1.5V (0.3*Vcc), raw value=4910 +constexpr uint16_t IRsensor_Hmin_TRESHOLD = Voltage2Raw(3.0F); // ~3.0V (0.6*Vcc), raw value=9821 +constexpr uint16_t IRsensor_Hopen_TRESHOLD = Voltage2Raw(4.6F); // ~4.6V (N.C. @ Ru~20-50k, Rd'=56k, Ru'=10k), raw value=15059 +constexpr uint16_t IRsensor_VMax_TRESHOLD = Voltage2Raw(5.F); // ~5V, raw value=16368 + #endif //IR_SENSOR_ANALOG #endif //FSENSOR_H diff --git a/Firmware/heatbed_pwm.cpp b/Firmware/heatbed_pwm.cpp index 4cd0bf5e5..8121df3ee 100755 --- a/Firmware/heatbed_pwm.cpp +++ b/Firmware/heatbed_pwm.cpp @@ -59,7 +59,6 @@ enum class States : uint8_t { RISE, ///< 16 fast PWM cycles with increasing duty up to steady ON RISE_TO_ONE, ///< metastate allowing the timer change its state atomically without artefacts on the output pin ONE, ///< steady 1 (ON), no change for the whole period - ONE_TO_FALL, ///< metastate allowing the timer change its state atomically without artefacts on the output pin FALL, ///< 16 fast PWM cycles with decreasing duty down to steady OFF FALL_TO_ZERO ///< metastate allowing the timer change its state atomically without artefacts on the output pin }; @@ -155,12 +154,7 @@ ISR(TIMER0_OVF_vect) // timer compare interrupt service routine return; // want full duty for the next ONE cycle again - so keep on heating and just wait for the next timer ovf } // otherwise moving towards FALL - // @@TODO it looks like ONE_TO_FALL isn't necessary, there are no artefacts at all state = States::ONE;//_TO_FALL; -// TCCR0B = (1 << CS00); // change prescaler to 1, i.e. 62.5kHz -// break; -// case States::ONE_TO_FALL: -// OCR0B = 255; // zero duty state=States::FALL; fastCounter = fastMax - 1;// we'll do 16-1 cycles of RISE TCNT0 = 255; // force overflow on the next clock cycle diff --git a/Firmware/la10compat.cpp b/Firmware/la10compat.cpp index 918659255..d729186fe 100644 --- a/Firmware/la10compat.cpp +++ b/Firmware/la10compat.cpp @@ -38,7 +38,7 @@ void la10c_mode_change(LA10C_MODE mode) // Approximate a LA10 value to a LA15 equivalent. static float la10c_convert(float k) { - float new_K = k * 0.004 - 0.05; + float new_K = k * 0.002 - 0.01; return new_K < 0? 0: new_K > (LA_K_MAX - FLT_EPSILON)? (LA_K_MAX - FLT_EPSILON): new_K; @@ -78,10 +78,10 @@ float la10c_jerk(float j) return j; // bring low E-jerk values into equivalent LA 1.5 values by - // flattening the response in the (1-4.5) range using a piecewise + // flattening the response in the (0.3-4.5) range using a piecewise // function. Is it truly worth to preserve the difference between // 1.5/2.5 E-jerk for LA1.0? Probably not, but we try nonetheless. - j = j < 1.0? j * 3.625: + j = j < 0.3? j * 11.5: j < 4.5? j * 0.25 + 3.375: j; diff --git a/Firmware/mesh_bed_calibration.cpp b/Firmware/mesh_bed_calibration.cpp index 88cbc671a..12fca582e 100644 --- a/Firmware/mesh_bed_calibration.cpp +++ b/Firmware/mesh_bed_calibration.cpp @@ -920,7 +920,7 @@ static inline void go_xy(float x, float y, float fr) static inline void go_to_current(float fr) { - plan_buffer_line_curposXYZE(fr, active_extruder); + plan_buffer_line_curposXYZE(fr); st_synchronize(); } @@ -929,7 +929,7 @@ static inline void update_current_position_xyz() current_position[X_AXIS] = st_get_position_mm(X_AXIS); current_position[Y_AXIS] = st_get_position_mm(Y_AXIS); current_position[Z_AXIS] = st_get_position_mm(Z_AXIS); - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); } static inline void update_current_position_z() diff --git a/Firmware/messages.c b/Firmware/messages.c index 9c31c1266..be613cab1 100644 --- a/Firmware/messages.c +++ b/Firmware/messages.c @@ -140,8 +140,9 @@ const char MSG_DIM[] PROGMEM_I1 = ISTR("Dim"); ////c=6 const char MSG_AUTO[] PROGMEM_I1 = ISTR("Auto"); ////c=6 #ifdef IR_SENSOR_ANALOG // Beware - the space at the beginning is necessary since it is reused in LCD menu items which are to be with a space -const char MSG_04_OR_NEWER[] PROGMEM_I1 = ISTR(" 0.4 or newer");////c=18 -const char MSG_03_OR_OLDER[] PROGMEM_I1 = ISTR(" 0.3 or older");////c=18 +const char MSG_IR_04_OR_NEWER[] PROGMEM_I1 = ISTR(" 0.4 or newer");////c=18 +const char MSG_IR_03_OR_OLDER[] PROGMEM_I1 = ISTR(" 0.3 or older");////c=18 +const char MSG_IR_UNKNOWN[] PROGMEM_I1 = ISTR("unknown state");////c=18 #endif //not internationalized messages diff --git a/Firmware/messages.h b/Firmware/messages.h index 599f1d1fa..4653c869e 100644 --- a/Firmware/messages.h +++ b/Firmware/messages.h @@ -139,8 +139,9 @@ extern const char MSG_BRIGHT[]; extern const char MSG_DIM[]; extern const char MSG_AUTO[]; #ifdef IR_SENSOR_ANALOG -extern const char MSG_04_OR_NEWER[]; -extern const char MSG_03_OR_OLDER[]; +extern const char MSG_IR_04_OR_NEWER[]; +extern const char MSG_IR_03_OR_OLDER[]; +extern const char MSG_IR_UNKNOWN[]; #endif //not internationalized messages diff --git a/Firmware/mmu.cpp b/Firmware/mmu.cpp index ebf8c0131..c5981894c 100755 --- a/Firmware/mmu.cpp +++ b/Firmware/mmu.cpp @@ -540,7 +540,7 @@ void mmu_command(MmuCmd cmd) void mmu_load_step(bool synchronize) { current_position[E_AXIS] = current_position[E_AXIS] + MMU_LOAD_FEEDRATE * 0.1; - plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE); if (synchronize) st_synchronize(); } @@ -605,7 +605,7 @@ bool mmu_get_response(uint8_t move) { printf_P(PSTR("Unload 1\n")); current_position[E_AXIS] = current_position[E_AXIS] - MMU_LOAD_FEEDRATE * MMU_LOAD_TIME_MS*0.001; - plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE); st_synchronize(); } } @@ -623,7 +623,7 @@ bool mmu_get_response(uint8_t move) { printf_P(PSTR("Unload 2\n")); current_position[E_AXIS] = current_position[E_AXIS] - MMU_LOAD_FEEDRATE * MMU_LOAD_TIME_MS*0.001; - plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE); st_synchronize(); } } @@ -701,13 +701,13 @@ void manage_response(bool move_axes, bool turn_off_nozzle, uint8_t move) //lift z current_position[Z_AXIS] += Z_PAUSE_LIFT; if (current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS; - plan_buffer_line_curposXYZE(15, active_extruder); + plan_buffer_line_curposXYZE(15); st_synchronize(); //Move XY to side current_position[X_AXIS] = X_PAUSE_POS; current_position[Y_AXIS] = Y_PAUSE_POS; - plan_buffer_line_curposXYZE(50, active_extruder); + plan_buffer_line_curposXYZE(50); st_synchronize(); } if (turn_off_nozzle) { @@ -758,17 +758,17 @@ void manage_response(bool move_axes, bool turn_off_nozzle, uint8_t move) lcd_display_message_fullscreen_P(_i("MMU OK. Resuming temperature...")); delay_keep_alive(3000); } - mmu_wait_for_heater_blocking(); + mmu_wait_for_heater_blocking(); } if (move_axes) { lcd_clear(); lcd_display_message_fullscreen_P(_i("MMU OK. Resuming position...")); current_position[X_AXIS] = x_position_bckp; current_position[Y_AXIS] = y_position_bckp; - plan_buffer_line_curposXYZE(50, active_extruder); + plan_buffer_line_curposXYZE(50); st_synchronize(); current_position[Z_AXIS] = z_position_bckp; - plan_buffer_line_curposXYZE(15, active_extruder); + plan_buffer_line_curposXYZE(15); st_synchronize(); } else { @@ -807,19 +807,19 @@ void mmu_load_to_nozzle() current_position[E_AXIS] += 7.2f; } float feedrate = 562; - plan_buffer_line_curposXYZE(feedrate / 60, active_extruder); + plan_buffer_line_curposXYZE(feedrate / 60); st_synchronize(); current_position[E_AXIS] += 14.4f; feedrate = 871; - plan_buffer_line_curposXYZE(feedrate / 60, active_extruder); + plan_buffer_line_curposXYZE(feedrate / 60); st_synchronize(); current_position[E_AXIS] += 36.0f; feedrate = 1393; - plan_buffer_line_curposXYZE(feedrate / 60, active_extruder); + plan_buffer_line_curposXYZE(feedrate / 60); st_synchronize(); current_position[E_AXIS] += 14.4f; feedrate = 871; - plan_buffer_line_curposXYZE(feedrate / 60, active_extruder); + plan_buffer_line_curposXYZE(feedrate / 60); st_synchronize(); if (!saved_e_relative_mode) axis_relative_modes &= ~E_AXIS_MASK; } @@ -1072,7 +1072,7 @@ void mmu_filament_ramming() for(uint8_t i = 0; i < (sizeof(ramming_sequence)/sizeof(E_step));++i) { current_position[E_AXIS] += pgm_read_float(&(ramming_sequence[i].extrude)); - plan_buffer_line_curposXYZE(pgm_read_float(&(ramming_sequence[i].feed_rate)), active_extruder); + plan_buffer_line_curposXYZE(pgm_read_float(&(ramming_sequence[i].feed_rate))); st_synchronize(); } } @@ -1446,9 +1446,9 @@ bFilamentAction=false; // NOT in "mmu_fil_eject_menu( static bool can_load() { current_position[E_AXIS] += 60; - plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE); current_position[E_AXIS] -= 52; - plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE); st_synchronize(); uint_least8_t filament_detected_count = 0; @@ -1458,7 +1458,7 @@ static bool can_load() for(uint_least8_t i = 0; i < steps; ++i) { current_position[E_AXIS] -= e_increment; - plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE, active_extruder); + plan_buffer_line_curposXYZE(MMU_LOAD_FEEDRATE); st_synchronize(); if(0 == PIN_GET(IR_SENSOR_PIN)) { diff --git a/Firmware/optiboot_w25x20cl.cpp b/Firmware/optiboot_w25x20cl.cpp index 584c32fed..dce4074e1 100644 --- a/Firmware/optiboot_w25x20cl.cpp +++ b/Firmware/optiboot_w25x20cl.cpp @@ -99,9 +99,11 @@ struct block_t; extern struct block_t *block_buffer; //! @brief Enter an STK500 compatible Optiboot boot loader waiting for flashing the languages to an external flash memory. -void optiboot_w25x20cl_enter() +//! @return 1 if "start\n" was not sent. Optiboot was skipped +//! @return 0 if "start\n" was sent. Optiboot ran normally. No need to send "start\n" in setup() +uint8_t optiboot_w25x20cl_enter() { - if (boot_app_flags & BOOT_APP_FLG_USER0) return; + if (boot_app_flags & BOOT_APP_FLG_USER0) return 1; uint8_t ch; uint8_t rampz = 0; register uint16_t address = 0; @@ -120,38 +122,46 @@ void optiboot_w25x20cl_enter() unsigned long boot_timer = 0; const char *ptr = entry_magic_send; const char *end = strlen_P(entry_magic_send) + ptr; - // Initialize the serial line. - UCSR0A |= (1 << U2X0); - UBRR0L = (((float)(F_CPU))/(((float)(115200))*8.0)-1.0+0.5); - UCSR0B = (1 << RXEN0) | (1 << TXEN0); + const uint8_t selectedSerialPort_bak = selectedSerialPort; // Flush the serial line. while (RECV_READY) { watchdogReset(); // Dummy register read (discard) (void)(*(char *)UDR0); } + selectedSerialPort = 0; //switch to Serial0 + MYSERIAL.flush(); //clear RX buffer + int SerialHead = rx_buffer.head; // Send the initial magic string. while (ptr != end) putch(pgm_read_byte(ptr ++)); watchdogReset(); - // Wait for one second until a magic string (constant entry_magic) is received + // Wait for two seconds until a magic string (constant entry_magic) is received // from the serial line. ptr = entry_magic_receive; end = strlen_P(entry_magic_receive) + ptr; while (ptr != end) { - while (! RECV_READY) { + while (rx_buffer.head == SerialHead) { watchdogReset(); delayMicroseconds(1); if (++ boot_timer > boot_timeout) + { // Timeout expired, continue with the application. - return; + selectedSerialPort = selectedSerialPort_bak; //revert Serial setting + return 0; + } } - ch = UDR0; + ch = rx_buffer.buffer[SerialHead]; + SerialHead = (unsigned int)(SerialHead + 1) % RX_BUFFER_SIZE; if (pgm_read_byte(ptr ++) != ch) + { // Magic was not received correctly, continue with the application - return; + selectedSerialPort = selectedSerialPort_bak; //revert Serial setting + return 0; + } watchdogReset(); } + cbi(UCSR0B, RXCIE0); //disable the MarlinSerial0 interrupt // Send the cfm magic string. ptr = entry_magic_cfm; while (ptr != end) diff --git a/Firmware/optiboot_w25x20cl.h b/Firmware/optiboot_w25x20cl.h index dc7d4395c..95c6465f3 100644 --- a/Firmware/optiboot_w25x20cl.h +++ b/Firmware/optiboot_w25x20cl.h @@ -1,6 +1,6 @@ #ifndef OPTIBOOT_W25X20CL_H #define OPTIBOOT_W25X20CL_H -extern void optiboot_w25x20cl_enter(); +extern uint8_t optiboot_w25x20cl_enter(); #endif /* OPTIBOOT_W25X20CL_H */ diff --git a/Firmware/planner.cpp b/Firmware/planner.cpp index fcebfa58f..2615ef66e 100644 --- a/Firmware/planner.cpp +++ b/Firmware/planner.cpp @@ -226,11 +226,23 @@ void calculate_trapezoid_for_block(block_t *block, float entry_speed, float exit // Size of Plateau of Nominal Rate. uint32_t plateau_steps = 0; +#ifdef LIN_ADVANCE + uint16_t final_adv_steps = 0; + uint16_t max_adv_steps = 0; + if (block->use_advance_lead) { + final_adv_steps = final_rate * block->adv_comp; + } +#endif + // Is the Plateau of Nominal Rate smaller than nothing? That means no cruising, and we will // have to use intersection_distance() to calculate when to abort acceleration and start braking // in order to reach the final_rate exactly at the end of this block. if (accel_decel_steps < block->step_event_count.wide) { plateau_steps = block->step_event_count.wide - accel_decel_steps; +#ifdef LIN_ADVANCE + if (block->use_advance_lead) + max_adv_steps = block->nominal_rate * block->adv_comp; +#endif } else { uint32_t acceleration_x4 = acceleration << 2; // Avoid negative numbers @@ -263,14 +275,20 @@ void calculate_trapezoid_for_block(block_t *block, float entry_speed, float exit decelerate_steps = block->step_event_count.wide; accelerate_steps = block->step_event_count.wide - decelerate_steps; } - } #ifdef LIN_ADVANCE - uint16_t final_adv_steps = 0; - if (block->use_advance_lead) { - final_adv_steps = exit_speed * block->adv_comp; - } + if (block->use_advance_lead) { + if(!accelerate_steps || !decelerate_steps) { + // accelerate_steps=0: deceleration-only ramp, max_rate is effectively unused + // decelerate_steps=0: acceleration-only ramp, max_rate _is_ final_rate + max_adv_steps = final_adv_steps; + } else { + float max_rate = sqrt(acceleration_x2 * accelerate_steps + initial_rate_sqr); + max_adv_steps = max_rate * block->adv_comp; + } + } #endif + } CRITICAL_SECTION_START; // Fill variables used by the stepper in a critical section // This block locks the interrupts globally for 4.38 us, @@ -284,6 +302,7 @@ void calculate_trapezoid_for_block(block_t *block, float entry_speed, float exit block->final_rate = final_rate; #ifdef LIN_ADVANCE block->final_adv_steps = final_adv_steps; + block->max_adv_steps = max_adv_steps; #endif } CRITICAL_SECTION_END; @@ -671,8 +690,16 @@ void planner_abort_hard() waiting_inside_plan_buffer_line_print_aborted = true; } -void plan_buffer_line_curposXYZE(float feed_rate, uint8_t extruder) { - plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feed_rate, extruder ); +void plan_buffer_line_curposXYZE(float feed_rate) { + plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feed_rate, active_extruder ); +} + +void plan_buffer_line_destinationXYZE(float feed_rate) { + plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feed_rate, active_extruder); +} + +void plan_set_position_curposXYZE(){ + plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); } float junction_deviation = 0.1; @@ -1069,12 +1096,20 @@ Having the real displacement of the head, we can calculate the total movement le && delta_mm[E_AXIS] >= 0 && abs(delta_mm[Z_AXIS]) < 0.5; if (block->use_advance_lead) { +#ifdef LA_FLOWADJ + // M221/FLOW should change uniformly the extrusion thickness + float delta_e = (e - position_float[E_AXIS]) / extruder_multiplier[extruder]; +#else + // M221/FLOW only adjusts for an incorrect source diameter + float delta_e = (e - position_float[E_AXIS]); +#endif + float delta_D = sqrt(sq(x - position_float[X_AXIS]) + + sq(y - position_float[Y_AXIS]) + + sq(z - position_float[Z_AXIS])); + // all extrusion moves with LA require a compression which is proportional to the // extrusion_length to distance ratio (e/D) - e_D_ratio = (e - position_float[E_AXIS]) / - sqrt(sq(x - position_float[X_AXIS]) - + sq(y - position_float[Y_AXIS]) - + sq(z - position_float[Z_AXIS])); + e_D_ratio = delta_e / delta_D; // Check for unusual high e_D ratio to detect if a retract move was combined with the last // print move due to min. steps per segment. Never execute this with advance! This assumes @@ -1124,53 +1159,7 @@ Having the real displacement of the head, we can calculate the total movement le block->acceleration_st = (block->acceleration_st + (bresenham_oversample >> 1)) / bresenham_oversample; #endif - block->acceleration_rate = (long)((float)block->acceleration_st * (16777216.0 / (F_CPU / 8.0))); - -#ifdef LIN_ADVANCE - if (block->use_advance_lead) { - // the nominal speed doesn't change past this point: calculate the compression ratio for the - // segment and the required advance steps - block->adv_comp = extruder_advance_K * e_D_ratio * cs.axis_steps_per_unit[E_AXIS]; - block->max_adv_steps = block->nominal_speed * block->adv_comp; - - float advance_speed; - if (e_D_ratio > 0) - advance_speed = (extruder_advance_K * e_D_ratio * block->acceleration * cs.axis_steps_per_unit[E_AXIS]); - else - advance_speed = cs.max_jerk[E_AXIS] * cs.axis_steps_per_unit[E_AXIS]; - - // to save more space we avoid another copy of calc_timer and go through slow division, but we - // still need to replicate the *exact* same step grouping policy (see below) - if (advance_speed > MAX_STEP_FREQUENCY) advance_speed = MAX_STEP_FREQUENCY; - float advance_rate = (F_CPU / 8.0) / advance_speed; - if (advance_speed > 20000) { - block->advance_rate = advance_rate * 4; - block->advance_step_loops = 4; - } - else if (advance_speed > 10000) { - block->advance_rate = advance_rate * 2; - block->advance_step_loops = 2; - } - else - { - // never overflow the internal accumulator with very low rates - if (advance_rate < UINT16_MAX) - block->advance_rate = advance_rate; - else - block->advance_rate = UINT16_MAX; - block->advance_step_loops = 1; - } - - #ifdef LA_DEBUG - if (block->advance_step_loops > 2) - // @wavexx: we should really check for the difference between step_loops and - // advance_step_loops instead. A difference of more than 1 will lead - // to uneven speed and *should* be adjusted here by furthermore - // reducing the speed. - SERIAL_ECHOLNPGM("LA: More than 2 steps per eISR loop executed."); - #endif - } -#endif + block->acceleration_rate = ((float)block->acceleration_st * (16777216.0 / (F_CPU / 8.0))); // Start with a safe speed. // Safe speed is the speed, from which the machine may halt to stop immediately. @@ -1297,6 +1286,53 @@ Having the real displacement of the head, we can calculate the total movement le // Precalculate the division, so when all the trapezoids in the planner queue get recalculated, the division is not repeated. block->speed_factor = block->nominal_rate / block->nominal_speed; + +#ifdef LIN_ADVANCE + if (block->use_advance_lead) { + // calculate the compression ratio for the segment (the required advance steps are computed + // during trapezoid planning) + float adv_comp = extruder_advance_K * e_D_ratio * cs.axis_steps_per_unit[E_AXIS]; // (step/(mm/s)) + block->adv_comp = adv_comp / block->speed_factor; // step/(step/min) + + float advance_speed; + if (e_D_ratio > 0) + advance_speed = (extruder_advance_K * e_D_ratio * block->acceleration * cs.axis_steps_per_unit[E_AXIS]); + else + advance_speed = cs.max_jerk[E_AXIS] * cs.axis_steps_per_unit[E_AXIS]; + + // to save more space we avoid another copy of calc_timer and go through slow division, but we + // still need to replicate the *exact* same step grouping policy (see below) + if (advance_speed > MAX_STEP_FREQUENCY) advance_speed = MAX_STEP_FREQUENCY; + float advance_rate = (F_CPU / 8.0) / advance_speed; + if (advance_speed > 20000) { + block->advance_rate = advance_rate * 4; + block->advance_step_loops = 4; + } + else if (advance_speed > 10000) { + block->advance_rate = advance_rate * 2; + block->advance_step_loops = 2; + } + else + { + // never overflow the internal accumulator with very low rates + if (advance_rate < UINT16_MAX) + block->advance_rate = advance_rate; + else + block->advance_rate = UINT16_MAX; + block->advance_step_loops = 1; + } + + #ifdef LA_DEBUG + if (block->advance_step_loops > 2) + // @wavexx: we should really check for the difference between step_loops and + // advance_step_loops instead. A difference of more than 1 will lead + // to uneven speed and *should* be adjusted here by furthermore + // reducing the speed. + SERIAL_ECHOLNPGM("LA: More than 2 steps per eISR loop executed."); + #endif + } +#endif + calculate_trapezoid_for_block(block, block->entry_speed, safe_speed); if (block->step_event_count.wide <= 32767) diff --git a/Firmware/planner.h b/Firmware/planner.h index 2adcf94e7..34899cac4 100644 --- a/Firmware/planner.h +++ b/Firmware/planner.h @@ -73,12 +73,12 @@ typedef struct { // steps_x.y,z, step_event_count, acceleration_rate, direction_bits and active_extruder are set by plan_buffer_line(). dda_isteps_t steps_x, steps_y, steps_z, steps_e; // Step count along each axis dda_usteps_t step_event_count; // The number of step events required to complete this block - long acceleration_rate; // The acceleration rate used for acceleration calculation + uint32_t acceleration_rate; // The acceleration rate used for acceleration calculation unsigned char direction_bits; // The direction bit set for this block (refers to *_DIRECTION_BIT in config.h) unsigned char active_extruder; // Selects the active extruder // accelerate_until and decelerate_after are set by calculate_trapezoid_for_block() and they need to be synchronized with the stepper interrupt controller. - long accelerate_until; // The index of the step event on which to stop acceleration - long decelerate_after; // The index of the step event on which to start decelerating + uint32_t accelerate_until; // The index of the step event on which to stop acceleration + uint32_t decelerate_after; // The index of the step event on which to start decelerating // Fields used by the motion planner to manage acceleration // float speed_x, speed_y, speed_z, speed_e; // Nominal mm/sec for each axis @@ -100,13 +100,12 @@ typedef struct { // Settings for the trapezoid generator (runs inside an interrupt handler). // Changing the following values in the planner needs to be synchronized with the interrupt handler by disabling the interrupts. - //FIXME nominal_rate, initial_rate and final_rate are limited to uint16_t by MultiU24X24toH16 in the stepper interrupt anyway! unsigned long nominal_rate; // The nominal step rate for this block in step_events/sec unsigned long initial_rate; // The jerk-adjusted step rate at start of block unsigned long final_rate; // The minimal rate at exit unsigned long acceleration_st; // acceleration steps/sec^2 - //FIXME does it have to be unsigned long? Probably uint8_t would be just fine. - unsigned long fan_speed; + //FIXME does it have to be int? Probably uint8_t would be just fine. Need to change in other places as well + int fan_speed; volatile char busy; @@ -154,7 +153,11 @@ vector_3 plan_get_position(); /// plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], ... /// saves almost 5KB. /// The performance penalty is negligible, since these planned lines are usually maintenance moves with the extruder. -void plan_buffer_line_curposXYZE(float feed_rate, uint8_t extruder); +void plan_buffer_line_curposXYZE(float feed_rate); + +void plan_buffer_line_destinationXYZE(float feed_rate); + +void plan_set_position_curposXYZE(); void plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, uint8_t extruder, const float* gcode_target = NULL); //void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate, const uint8_t &extruder); diff --git a/Firmware/speed_lookuptable.h b/Firmware/speed_lookuptable.h index 2748dd71a..21c6c767f 100644 --- a/Firmware/speed_lookuptable.h +++ b/Firmware/speed_lookuptable.h @@ -80,15 +80,21 @@ asm volatile ( \ #else //_NO_ASM -// NOTE: currently not implemented -void MultiU16X8toH16(unsigned short& intRes, unsigned char& charIn1, unsigned short& intIn2); -void MultiU24X24toH16(uint16_t& intRes, int32_t& longIn1, long& longIn2); +static inline void MultiU16X8toH16(uint16_t& intRes, uint8_t& charIn1, uint16_t& intIn2) +{ + intRes = ((uint32_t)charIn1 * (uint32_t)intIn2) >> 16; +} + +static inline void MultiU24X24toH16(uint16_t& intRes, uint32_t& longIn1, uint32_t& longIn2) +{ + intRes = ((uint64_t)longIn1 * (uint64_t)longIn2) >> 24; +} #endif //_NO_ASM FORCE_INLINE unsigned short calc_timer(uint16_t step_rate, uint8_t& step_loops) { - unsigned short timer; + uint16_t timer; if(step_rate > MAX_STEP_FREQUENCY) step_rate = MAX_STEP_FREQUENCY; if(step_rate > 20000) { // If steprate > 20kHz >> step 4 times @@ -108,7 +114,7 @@ FORCE_INLINE unsigned short calc_timer(uint16_t step_rate, uint8_t& step_loops) if(step_rate >= (8*256)){ // higher step rate unsigned short table_address = (unsigned short)&speed_lookuptable_fast[(unsigned char)(step_rate>>8)][0]; unsigned char tmp_step_rate = (step_rate & 0x00ff); - unsigned short gain = (unsigned short)pgm_read_word_near(table_address+2); + uint16_t gain = (uint16_t)pgm_read_word_near(table_address+2); MultiU16X8toH16(timer, tmp_step_rate, gain); timer = (unsigned short)pgm_read_word_near(table_address) - timer; } diff --git a/Firmware/stepper.cpp b/Firmware/stepper.cpp index de250ec97..7c44d791b 100644 --- a/Firmware/stepper.cpp +++ b/Firmware/stepper.cpp @@ -71,8 +71,7 @@ static dda_isteps_t counter_z, counter_e; volatile dda_usteps_t step_events_completed; // The number of step events executed in the current block -static int32_t acceleration_time, deceleration_time; -//static unsigned long accelerate_until, decelerate_after, acceleration_rate, initial_rate, final_rate, nominal_rate; +static uint32_t acceleration_time, deceleration_time; static uint16_t acc_step_rate; // needed for deccelaration start point static uint8_t step_loops; static uint16_t OCR1A_nominal; @@ -125,7 +124,7 @@ volatile signed char count_direction[NUM_AXIS] = { 1, 1, 1, 1}; static uint16_t main_Rate; static uint16_t eISR_Rate; - static uint16_t eISR_Err; + static uint32_t eISR_Err; static uint16_t current_adv_steps; static uint16_t target_adv_steps; @@ -234,7 +233,7 @@ void invert_z_endstop(bool endstop_invert) // The trapezoid is the shape the speed curve over time. It starts at block->initial_rate, accelerates // first block->accelerate_until step_events_completed, then keeps going at constant speed until // step_events_completed reaches block->decelerate_after after which it decelerates until the trapezoid generator is reset. -// The slope of acceleration is calculated with the leib ramp alghorithm. +// The slope of acceleration is calculated using v = u + at where t is the accumulated timer values of the steps so far. // "The Stepper Driver Interrupt" - This timer interrupt is the workhorse. // It pops blocks from the block_buffer and executes them by pulsing the stepper pins appropriately. @@ -348,10 +347,7 @@ FORCE_INLINE void stepper_next_block() #ifdef LIN_ADVANCE if (current_block->use_advance_lead) { - e_step_loops = current_block->advance_step_loops; target_adv_steps = current_block->max_adv_steps; - } else { - e_step_loops = 1; } e_steps = 0; nextAdvanceISR = ADV_NEVER; @@ -736,38 +732,30 @@ FORCE_INLINE uint16_t fastdiv(uint16_t q, uint8_t d) FORCE_INLINE void advance_spread(uint16_t timer) { - if(eISR_Err > timer) + eISR_Err += timer; + + uint8_t ticks = 0; + while(eISR_Err >= current_block->advance_rate) + { + ++ticks; + eISR_Err -= current_block->advance_rate; + } + if(!ticks) { - // advance-step skipped - eISR_Err -= timer; eISR_Rate = timer; nextAdvanceISR = timer; return; } - // at least one step - uint8_t ticks = 1; - uint32_t block = current_block->advance_rate; - uint16_t max_t = timer - eISR_Err; - while (block < max_t) - { - ++ticks; - block += current_block->advance_rate; - } - if (block > timer) - eISR_Err += block - timer; - else - eISR_Err -= timer - block; - - if (ticks <= 4) - eISR_Rate = fastdiv(timer, ticks); + if (ticks <= 3) + eISR_Rate = fastdiv(timer, ticks + 1); else { // >4 ticks are still possible on slow moves - eISR_Rate = timer / ticks; + eISR_Rate = timer / (ticks + 1); } - nextAdvanceISR = eISR_Rate / 2; + nextAdvanceISR = eISR_Rate; } #endif @@ -799,7 +787,7 @@ FORCE_INLINE void isr() { // 25.12us for acceleration / deceleration. { //WRITE_NC(LOGIC_ANALYZER_CH1, true); - if (step_events_completed.wide <= (unsigned long int)current_block->accelerate_until) { + if (step_events_completed.wide <= current_block->accelerate_until) { // v = t * a -> acc_step_rate = acceleration_time * current_block->acceleration_rate MultiU24X24toH16(acc_step_rate, acceleration_time, current_block->acceleration_rate); acc_step_rate += uint16_t(current_block->initial_rate); @@ -812,19 +800,29 @@ FORCE_INLINE void isr() { acceleration_time += timer; #ifdef LIN_ADVANCE if (current_block->use_advance_lead) { - if (step_events_completed.wide <= (unsigned long int)step_loops) + if (step_events_completed.wide <= (unsigned long int)step_loops) { la_state = ADV_INIT | ADV_ACC_VARY; + if (e_extruding && current_adv_steps > target_adv_steps) + target_adv_steps = current_adv_steps; + } } #endif } - else if (step_events_completed.wide > (unsigned long int)current_block->decelerate_after) { + else if (step_events_completed.wide > current_block->decelerate_after) { uint16_t step_rate; MultiU24X24toH16(step_rate, deceleration_time, current_block->acceleration_rate); - step_rate = acc_step_rate - step_rate; // Decelerate from aceleration end point. - if ((step_rate & 0x8000) || step_rate < uint16_t(current_block->final_rate)) { - // Result is negative or too small. - step_rate = uint16_t(current_block->final_rate); + + if (step_rate > acc_step_rate) { // Check step_rate stays positive + step_rate = uint16_t(current_block->final_rate); } + else { + step_rate = acc_step_rate - step_rate; // Decelerate from acceleration end point. + + // lower limit + if (step_rate < current_block->final_rate) + step_rate = uint16_t(current_block->final_rate); + } + // Step_rate to timer interval. uint16_t timer = calc_timer(step_rate, step_loops); _NEXT_ISR(timer); @@ -832,9 +830,11 @@ FORCE_INLINE void isr() { #ifdef LIN_ADVANCE if (current_block->use_advance_lead) { - if (step_events_completed.wide <= (unsigned long int)current_block->decelerate_after + step_loops) { + if (step_events_completed.wide <= current_block->decelerate_after + step_loops) { target_adv_steps = current_block->final_adv_steps; la_state = ADV_INIT | ADV_ACC_VARY; + if (e_extruding && current_adv_steps < target_adv_steps) + target_adv_steps = current_adv_steps; } } #endif @@ -848,12 +848,12 @@ FORCE_INLINE void isr() { #ifdef LIN_ADVANCE if(current_block->use_advance_lead) { - if (!nextAdvanceISR) { - // Due to E-jerk, there can be discontinuities in pressure state where an - // acceleration or deceleration can be skipped or joined with the previous block. - // If LA was not previously active, re-check the pressure level - la_state = ADV_INIT; - } + // Due to E-jerk, there can be discontinuities in pressure state where an + // acceleration or deceleration can be skipped or joined with the previous block. + // If LA was not previously active, re-check the pressure level + la_state = ADV_INIT; + if (e_extruding) + target_adv_steps = current_adv_steps; } #endif } @@ -865,14 +865,21 @@ FORCE_INLINE void isr() { #ifdef LIN_ADVANCE // avoid multiple instances or function calls to advance_spread if (la_state & ADV_INIT) { + LA_phase = -1; + if (current_adv_steps == target_adv_steps) { - // nothing to be done in this phase + // nothing to be done in this phase, cancel any pending eisr la_state = 0; + nextAdvanceISR = ADV_NEVER; } else { - eISR_Err = current_block->advance_rate / 4; + // reset error and iterations per loop for this phase + eISR_Err = current_block->advance_rate; + e_step_loops = current_block->advance_step_loops; + if ((la_state & ADV_ACC_VARY) && e_extruding && (current_adv_steps > target_adv_steps)) { // LA could reverse the direction of extrusion in this phase + eISR_Err += current_block->advance_rate; LA_phase = 0; } } @@ -882,11 +889,13 @@ FORCE_INLINE void isr() { advance_spread(main_Rate); if (LA_phase >= 0) { if (step_loops == e_step_loops) - LA_phase = (eISR_Rate > main_Rate); + LA_phase = (current_block->advance_rate < main_Rate); else { // avoid overflow through division. warning: we need to _guarantee_ step_loops // and e_step_loops are <= 4 due to fastdiv's limit - LA_phase = (fastdiv(eISR_Rate, step_loops) > fastdiv(main_Rate, e_step_loops)); + auto adv_rate_n = fastdiv(current_block->advance_rate, step_loops); + auto main_rate_n = fastdiv(main_Rate, e_step_loops); + LA_phase = (adv_rate_n < main_rate_n); } } } @@ -928,26 +937,34 @@ FORCE_INLINE void isr() { FORCE_INLINE void advance_isr() { if (current_adv_steps > target_adv_steps) { // decompression + if (e_step_loops != 1) { + uint16_t d_steps = current_adv_steps - target_adv_steps; + if (d_steps < e_step_loops) + e_step_loops = d_steps; + } e_steps -= e_step_loops; if (e_steps) WRITE_NC(E0_DIR_PIN, e_steps < 0? INVERT_E0_DIR: !INVERT_E0_DIR); - if(current_adv_steps > e_step_loops) - current_adv_steps -= e_step_loops; - else - current_adv_steps = 0; - nextAdvanceISR = eISR_Rate; + current_adv_steps -= e_step_loops; } else if (current_adv_steps < target_adv_steps) { // compression + if (e_step_loops != 1) { + uint16_t d_steps = target_adv_steps - current_adv_steps; + if (d_steps < e_step_loops) + e_step_loops = d_steps; + } e_steps += e_step_loops; if (e_steps) WRITE_NC(E0_DIR_PIN, e_steps < 0? INVERT_E0_DIR: !INVERT_E0_DIR); current_adv_steps += e_step_loops; - nextAdvanceISR = eISR_Rate; } - else { + + if (current_adv_steps == target_adv_steps) { // advance steps completed nextAdvanceISR = ADV_NEVER; - LA_phase = -1; - e_step_loops = 1; + } + else { + // schedule another tick + nextAdvanceISR = eISR_Rate; } } @@ -1017,7 +1034,7 @@ FORCE_INLINE void advance_isr_scheduler() { // Schedule the next closest tick, ignoring advance if scheduled too // soon in order to avoid skewing the regular stepper acceleration - if (nextAdvanceISR != ADV_NEVER && (nextAdvanceISR + TCNT1 + 40) < nextMainISR) + if (nextAdvanceISR != ADV_NEVER && (nextAdvanceISR + 40) < nextMainISR) OCR1A = nextAdvanceISR; else OCR1A = nextMainISR; diff --git a/Firmware/system_timer.h b/Firmware/system_timer.h index 626e82348..9906460ae 100644 --- a/Firmware/system_timer.h +++ b/Firmware/system_timer.h @@ -8,11 +8,12 @@ #ifdef SYSTEM_TIMER_2 #include "timer02.h" +#include "tone04.h" #define _millis millis2 #define _micros micros2 #define _delay delay2 -#define _tone tone -#define _noTone noTone +#define _tone tone4 +#define _noTone noTone4 #define timer02_set_pwm0(pwm0) diff --git a/Firmware/temperature.cpp b/Firmware/temperature.cpp index f6f8f3206..cb4fc8aee 100755 --- a/Firmware/temperature.cpp +++ b/Firmware/temperature.cpp @@ -143,14 +143,22 @@ static volatile bool temp_meas_ready = false; #ifdef FAN_SOFT_PWM static unsigned char soft_pwm_fan; #endif -#if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1) - unsigned long extruder_autofan_last_check = _millis(); - uint8_t fanSpeedBckp = 255; - bool fan_measuring = false; -#endif +uint8_t fanSpeedBckp = 255; + +#if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) + unsigned long extruder_autofan_last_check = _millis(); + + bool fan_measuring = false; + uint8_t fanState = 0; +#ifdef EXTRUDER_ALTFAN_DETECT + struct + { + uint8_t isAltfan : 1; + uint8_t altfanOverride : 1; + } altfanStatus; +#endif //EXTRUDER_ALTFAN_DETECT +#endif #if EXTRUDERS > 3 @@ -176,6 +184,12 @@ static int bed_minttemp_raw = HEATER_BED_RAW_LO_TEMP; #ifdef BED_MAXTEMP static int bed_maxttemp_raw = HEATER_BED_RAW_HI_TEMP; #endif +#ifdef AMBIENT_MINTEMP +static int ambient_minttemp_raw = AMBIENT_RAW_LO_TEMP; +#endif +#ifdef AMBIENT_MAXTEMP +static int ambient_maxttemp_raw = AMBIENT_RAW_HI_TEMP; +#endif static void *heater_ttbl_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( (void *)HEATER_0_TEMPTABLE, (void *)HEATER_1_TEMPTABLE, (void *)HEATER_2_TEMPTABLE ); static uint8_t heater_ttbllen_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( HEATER_0_TEMPTABLE_LEN, HEATER_1_TEMPTABLE_LEN, HEATER_2_TEMPTABLE_LEN ); @@ -210,6 +224,56 @@ static void temp_runaway_check(int _heater_id, float _target_temperature, float static void temp_runaway_stop(bool isPreheat, bool isBed); #endif +#ifdef EXTRUDER_ALTFAN_DETECT +ISR(INT6_vect) { + fan_edge_counter[0]++; +} + +bool extruder_altfan_detect() +{ + setExtruderAutoFanState(3); + + SET_INPUT(TACH_0); + + uint8_t overrideVal = eeprom_read_byte((uint8_t *)EEPROM_ALTFAN_OVERRIDE); + if (overrideVal == EEPROM_EMPTY_VALUE) + { + overrideVal = (calibration_status() == CALIBRATION_STATUS_CALIBRATED) ? 1 : 0; + eeprom_update_byte((uint8_t *)EEPROM_ALTFAN_OVERRIDE, overrideVal); + } + altfanStatus.altfanOverride = overrideVal; + + CRITICAL_SECTION_START; + EICRB &= ~(1 << ISC61); + EICRB |= (1 << ISC60); + EIMSK |= (1 << INT6); + fan_edge_counter[0] = 0; + CRITICAL_SECTION_END; + extruder_autofan_last_check = _millis(); + + _delay(1000); + + EIMSK &= ~(1 << INT6); + + countFanSpeed(); + altfanStatus.isAltfan = fan_speed[0] > 100; + setExtruderAutoFanState(1); + return altfanStatus.isAltfan; +} + +void altfanOverride_toggle() +{ + altfanStatus.altfanOverride = !altfanStatus.altfanOverride; + eeprom_update_byte((uint8_t *)EEPROM_ALTFAN_OVERRIDE, altfanStatus.altfanOverride); +} + +bool altfanOverride_get() +{ + return altfanStatus.altfanOverride; +} + +#endif //EXTRUDER_ALTFAN_DETECT + // return "false", if all extruder-heaters are 'off' (ie. "true", if any heater is 'on') bool checkAllHotends(void) { @@ -239,9 +303,7 @@ bool checkAllHotends(void) const uint8_t safety_check_cycles_count = (extruder < 0) ? 45 : 10; //10 cycles / 20s delay for extruder and 45 cycles / 90s for heatbed float temp_ambient; -#if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1) +#if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) unsigned long extruder_autofan_last_check = _millis(); #endif @@ -289,9 +351,7 @@ bool checkAllHotends(void) max=max(max,input); min=min(min,input); - #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1) + #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) if(_millis() - extruder_autofan_last_check > 2500) { checkExtruderAutoFans(); extruder_autofan_last_check = _millis(); @@ -447,29 +507,31 @@ int getHeaterPower(int heater) { return soft_pwm[heater]; } -#if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1) +#if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) #if defined(FAN_PIN) && FAN_PIN > -1 #if EXTRUDER_0_AUTO_FAN_PIN == FAN_PIN #error "You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to FAN_PIN" #endif - #if EXTRUDER_1_AUTO_FAN_PIN == FAN_PIN - #error "You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to FAN_PIN" - #endif - #if EXTRUDER_2_AUTO_FAN_PIN == FAN_PIN - #error "You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to FAN_PIN" - #endif - #endif + #endif -void setExtruderAutoFanState(int pin, bool state) +void setExtruderAutoFanState(uint8_t state) { - unsigned char newFanSpeed = (state != 0) ? EXTRUDER_AUTO_FAN_SPEED : 0; - // this idiom allows both digital and PWM fan outputs (see M42 handling). - pinMode(pin, OUTPUT); - digitalWrite(pin, newFanSpeed); - //analogWrite(pin, newFanSpeed); + //If bit 1 is set (0x02), then the extruder fan speed won't be adjusted according to temperature. Useful for forcing + //the fan to either On or Off during certain tests/errors. + + fanState = state; + uint8_t newFanSpeed = 0; + if (fanState & 0x01) + { +#ifdef EXTRUDER_ALTFAN_DETECT + if (altfanStatus.isAltfan && !altfanStatus.altfanOverride) newFanSpeed = EXTRUDER_ALTFAN_SPEED_SILENT; + else newFanSpeed = EXTRUDER_AUTO_FAN_SPEED; +#else //EXTRUDER_ALTFAN_DETECT + newFanSpeed = EXTRUDER_AUTO_FAN_SPEED; +#endif //EXTRUDER_ALTFAN_DETECT + } + timer4_set_fan0(newFanSpeed); } #if (defined(FANCHECK) && (((defined(TACH_0) && (TACH_0 >-1)) || (defined(TACH_1) && (TACH_1 > -1))))) @@ -503,7 +565,7 @@ void checkFanSpeed() fans_check_enabled = (eeprom_read_byte((uint8_t*)EEPROM_FAN_CHECK_ENABLED) > 0); static unsigned char fan_speed_errors[2] = { 0,0 }; #if (defined(FANCHECK) && defined(TACH_0) && (TACH_0 >-1)) - if ((fan_speed[0] == 0) && (current_temperature[0] > EXTRUDER_AUTO_FAN_TEMPERATURE)){ fan_speed_errors[0]++;} + if ((fan_speed[0] < 20) && (current_temperature[0] > EXTRUDER_AUTO_FAN_TEMPERATURE)){ fan_speed_errors[0]++;} else{ fan_speed_errors[0] = 0; host_keepalive(); @@ -577,47 +639,14 @@ void fanSpeedError(unsigned char _fan) { void checkExtruderAutoFans() { - uint8_t fanState = 0; - - // which fan pins need to be turned on? - #if defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1 - if (current_temperature[0] > EXTRUDER_AUTO_FAN_TEMPERATURE) - fanState |= 1; - #endif - #if defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1 - if (current_temperature[1] > EXTRUDER_AUTO_FAN_TEMPERATURE) - { - if (EXTRUDER_1_AUTO_FAN_PIN == EXTRUDER_0_AUTO_FAN_PIN) - fanState |= 1; - else - fanState |= 2; - } - #endif - #if defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1 - if (current_temperature[2] > EXTRUDER_AUTO_FAN_TEMPERATURE) - { - if (EXTRUDER_2_AUTO_FAN_PIN == EXTRUDER_0_AUTO_FAN_PIN) - fanState |= 1; - else if (EXTRUDER_2_AUTO_FAN_PIN == EXTRUDER_1_AUTO_FAN_PIN) - fanState |= 2; - else - fanState |= 4; - } - #endif - - // update extruder auto fan states - #if defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1 - setExtruderAutoFanState(EXTRUDER_0_AUTO_FAN_PIN, (fanState & 1) != 0); - #endif - #if defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1 - if (EXTRUDER_1_AUTO_FAN_PIN != EXTRUDER_0_AUTO_FAN_PIN) - setExtruderAutoFanState(EXTRUDER_1_AUTO_FAN_PIN, (fanState & 2) != 0); - #endif - #if defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1 - if (EXTRUDER_2_AUTO_FAN_PIN != EXTRUDER_0_AUTO_FAN_PIN - && EXTRUDER_2_AUTO_FAN_PIN != EXTRUDER_1_AUTO_FAN_PIN) - setExtruderAutoFanState(EXTRUDER_2_AUTO_FAN_PIN, (fanState & 4) != 0); - #endif +#if defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1 + if (!(fanState & 0x02)) + { + fanState &= ~1; + fanState |= current_temperature[0] > EXTRUDER_AUTO_FAN_TEMPERATURE; + } + setExtruderAutoFanState(fanState); +#endif } #endif // any extruder auto fan pins set @@ -641,6 +670,7 @@ void manage_heater() return; // more precisely - this condition partially stabilizes time interval for regulation values evaluation (@ ~ 230ms) + // ADC values need to be converted before checking: converted values are later used in MINTEMP updateTemperaturesFromRawValues(); check_max_temp(); @@ -737,9 +767,7 @@ void manage_heater() #define FAN_CHECK_DURATION 100 //100ms #ifndef DEBUG_DISABLE_FANCHECK - #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \ - (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1) + #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) #ifdef FAN_SOFT_PWM #ifdef FANCHECK @@ -1098,7 +1126,9 @@ void tp_init() timer0_init(); OCR2B = 128; - TIMSK2 |= (1< BED_MAXTEMP) { @@ -1186,6 +1214,25 @@ void tp_init() #endif } #endif //BED_MAXTEMP + +#ifdef AMBIENT_MINTEMP + while(analog2tempAmbient(ambient_minttemp_raw) < AMBIENT_MINTEMP) { +#if HEATER_AMBIENT_RAW_LO_TEMP < HEATER_AMBIENT_RAW_HI_TEMP + ambient_minttemp_raw += OVERSAMPLENR; +#else + ambient_minttemp_raw -= OVERSAMPLENR; +#endif + } +#endif //AMBIENT_MINTEMP +#ifdef AMBIENT_MAXTEMP + while(analog2tempAmbient(ambient_maxttemp_raw) > AMBIENT_MAXTEMP) { +#if HEATER_AMBIENT_RAW_LO_TEMP < HEATER_AMBIENT_RAW_HI_TEMP + ambient_maxttemp_raw -= OVERSAMPLENR; +#else + ambient_maxttemp_raw += OVERSAMPLENR; +#endif + } +#endif //AMBIENT_MAXTEMP } #if (defined (TEMP_RUNAWAY_BED_HYSTERESIS) && TEMP_RUNAWAY_BED_TIMEOUT > 0) || (defined (TEMP_RUNAWAY_EXTRUDER_HYSTERESIS) && TEMP_RUNAWAY_EXTRUDER_TIMEOUT > 0) @@ -1357,9 +1404,11 @@ void temp_runaway_stop(bool isPreheat, bool isBed) isBed ? LCD_ALERTMESSAGEPGM("BED PREHEAT ERROR") : LCD_ALERTMESSAGEPGM("PREHEAT ERROR"); SERIAL_ERROR_START; isBed ? SERIAL_ERRORLNPGM(" THERMAL RUNAWAY ( PREHEAT HEATBED)") : SERIAL_ERRORLNPGM(" THERMAL RUNAWAY ( PREHEAT HOTEND)"); - SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN); +#ifdef EXTRUDER_ALTFAN_DETECT + altfanStatus.altfanOverride = 1; //full speed +#endif //EXTRUDER_ALTFAN_DETECT + setExtruderAutoFanState(3); SET_OUTPUT(FAN_PIN); - WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1); #ifdef FAN_SOFT_PWM fanSpeedSoftPwm = 255; #else //FAN_SOFT_PWM @@ -1427,26 +1476,55 @@ enum { LCDALERT_NONE = 0, LCDALERT_HEATERMINTEMP, LCDALERT_BEDMINTEMP, LCDALERT_ //! to prevent flicker and improve speed uint8_t last_alert_sent_to_lcd = LCDALERT_NONE; + +//! update the current temperature error message +//! @param type short error abbreviation (PROGMEM) +//! @param func optional lcd update function (lcd_setalertstatus when first setting the error) +void temp_update_messagepgm(const char* PROGMEM type, void (*func)(const char*) = lcd_updatestatus) +{ + char msg[LCD_WIDTH]; + strcpy_P(msg, PSTR("Err: ")); + strcat_P(msg, type); + (*func)(msg); +} + +//! signal a temperature error on both the lcd and serial +//! @param type short error abbreviation (PROGMEM) +//! @param e optional extruder index for hotend errors +void temp_error_messagepgm(const char* PROGMEM type, uint8_t e = EXTRUDERS) +{ + temp_update_messagepgm(type, lcd_setalertstatus); + + SERIAL_ERROR_START; + + if(e != EXTRUDERS) { + SERIAL_ERROR((int)e); + SERIAL_ERRORPGM(": "); + } + + SERIAL_ERRORPGM("Heaters switched off. "); + SERIAL_ERRORRPGM(type); + SERIAL_ERRORLNPGM(" triggered!"); +} + + void max_temp_error(uint8_t e) { disable_heater(); if(IsStopped() == false) { - SERIAL_ERROR_START; - SERIAL_ERRORLN((int)e); - SERIAL_ERRORLNPGM(": Extruder switched off. MAXTEMP triggered !"); - LCD_ALERTMESSAGEPGM("Err: MAXTEMP"); + temp_error_messagepgm(PSTR("MAXTEMP"), e); } #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE Stop(); - - - #endif - SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN); + SET_OUTPUT(FAN_PIN); SET_OUTPUT(BEEPER); WRITE(FAN_PIN, 1); - WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1); WRITE(BEEPER, 1); +#ifdef EXTRUDER_ALTFAN_DETECT + altfanStatus.altfanOverride = 1; //full speed +#endif //EXTRUDER_ALTFAN_DETECT + setExtruderAutoFanState(3); // fanSpeed will consumed by the check_axes_activity() routine. fanSpeed=255; if (farm_mode) { prusa_statistics(93); } @@ -1456,18 +1534,15 @@ void min_temp_error(uint8_t e) { #ifdef DEBUG_DISABLE_MINTEMP return; #endif -//if (current_temperature_ambient < MINTEMP_MINAMBIENT) return; disable_heater(); - static const char err[] PROGMEM = "Err: MINTEMP"; +//if (current_temperature_ambient < MINTEMP_MINAMBIENT) return; + static const char err[] PROGMEM = "MINTEMP"; if(IsStopped() == false) { - SERIAL_ERROR_START; - SERIAL_ERRORLN((int)e); - SERIAL_ERRORLNPGM(": Extruder switched off. MINTEMP triggered !"); - lcd_setalertstatuspgm(err); + temp_error_messagepgm(err, e); last_alert_sent_to_lcd = LCDALERT_HEATERMINTEMP; } else if( last_alert_sent_to_lcd != LCDALERT_HEATERMINTEMP ){ // only update, if the lcd message is to be changed (i.e. not the same as last time) // we are already stopped due to some error, only update the status message without flickering - lcd_updatestatuspgm(err); + temp_update_messagepgm(err); last_alert_sent_to_lcd = LCDALERT_HEATERMINTEMP; } #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE @@ -1482,37 +1557,27 @@ void min_temp_error(uint8_t e) { } void bed_max_temp_error(void) { -#if HEATER_BED_PIN > -1 - //WRITE(HEATER_BED_PIN, 0); -#endif + disable_heater(); if(IsStopped() == false) { - SERIAL_ERROR_START; - SERIAL_ERRORLNPGM("Temperature heated bed switched off. MAXTEMP triggered !"); - LCD_ALERTMESSAGEPGM("Err: MAXTEMP BED"); + temp_error_messagepgm(PSTR("MAXTEMP BED")); } #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE Stop(); #endif - } void bed_min_temp_error(void) { #ifdef DEBUG_DISABLE_MINTEMP return; #endif -//if (current_temperature_ambient < MINTEMP_MINAMBIENT) return; -#if HEATER_BED_PIN > -1 - //WRITE(HEATER_BED_PIN, 0); -#endif - static const char err[] PROGMEM = "Err: MINTEMP BED"; + disable_heater(); + static const char err[] PROGMEM = "MINTEMP BED"; if(IsStopped() == false) { - SERIAL_ERROR_START; - SERIAL_ERRORLNPGM("Temperature heated bed switched off. MINTEMP triggered !"); - lcd_setalertstatuspgm(err); + temp_error_messagepgm(err); last_alert_sent_to_lcd = LCDALERT_BEDMINTEMP; } else if( last_alert_sent_to_lcd != LCDALERT_BEDMINTEMP ){ // only update, if the lcd message is to be changed (i.e. not the same as last time) // we are already stopped due to some error, only update the status message without flickering - lcd_updatestatuspgm(err); + temp_update_messagepgm(err); last_alert_sent_to_lcd = LCDALERT_BEDMINTEMP; } #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE @@ -1520,6 +1585,33 @@ void bed_min_temp_error(void) { #endif } + +#ifdef AMBIENT_THERMISTOR +void ambient_max_temp_error(void) { + disable_heater(); + if(IsStopped() == false) { + temp_error_messagepgm(PSTR("MAXTEMP AMB")); + } +#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE + Stop(); +#endif +} + +void ambient_min_temp_error(void) { +#ifdef DEBUG_DISABLE_MINTEMP + return; +#endif + disable_heater(); + if(IsStopped() == false) { + temp_error_messagepgm(PSTR("MINTEMP AMB")); + } +#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE + Stop(); +#endif +} +#endif + + #ifdef HEATER_0_USES_MAX6675 #define MAX6675_HEAT_INTERVAL 250 long max6675_previous_millis = MAX6675_HEAT_INTERVAL; @@ -1604,18 +1696,8 @@ void adc_ready(void) //callback from adc when sampling finished } // extern "C" -// Timer2 (originaly timer0) is shared with millies -#ifdef SYSTEM_TIMER_2 -ISR(TIMER2_COMPB_vect) -#else //SYSTEM_TIMER_2 -ISR(TIMER0_COMPB_vect) -#endif //SYSTEM_TIMER_2 +FORCE_INLINE static void temperature_isr() { - static bool _lock = false; - if (_lock) return; - _lock = true; - asm("sei"); - if (!temp_meas_ready) adc_cycle(); lcd_buttons_update(); @@ -1981,8 +2063,24 @@ ISR(TIMER0_COMPB_vect) #if (defined(FANCHECK) && defined(TACH_0) && (TACH_0 > -1)) check_fans(); #endif //(defined(TACH_0)) +} - _lock = false; +// Timer2 (originaly timer0) is shared with millies +#ifdef SYSTEM_TIMER_2 +ISR(TIMER2_COMPB_vect) +#else //SYSTEM_TIMER_2 +ISR(TIMER0_COMPB_vect) +#endif //SYSTEM_TIMER_2 +{ + static bool _lock = false; + if (!_lock) + { + _lock = true; + sei(); + temperature_isr(); + cli(); + _lock = false; + } } void check_max_temp() @@ -2002,11 +2100,19 @@ void check_max_temp() #else if (current_temperature_bed_raw >= bed_maxttemp_raw) { #endif - target_temperature_bed = 0; bed_max_temp_error(); } #endif - +//ambient +#if defined(AMBIENT_MAXTEMP) && (TEMP_SENSOR_AMBIENT != 0) +#if AMBIENT_RAW_LO_TEMP > AMBIENT_RAW_HI_TEMP + if (current_temperature_raw_ambient <= ambient_maxttemp_raw) { +#else + if (current_temperature_raw_ambient >= ambient_maxttemp_raw) { +#endif + ambient_max_temp_error(); + } +#endif } //! number of repeating the same state with consecutive step() calls //! used to slow down text switching @@ -2101,12 +2207,32 @@ void check_min_temp_bed() } } +#ifdef AMBIENT_MINTEMP +void check_min_temp_ambient() +{ +#if AMBIENT_RAW_LO_TEMP > AMBIENT_RAW_HI_TEMP + if (current_temperature_raw_ambient >= ambient_minttemp_raw) { +#else + if (current_temperature_raw_ambient <= ambient_minttemp_raw) { +#endif + ambient_min_temp_error(); + } +} +#endif + void check_min_temp() { static bool bCheckingOnHeater=false; // state variable, which allows to short no-checking delay (is set, when temperature is (first time) over heaterMintemp) static bool bCheckingOnBed=false; // state variable, which allows to short no-checking delay (is set, when temperature is (first time) over bedMintemp) #ifdef AMBIENT_THERMISTOR -if(current_temperature_raw_ambient>(OVERSAMPLENR*MINTEMP_MINAMBIENT_RAW)) // thermistor is NTC type, so operator is ">" ;-) +#ifdef AMBIENT_MINTEMP +check_min_temp_ambient(); +#endif +#if AMBIENT_RAW_LO_TEMP > AMBIENT_RAW_HI_TEMP +if(current_temperature_raw_ambient>(OVERSAMPLENR*MINTEMP_MINAMBIENT_RAW)) // thermistor is NTC type +#else +if(current_temperature_raw_ambient=<(OVERSAMPLENR*MINTEMP_MINAMBIENT_RAW)) +#endif { // ambient temperature is low #endif //AMBIENT_THERMISTOR // *** 'common' part of code for MK2.5 & MK3 @@ -2194,4 +2320,20 @@ float unscalePID_d(float d) #endif //PIDTEMP +#ifdef PINDA_THERMISTOR +//! @brief PINDA thermistor detected +//! +//! @retval true firmware should do temperature compensation and allow calibration +//! @retval false PINDA thermistor is not detected, disable temperature compensation and calibration +//! +bool has_temperature_compensation() +{ +#ifdef DETECT_SUPERPINDA + return (current_temperature_pinda >= PINDA_MINTEMP) ? true : false; +#else + return true; +#endif +} +#endif //PINDA_THERMISTOR + diff --git a/Firmware/temperature.h b/Firmware/temperature.h index 7b7637b11..da88a53c0 100755 --- a/Firmware/temperature.h +++ b/Firmware/temperature.h @@ -63,6 +63,7 @@ extern float current_temperature_bed; #ifdef PINDA_THERMISTOR extern uint16_t current_temperature_raw_pinda; extern float current_temperature_pinda; +bool has_temperature_compensation(); #endif #ifdef AMBIENT_THERMISTOR @@ -245,7 +246,7 @@ FORCE_INLINE void autotempShutdown(){ void PID_autotune(float temp, int extruder, int ncycles); -void setExtruderAutoFanState(int pin, bool state); +void setExtruderAutoFanState(uint8_t state); void checkExtruderAutoFans(); @@ -270,10 +271,14 @@ void check_fans(); void check_min_temp(); void check_max_temp(); - -#endif +#ifdef EXTRUDER_ALTFAN_DETECT + extern bool extruder_altfan_detect(); + extern void altfanOverride_toggle(); + extern bool altfanOverride_get(); +#endif //EXTRUDER_ALTFAN_DETECT extern unsigned long extruder_autofan_last_check; extern uint8_t fanSpeedBckp; extern bool fan_measuring; +#endif diff --git a/Firmware/thermistortables.h b/Firmware/thermistortables.h index dc934ccfd..721c6b359 100644 --- a/Firmware/thermistortables.h +++ b/Firmware/thermistortables.h @@ -1213,6 +1213,8 @@ const short temptable_1047[][2] PROGMEM = { #endif #if (THERMISTORAMBIENT == 2000) //100k thermistor NTCG104LH104JT1 +# define AMBIENT_RAW_HI_TEMP 0 +# define AMBIENT_RAW_LO_TEMP 16383 const short temptable_2000[][2] PROGMEM = { // Source: https://product.tdk.com/info/en/catalog/datasheets/503021/tpd_ntc-thermistor_ntcg_en.pdf // Calculated using 4.7kohm pullup, voltage divider math, and manufacturer provided temp/resistance diff --git a/Firmware/tone04.c b/Firmware/tone04.c new file mode 100644 index 000000000..41f904a91 --- /dev/null +++ b/Firmware/tone04.c @@ -0,0 +1,126 @@ +//tone04.c +// use atmega timer4 as main tone timer instead of timer2 +// timer2 is used for System timer. + +#include "system_timer.h" +#include "Configuration_prusa.h" + +#ifdef SYSTEM_TIMER_2 + +#include +#include +#include "pins.h" + +#ifndef CRITICAL_SECTION_START + #define CRITICAL_SECTION_START unsigned char _sreg = SREG; cli(); + #define CRITICAL_SECTION_END SREG = _sreg; +#endif //CRITICAL_SECTION_START + + +#include "fastio.h" + +void timer4_init(void) +{ + CRITICAL_SECTION_START; + + SET_OUTPUT(BEEPER); + WRITE(BEEPER, LOW); + + SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN); + + // Set timer mode 9 (PWM,Phase and Frequency Correct) + // Prescaler is CLK/1024 + // Output compare is disabled on all timer pins + // Input capture is disabled + // All interrupts are disabled + TCCR4A = (1 << WGM40); + TCCR4B = (1 << WGM43) | (1 << CS42) | (1 << CS40); + OCR4A = 255; + OCR4B = 255; + OCR4C = 255; + TIMSK4 = 0; + + CRITICAL_SECTION_END; +} + +#ifdef EXTRUDER_0_AUTO_FAN_PIN +void timer4_set_fan0(uint8_t duty) +{ + if (duty == 0 || duty == 255) + { + // We use digital logic if the duty cycle is 0% or 100% + TCCR4A &= ~(1 << COM4C1); + OCR4C = 0; + WRITE(EXTRUDER_0_AUTO_FAN_PIN, duty); + } + else + { + // Use the timer for fan speed. Enable the timer compare output and set the duty cycle. + // This function also handles the impossible scenario of a fan speed change during a Tone. + // Better be safe than sorry. + CRITICAL_SECTION_START; + // Enable the PWM output on the fan pin. + TCCR4A |= (1 << COM4C1); + OCR4C = (((uint32_t)duty) * ((uint32_t)((TIMSK4 & (1 << OCIE4A))?OCR4A:255))) / ((uint32_t)255); + CRITICAL_SECTION_END; + } +} +#endif //EXTRUDER_0_AUTO_FAN_PIN + +// Because of the timer mode change, we need two interrupts. We could also try to assume that the frequency is x2 +// and use a TOGGLE(), but this seems to work well enough so I left it as it is now. +ISR(TIMER4_COMPA_vect) +{ + WRITE(BEEPER, 1); +} + +ISR(TIMER4_OVF_vect) +{ + WRITE(BEEPER, 0); +} + +void tone4(__attribute__((unused)) uint8_t _pin, uint16_t frequency) +{ + //this ocr and prescalarbits calculation is taken from the Arduino core and simplified for one type of timer only + uint8_t prescalarbits = 0b001; + uint32_t ocr = F_CPU / frequency / 2 - 1; + + if (ocr > 0xffff) + { + ocr = F_CPU / frequency / 2 / 64 - 1; + prescalarbits = 0b011; + } + + CRITICAL_SECTION_START; + // Set calcualted prescaler + TCCR4B = (TCCR4B & 0b11111000) | prescalarbits; +#ifdef EXTRUDER_0_AUTO_FAN_PIN + // Scale the fan PWM duty cycle so that it remains constant, but at the tone frequency + OCR4C = (((uint32_t)OCR4C) * ocr) / (uint32_t)((TIMSK4 & (1 << OCIE4A))?OCR4A:255); +#endif //EXTRUDER_0_AUTO_FAN_PIN + // Set calcualted ocr + OCR4A = ocr; + // Enable Output compare A interrupt and timer overflow interrupt + TIMSK4 |= (1 << OCIE4A) | (1 << TOIE4); + CRITICAL_SECTION_END; +} + +void noTone4(__attribute__((unused)) uint8_t _pin) +{ + CRITICAL_SECTION_START; + // Revert prescaler to CLK/1024 + TCCR4B = (TCCR4B & 0b11111000) | (1 << CS42) | (1 << CS40); +#ifdef EXTRUDER_0_AUTO_FAN_PIN + // Scale the fan OCR back to the original value. + OCR4C = (((uint32_t)OCR4C) * (uint32_t)255) / (uint32_t)((TIMSK4 & (1 << OCIE4A))?OCR4A:255); +#endif //EXTRUDER_0_AUTO_FAN_PIN + OCR4A = 255; + // Disable Output compare A interrupt and timer overflow interrupt + TIMSK4 &= ~((1 << OCIE4A) | (1 << TOIE4)); + CRITICAL_SECTION_END; + // Turn beeper off if it was on when noTone was called + WRITE(BEEPER, 0); +} + + +#endif //SYSTEM_TIMER_2 diff --git a/Firmware/tone04.h b/Firmware/tone04.h new file mode 100644 index 000000000..f11eeb6c6 --- /dev/null +++ b/Firmware/tone04.h @@ -0,0 +1,25 @@ +//tone04.h +// use atmega timer4 as main tone timer instead of timer2 +// timer2 is used for System timer. +#ifndef TIMER04_H +#define TIMER04_H + +#include + +#if defined(__cplusplus) +extern "C" { +#endif //defined(__cplusplus) + +extern void timer4_init(void); + +extern void timer4_set_fan0(uint8_t duty); + +extern void tone4(uint8_t _pin, uint16_t frequency); + +extern void noTone4(uint8_t _pin); + +#if defined(__cplusplus) +} +#endif //defined(__cplusplus) + +#endif //TIMER02_H diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp index 65d42e379..f476a6987 100755 --- a/Firmware/ultralcd.cpp +++ b/Firmware/ultralcd.cpp @@ -2169,18 +2169,7 @@ static void lcd_support_menu() #ifdef IR_SENSOR_ANALOG MENU_ITEM_BACK_P(STR_SEPARATOR); MENU_ITEM_BACK_P(PSTR("Fil. sensor v.:")); - switch(oFsensorPCB) - { - case ClFsensorPCB::_Old: - MENU_ITEM_BACK_P(_T(MSG_03_OR_OLDER)); - break; - case ClFsensorPCB::_Rev04: - MENU_ITEM_BACK_P(_T(MSG_04_OR_NEWER)); - break; - case ClFsensorPCB::_Undef: - default: - MENU_ITEM_BACK_P(PSTR(" unknown state")); - } + MENU_ITEM_BACK_P(FsensorIRVersionText()); #endif // IR_SENSOR_ANALOG MENU_ITEM_BACK_P(STR_SEPARATOR); @@ -2228,6 +2217,7 @@ static void lcd_support_menu() MENU_ITEM_SUBMENU_P(_i("Voltages"), lcd_menu_voltages);////MSG_MENU_VOLTAGES c=18 r=1 #endif //defined VOLT_BED_PIN || defined VOLT_PWR_PIN + #ifdef DEBUG_BUILD MENU_ITEM_SUBMENU_P(PSTR("Debug"), lcd_menu_debug);////c=18 r=1 #endif /* DEBUG_BUILD */ @@ -2514,6 +2504,12 @@ static void mFilamentItem_ASA() mFilamentItem(ASA_PREHEAT_HOTEND_TEMP, ASA_PREHEAT_HPB_TEMP); } +static void mFilamentItem_PC() +{ + bFilamentPreheatState = false; + mFilamentItem(PC_PREHEAT_HOTEND_TEMP, PC_PREHEAT_HPB_TEMP); +} + static void mFilamentItem_ABS() { bFilamentPreheatState = false; @@ -2573,6 +2569,7 @@ void lcd_generic_preheat_menu() MENU_ITEM_SUBMENU_P(PSTR("PLA - " STRINGIFY(PLA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PLA_PREHEAT_HPB_TEMP)),mFilamentItem_PLA); MENU_ITEM_SUBMENU_P(PSTR("PET - " STRINGIFY(PET_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PET_PREHEAT_HPB_TEMP)),mFilamentItem_PET); MENU_ITEM_SUBMENU_P(PSTR("ASA - " STRINGIFY(ASA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ASA_PREHEAT_HPB_TEMP)),mFilamentItem_ASA); + MENU_ITEM_SUBMENU_P(PSTR("PC - " STRINGIFY(PC_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PC_PREHEAT_HPB_TEMP)),mFilamentItem_PC); MENU_ITEM_SUBMENU_P(PSTR("ABS - " STRINGIFY(ABS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ABS_PREHEAT_HPB_TEMP)),mFilamentItem_ABS); MENU_ITEM_SUBMENU_P(PSTR("HIPS - " STRINGIFY(HIPS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(HIPS_PREHEAT_HPB_TEMP)),mFilamentItem_HIPS); MENU_ITEM_SUBMENU_P(PSTR("PP - " STRINGIFY(PP_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PP_PREHEAT_HPB_TEMP)),mFilamentItem_PP); @@ -2926,7 +2923,7 @@ static void _lcd_move(const char *name, int axis, int min, int max) if (max_software_endstops && current_position[axis] > max) current_position[axis] = max; lcd_encoder = 0; world2machine_clamp(current_position[X_AXIS], current_position[Y_AXIS]); - plan_buffer_line_curposXYZE(manual_feedrate[axis] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[axis] / 60); lcd_draw_update = 1; } } @@ -2951,7 +2948,7 @@ static void lcd_move_e() { current_position[E_AXIS] += float((int)lcd_encoder) * move_menu_scale; lcd_encoder = 0; - plan_buffer_line_curposXYZE(manual_feedrate[E_AXIS] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[E_AXIS] / 60); lcd_draw_update = 1; } } @@ -3469,7 +3466,7 @@ bool lcd_calibrate_z_end_stop_manual(bool only_z) { // Don't know where we are. Let's claim we are Z=0, so the soft end stops will not be triggered when moving up. current_position[Z_AXIS] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); // Until confirmed by the confirmation dialog. for (;;) { @@ -3491,7 +3488,7 @@ bool lcd_calibrate_z_end_stop_manual(bool only_z) // Only move up, whatever direction the user rotates the encoder. current_position[Z_AXIS] += fabs(lcd_encoder); lcd_encoder = 0; - plan_buffer_line_curposXYZE(manual_feedrate[Z_AXIS] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[Z_AXIS] / 60); } } if (lcd_clicked()) { @@ -3527,7 +3524,7 @@ calibrated: else { current_position[Z_AXIS] = Z_MAX_POS+4.f; } - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); return true; canceled: @@ -3931,14 +3928,12 @@ void lcd_temp_cal_show_result(bool result) { eeprom_update_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA, 1); SERIAL_ECHOLNPGM("Temperature calibration done. Continue with pressing the knob."); lcd_show_fullscreen_message_and_wait_P(_T(MSG_TEMP_CALIBRATION_DONE)); - temp_cal_active = true; eeprom_update_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE, 1); } else { eeprom_update_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA, 0); SERIAL_ECHOLNPGM("Temperature calibration failed. Continue with pressing the knob."); lcd_show_fullscreen_message_and_wait_P(_i("Temperature calibration failed"));////MSG_TEMP_CAL_FAILED c=20 r=8 - temp_cal_active = false; eeprom_update_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE, 0); } lcd_update_enable(true); @@ -4045,7 +4040,7 @@ void prusa_statistics_err(char c){ } static void prusa_statistics_case0(uint8_t statnr){ - SERIAL_ECHO("{"); + SERIAL_ECHO('{'); prusa_stat_printerstatus(statnr); prusa_stat_farm_number(); prusa_stat_printinfo(); @@ -4073,7 +4068,7 @@ void prusa_statistics(int _message, uint8_t _fil_nr) { } else { - SERIAL_ECHO("{"); + SERIAL_ECHO('{'); prusa_stat_printerstatus(1); prusa_stat_farm_number(); prusa_stat_diameter(); @@ -4646,9 +4641,9 @@ void lcd_pinda_calibration_menu() } void lcd_temp_calibration_set() { + bool temp_cal_active = eeprom_read_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE); temp_cal_active = !temp_cal_active; eeprom_update_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE, temp_cal_active); - st_current_init(); } #ifdef HAS_SECOND_SERIAL_PORT @@ -4906,7 +4901,7 @@ void lcd_language() static void wait_preheat() { current_position[Z_AXIS] = 100; //move in z axis to make space for loading filament - plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 60, active_extruder); + plan_buffer_line_curposXYZE(homing_feedrate[Z_AXIS] / 60); delay_keep_alive(2000); lcd_display_message_fullscreen_P(_T(MSG_WIZARD_HEATING)); lcd_set_custom_characters(); @@ -5613,6 +5608,7 @@ do\ }\ while (0) +#if 0 // temporarily unused static void lcd_check_gcode_set(void) { switch(oCheckGcode) @@ -5631,6 +5627,7 @@ switch(oCheckGcode) } eeprom_update_byte((uint8_t*)EEPROM_CHECK_GCODE,(uint8_t)oCheckGcode); } +#endif #define SETTINGS_GCODE \ do\ @@ -5723,6 +5720,26 @@ static void sheets_menu() void lcd_hw_setup_menu(void) // can not be "static" { + typedef struct + {// 2bytes total + int8_t status; + uint8_t experimental_menu_visibility; + } _menu_data_t; + static_assert(sizeof(menu_data)>= sizeof(_menu_data_t),"_menu_data_t doesn't fit into menu_data"); + _menu_data_t* _md = (_menu_data_t*)&(menu_data[0]); + + if (_md->status == 0 || lcd_draw_update) + { + _md->status = 1; + _md->experimental_menu_visibility = eeprom_read_byte((uint8_t *)EEPROM_EXPERIMENTAL_VISIBILITY); + if (_md->experimental_menu_visibility == EEPROM_EMPTY_VALUE) + { + _md->experimental_menu_visibility = 0; + eeprom_update_byte((uint8_t *)EEPROM_EXPERIMENTAL_VISIBILITY, _md->experimental_menu_visibility); + } + } + + MENU_BEGIN(); MENU_ITEM_BACK_P(_T(bSettings?MSG_SETTINGS:MSG_BACK)); // i.e. default menu-item / menu-item after checking mismatch @@ -5732,8 +5749,16 @@ void lcd_hw_setup_menu(void) // can not be "static" #ifdef IR_SENSOR_ANALOG FSENSOR_ACTION_NA; - MENU_ITEM_FUNCTION_P(PSTR("Fsensor Detection"), lcd_detect_IRsensor); + //! Fsensor Detection isn't ready for mmu yet it is temporarily disabled. + //! @todo Don't forget to remove this as soon Fsensor Detection works with mmu + if(!mmu_enabled) MENU_ITEM_FUNCTION_P(PSTR("Fsensor Detection"), lcd_detect_IRsensor); #endif //IR_SENSOR_ANALOG + + if (_md->experimental_menu_visibility) + { + MENU_ITEM_SUBMENU_P(PSTR("Experimental"), lcd_experimental_menu);////MSG_MENU_EXPERIMENTAL c=18 + } + MENU_END(); } @@ -5772,8 +5797,10 @@ static void lcd_settings_menu() #if defined (TMC2130) && defined (LINEARITY_CORRECTION) MENU_ITEM_SUBMENU_P(_i("Lin. correction"), lcd_settings_linearity_correction_menu); #endif //LINEARITY_CORRECTION && TMC2130 - - MENU_ITEM_TOGGLE_P(_T(MSG_TEMP_CALIBRATION), temp_cal_active ? _T(MSG_ON) : _T(MSG_OFF), lcd_temp_calibration_set); + if(has_temperature_compensation()) + { + MENU_ITEM_TOGGLE_P(_T(MSG_TEMP_CALIBRATION), eeprom_read_byte((unsigned char *)EEPROM_TEMP_CAL_ACTIVE) ? _T(MSG_ON) : _T(MSG_OFF), lcd_temp_calibration_set); + } #ifdef HAS_SECOND_SERIAL_PORT MENU_ITEM_TOGGLE_P(_T(MSG_RPI_PORT), (selectedSerialPort == 0) ? _T(MSG_OFF) : _T(MSG_ON), lcd_second_serial_set); @@ -5877,7 +5904,10 @@ static void lcd_calibration_menu() //MENU_ITEM_FUNCTION_P(MSG_RESET_CALIBRATE_E, lcd_extr_cal_reset); #endif #ifndef MK1BP - MENU_ITEM_SUBMENU_P(_i("Temp. calibration"), lcd_pinda_calibration_menu);////MSG_CALIBRATION_PINDA_MENU c=17 r=1 + if(has_temperature_compensation()) + { + MENU_ITEM_SUBMENU_P(_i("Temp. calibration"), lcd_pinda_calibration_menu);////MSG_CALIBRATION_PINDA_MENU c=17 r=1 + } #endif //MK1BP } @@ -6394,13 +6424,13 @@ void unload_filament() // extr_unload2(); current_position[E_AXIS] -= 45; - plan_buffer_line_curposXYZE(5200 / 60, active_extruder); + plan_buffer_line_curposXYZE(5200 / 60); st_synchronize(); current_position[E_AXIS] -= 15; - plan_buffer_line_curposXYZE(1000 / 60, active_extruder); + plan_buffer_line_curposXYZE(1000 / 60); st_synchronize(); current_position[E_AXIS] -= 20; - plan_buffer_line_curposXYZE(1000 / 60, active_extruder); + plan_buffer_line_curposXYZE(1000 / 60); st_synchronize(); lcd_display_message_fullscreen_P(_T(MSG_PULL_OUT_FILAMENT)); @@ -6680,7 +6710,7 @@ static bool fan_error_selftest() fanSpeedSoftPwm = 255; #endif //FAN_SOFT_PWM manage_heater(); //enables print fan - setExtruderAutoFanState(EXTRUDER_0_AUTO_FAN_PIN, 1); //force enables the extruder fan untill the first manage_heater() call. + setExtruderAutoFanState(3); //force enables the extruder fan #ifdef FAN_SOFT_PWM extruder_autofan_last_check = _millis(); fan_measuring = true; @@ -6688,6 +6718,7 @@ static bool fan_error_selftest() _delay(1000); //delay_keep_alive would turn off extruder fan, because temerature is too low (maybe) manage_heater(); fanSpeed = 0; + setExtruderAutoFanState(1); //releases lock on the extruder fan #ifdef FAN_SOFT_PWM fanSpeedSoftPwm = 0; #endif //FAN_SOFT_PWM @@ -7360,13 +7391,13 @@ void lcd_print_stop() cancel_heatup = true; //unroll temperature wait loop stack. current_position[Z_AXIS] += 10; //lift Z. - plan_buffer_line_curposXYZE(manual_feedrate[Z_AXIS] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[Z_AXIS] / 60); if (axis_known_position[X_AXIS] && axis_known_position[Y_AXIS]) //if axis are homed, move to parked position. { current_position[X_AXIS] = X_CANCEL_POS; current_position[Y_AXIS] = Y_CANCEL_POS; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); } st_synchronize(); @@ -7514,8 +7545,8 @@ void lcd_belttest() #ifdef IR_SENSOR_ANALOG // called also from marlin_main.cpp -void printf_IRSensorAnalogBoardChange(bool bPCBrev04){ - printf_P(PSTR("Filament sensor board change detected: revision%S\n"), bPCBrev04 ? _T(MSG_04_OR_NEWER) : _T(MSG_03_OR_OLDER)); +void printf_IRSensorAnalogBoardChange(){ + printf_P(PSTR("Filament sensor board change detected: revision%S\n"), FsensorIRVersionText()); } static bool lcd_selftest_IRsensor(bool bStandalone) @@ -7540,8 +7571,8 @@ static bool lcd_selftest_IRsensor(bool bStandalone) return(false); } if((bPCBrev04 ? 1 : 0) != (uint8_t)oFsensorPCB){ // safer then "(uint8_t)bPCBrev04" - printf_IRSensorAnalogBoardChange(bPCBrev04); oFsensorPCB=bPCBrev04 ? ClFsensorPCB::_Rev04 : ClFsensorPCB::_Old; + printf_IRSensorAnalogBoardChange(); eeprom_update_byte((uint8_t*)EEPROM_FSENSOR_PCB,(uint8_t)oFsensorPCB); } return(true); @@ -7549,22 +7580,26 @@ static bool lcd_selftest_IRsensor(bool bStandalone) static void lcd_detect_IRsensor(){ bool bAction; - + bool loaded; bMenuFSDetect = true; // inhibits some code inside "manage_inactivity()" - bAction = lcd_show_fullscreen_message_yes_no_and_wait_P(_i("Is filament loaded?"), false, false); - if(bAction){ - lcd_show_fullscreen_message_and_wait_P(_i("Please unload the filament first, then repeat this action."));////c=20 r=4 + /// Check if filament is loaded. If it is loaded stop detection. + /// @todo Add autodetection with MMU2s + loaded = ! READ(IR_SENSOR_PIN); + if(loaded ){ + lcd_show_fullscreen_message_and_wait_P(_i("Please unload the filament first, then repeat this action.")); return; + } else { + lcd_show_fullscreen_message_and_wait_P(_i("Please check the IR sensor connection, unload filament if present.")); + bAction = lcd_selftest_IRsensor(true); } - bAction = lcd_selftest_IRsensor(true); - if(bAction){ + if(bAction){ lcd_show_fullscreen_message_and_wait_P(_i("Sensor verified, remove the filament now."));////c=20 r=3 - // the fsensor board has been successfully identified, any previous "not responding" may be cleared now - fsensor_not_responding = false; + // the fsensor board has been successfully identified, any previous "not responding" may be cleared now + fsensor_not_responding = false; } else { lcd_show_fullscreen_message_and_wait_P(_i("Verification failed, remove the filament and try again."));////c=20 r=5 - // here it is unclear what to to with the fsensor_not_responding flag - } + // here it is unclear what to to with the fsensor_not_responding flag + } bMenuFSDetect=false; // de-inhibits some code inside "manage_inactivity()" } #endif //IR_SENSOR_ANALOG @@ -7580,9 +7615,17 @@ bool lcd_selftest() bool _result = true; bool _swapped_fan = false; #ifdef IR_SENSOR_ANALOG - //! Check if IR sensor is in unknown state, set it temporarily to 0.3 or older - //! @todo This has to be improved - if( oFsensorPCB == ClFsensorPCB::_Undef) eeprom_update_byte((uint8_t*)EEPROM_FSENSOR_PCB,0); + //! Check if IR sensor is in unknown state, if so run Fsensor Detection + //! As the Fsensor Detection isn't yet ready for the mmu2s we set temporarily the IR sensor 0.3 or older for mmu2s + //! @todo Don't forget to remove this as soon Fsensor Detection works with mmu + if( oFsensorPCB == ClFsensorPCB::_Undef) { + if (!mmu_enabled) { + lcd_detect_IRsensor(); + } + else { + eeprom_update_byte((uint8_t*)EEPROM_FSENSOR_PCB,0); + } + } #endif //IR_SENSOR_ANALOG lcd_wait_for_cool_down(); lcd_clear(); @@ -7720,7 +7763,7 @@ bool lcd_selftest() current_position[Y_AXIS] += 4; #endif //TMC2130 current_position[Z_AXIS] = current_position[Z_AXIS] + 10; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); set_destination_to_current(); _progress = lcd_selftest_screen(TestScreen::AxisZ, _progress, 3, true, 1500); @@ -7732,7 +7775,7 @@ bool lcd_selftest() //raise Z to not damage the bed during and hotend testing current_position[Z_AXIS] += 20; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); } @@ -7740,7 +7783,7 @@ bool lcd_selftest() if (_result) { current_position[Z_AXIS] = current_position[Z_AXIS] + 10; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); _progress = lcd_selftest_screen(TestScreen::Home, 0, 2, true, 0); bool bres = tmc2130_home_calibrate(X_AXIS); @@ -7790,10 +7833,12 @@ bool lcd_selftest() _progress = lcd_selftest_screen(TestScreen::FsensorOk, _progress, 3, true, 2000); //fil sensor OK } #endif //PAT9125 -//#ifdef IR_SENSOR_ANALOG -#if (0) +#if 0 + // Intentionally disabled - that's why we moved the detection to runtime by just checking the two voltages. + // The idea is not to force the user to remove and insert the filament on an assembled printer. +//def IR_SENSOR_ANALOG _progress = lcd_selftest_screen(TestScreen::Fsensor, _progress, 3, true, 2000); //check filament sensor - _result = lcd_selftest_IRsensor(); + _result = lcd_selftest_IRsensor(); if (_result) { _progress = lcd_selftest_screen(TestScreen::FsensorOk, _progress, 3, true, 2000); //filament sensor OK @@ -7836,7 +7881,7 @@ bool lcd_selftest() static void reset_crash_det(unsigned char axis) { current_position[axis] += 10; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); if (eeprom_read_byte((uint8_t*)EEPROM_CRASH_DET)) tmc2130_sg_stop_on_crash = true; } @@ -7865,7 +7910,7 @@ static bool lcd_selfcheck_axis_sg(unsigned char axis) { // first axis length measurement begin current_position[axis] -= (axis_length + margin); - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); @@ -7875,11 +7920,11 @@ static bool lcd_selfcheck_axis_sg(unsigned char axis) { current_position_init = st_get_position_mm(axis); current_position[axis] += 2 * margin; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); current_position[axis] += axis_length; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); @@ -7895,11 +7940,11 @@ static bool lcd_selfcheck_axis_sg(unsigned char axis) { current_position[axis] -= margin; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); current_position[axis] -= (axis_length + margin); - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); @@ -7924,7 +7969,7 @@ static bool lcd_selfcheck_axis_sg(unsigned char axis) { lcd_selftest_error(TestError::Axis, _error_1, ""); current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); reset_crash_det(axis); enable_endstops(true); endstops_hit_on_purpose(); @@ -7944,13 +7989,13 @@ static bool lcd_selfcheck_axis_sg(unsigned char axis) { lcd_selftest_error(TestError::Pulley, _error_1, ""); current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); reset_crash_det(axis); endstops_hit_on_purpose(); return false; } current_position[axis] = 0; - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); reset_crash_det(axis); endstops_hit_on_purpose(); return true; @@ -7972,13 +8017,13 @@ static bool lcd_selfcheck_axis(int _axis, int _travel) if (_axis == X_AXIS) { current_position[Z_AXIS] += 17; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); } do { current_position[_axis] = current_position[_axis] - 1; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); #ifdef TMC2130 if ((READ(Z_MIN_PIN) ^ (bool)Z_MIN_ENDSTOP_INVERTING)) @@ -8058,7 +8103,7 @@ static bool lcd_selfcheck_axis(int _axis, int _travel) } } current_position[_axis] = 0; //simulate axis home to avoid negative numbers for axis position, especially Z. - plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); + plan_set_position_curposXYZE(); return _stepresult; } @@ -8081,17 +8126,17 @@ static bool lcd_selfcheck_pulleys(int axis) current_position_init = current_position[axis]; current_position[axis] += 2; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); for (i = 0; i < 5; i++) { refresh_cmd_timeout(); current_position[axis] = current_position[axis] + move; st_current_set(0, 850); //set motor current higher - plan_buffer_line_curposXYZE(200, active_extruder); + plan_buffer_line_curposXYZE(200); st_synchronize(); if (SilentModeMenu != SILENT_MODE_OFF) st_current_set(0, tmp_motor[0]); //set back to normal operation currents else st_current_set(0, tmp_motor_loud[0]); //set motor current back current_position[axis] = current_position[axis] - move; - plan_buffer_line_curposXYZE(50, active_extruder); + plan_buffer_line_curposXYZE(50); st_synchronize(); if (((READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING) == 1) || ((READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING) == 1)) { @@ -8108,7 +8153,7 @@ static bool lcd_selfcheck_pulleys(int axis) endstop_triggered = true; if (current_position_init - 1 <= current_position[axis] && current_position_init + 1 >= current_position[axis]) { current_position[axis] += 10; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); return(true); } @@ -8119,7 +8164,7 @@ static bool lcd_selfcheck_pulleys(int axis) } else { current_position[axis] -= 1; - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); if (_millis() > timeout_counter) { lcd_selftest_error(TestError::Pulley, (axis == 0) ? "X" : "Y", ""); @@ -8149,7 +8194,7 @@ static bool lcd_selfcheck_endstops() #endif //!TMC2130 if ((READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING) == 1) current_position[2] += 10; } - plan_buffer_line_curposXYZE(manual_feedrate[0] / 60, active_extruder); + plan_buffer_line_curposXYZE(manual_feedrate[0] / 60); st_synchronize(); if ( @@ -8475,8 +8520,7 @@ static bool lcd_selftest_manual_fan_check(int _fan, bool check_opposite, lcd_set_cursor(0, 1); if(check_opposite == true) lcd_puts_P(_T(MSG_SELFTEST_COOLING_FAN)); else lcd_puts_P(_T(MSG_SELFTEST_EXTRUDER_FAN)); - SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN); - WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1); + setExtruderAutoFanState(3); break; case 1: // object cooling fan @@ -8505,23 +8549,6 @@ static bool lcd_selftest_manual_fan_check(int _fan, bool check_opposite, lcd_button_pressed = false; do { - switch (_fan) - { - case 0: - // extruder cooling fan - SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN); - WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1); - break; - case 1: - // object cooling fan - SET_OUTPUT(FAN_PIN); -#ifdef FAN_SOFT_PWM - fanSpeedSoftPwm = 255; -#else //FAN_SOFT_PWM - analogWrite(FAN_PIN, 255); -#endif //FAN_SOFT_PWM - break; - } if (abs((enc_dif - lcd_encoder_diff)) > 2) { if (enc_dif > lcd_encoder_diff) { _result = !check_opposite; @@ -8548,8 +8575,7 @@ static bool lcd_selftest_manual_fan_check(int _fan, bool check_opposite, } while (!lcd_clicked()); KEEPALIVE_STATE(IN_HANDLER); - SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN); - WRITE(EXTRUDER_0_AUTO_FAN_PIN, 0); + setExtruderAutoFanState(0); SET_OUTPUT(FAN_PIN); #ifdef FAN_SOFT_PWM fanSpeedSoftPwm = 0; @@ -8569,20 +8595,20 @@ static FanCheck lcd_selftest_fan_auto(int _fan) case 0: fanSpeed = 0; manage_heater(); //turn off fan - setExtruderAutoFanState(EXTRUDER_0_AUTO_FAN_PIN, 1); //extruder fan + setExtruderAutoFanState(3); //extruder fan #ifdef FAN_SOFT_PWM extruder_autofan_last_check = _millis(); fan_measuring = true; #endif //FAN_SOFT_PWM - _delay(2000); //delay_keep_alive would turn off extruder fan, because temerature is too low - + _delay(2000); + setExtruderAutoFanState(0); //extruder fan manage_heater(); //count average fan speed from 2s delay and turn off fans printf_P(PSTR("Test 1:\n")); printf_P(PSTR("Print fan speed: %d \n"), fan_speed[1]); printf_P(PSTR("Extr fan speed: %d \n"), fan_speed[0]); - if (!fan_speed[0]) { + if (fan_speed[0] < 20) { // < 1200 RPM would mean either a faulty Noctua or Altfan return FanCheck::ExtruderFan; } #ifdef FAN_SOFT_PWM @@ -8660,7 +8686,7 @@ static FanCheck lcd_selftest_fan_auto(int _fan) static int lcd_selftest_screen(TestScreen screen, int _progress, int _progress_scale, bool _clear, int _delay) { - lcd_update_enable(false); + lcd_update_enable(false); const char *_indicator = (_progress >= _progress_scale) ? "-" : "|"; @@ -8708,7 +8734,7 @@ static int lcd_selftest_screen(TestScreen screen, int _progress, int _progress_s { //SERIAL_ECHOLNPGM("Other tests"); - TestScreen _step_block = TestScreen::AxisX; + TestScreen _step_block = TestScreen::AxisX; lcd_selftest_screen_step(2, 2, ((screen == _step_block) ? 1 : (screen < _step_block) ? 0 : 2), "X", _indicator); _step_block = TestScreen::AxisY; @@ -8720,8 +8746,8 @@ static int lcd_selftest_screen(TestScreen screen, int _progress, int _progress_s _step_block = TestScreen::Bed; lcd_selftest_screen_step(3, 0, ((screen == _step_block) ? 1 : (screen < _step_block) ? 0 : 2), "Bed", _indicator); - _step_block = TestScreen::Hotend; - lcd_selftest_screen_step(3, 9, ((screen == _step_block) ? 1 : (screen < _step_block) ? 0 : 2), "Hotend", _indicator); + _step_block = TestScreen::Hotend; + lcd_selftest_screen_step(3, 9, ((screen == _step_block) ? 1 : (screen < _step_block) ? 0 : 2), "Hotend", _indicator); } if (_delay > 0) delay_keep_alive(_delay); @@ -8959,13 +8985,14 @@ void lcd_finishstatus() { lcd_draw_update = 2; } + void lcd_setstatus(const char* message) { if (lcd_status_message_level > 0) return; - strncpy(lcd_status_message, message, LCD_WIDTH); - lcd_finishstatus(); + lcd_updatestatus(message); } + void lcd_updatestatuspgm(const char *message){ strncpy_P(lcd_status_message, message, LCD_WIDTH); lcd_status_message[LCD_WIDTH] = 0; @@ -8980,12 +9007,29 @@ void lcd_setstatuspgm(const char* message) return; lcd_updatestatuspgm(message); } + +void lcd_updatestatus(const char *message){ + strncpy(lcd_status_message, message, LCD_WIDTH); + lcd_status_message[LCD_WIDTH] = 0; + lcd_finishstatus(); + // hack lcd_draw_update to 1, i.e. without clear + lcd_draw_update = 1; +} + void lcd_setalertstatuspgm(const char* message) { lcd_setstatuspgm(message); lcd_status_message_level = 1; lcd_return_to_status(); } + +void lcd_setalertstatus(const char* message) +{ + lcd_setstatus(message); + lcd_status_message_level = 1; + lcd_return_to_status(); +} + void lcd_reset_alert_level() { lcd_status_message_level = 0; @@ -9005,6 +9049,13 @@ void menu_lcd_longpress_func(void) lcd_quick_feedback(); return; } + if (menu_menu == lcd_hw_setup_menu) + { + // only toggle the experimental menu visibility flag + lcd_quick_feedback(); + lcd_experimental_toggle(); + return; + } // explicitely listed menus which are allowed to rise the move-z or live-adj-z functions // The lists are not the same for both functions, so first decide which function is to be performed @@ -9168,3 +9219,25 @@ void lcd_crash_detect_disable() eeprom_update_byte((uint8_t*)EEPROM_CRASH_DET, 0x00); } #endif + +void lcd_experimental_toggle() +{ + uint8_t oldVal = eeprom_read_byte((uint8_t *)EEPROM_EXPERIMENTAL_VISIBILITY); + if (oldVal == EEPROM_EMPTY_VALUE) + oldVal = 0; + else + oldVal = !oldVal; + eeprom_update_byte((uint8_t *)EEPROM_EXPERIMENTAL_VISIBILITY, oldVal); +} + +void lcd_experimental_menu() +{ + MENU_BEGIN(); + MENU_ITEM_BACK_P(_T(MSG_BACK)); + +#ifdef EXTRUDER_ALTFAN_DETECT + MENU_ITEM_TOGGLE_P(_N("ALTFAN det."), altfanOverride_get()?_T(MSG_OFF):_T(MSG_ON), altfanOverride_toggle);////MSG_MENU_ALTFAN c=18 +#endif //EXTRUDER_ALTFAN_DETECT + + MENU_END(); +} diff --git a/Firmware/ultralcd.h b/Firmware/ultralcd.h index d68ab14b2..7c3613328 100755 --- a/Firmware/ultralcd.h +++ b/Firmware/ultralcd.h @@ -23,9 +23,11 @@ void lcd_setstatuspgm(const char* message); //! - always returns the display to the main status screen //! - always makes lcd_reset (which is slow and causes flicker) //! - does not update the message if there is already one (i.e. lcd_status_message_level > 0) +void lcd_setalertstatus(const char* message); void lcd_setalertstatuspgm(const char* message); //! only update the alert message on the main status screen //! has no sideeffects, may be called multiple times +void lcd_updatestatus(const char *message); void lcd_updatestatuspgm(const char *message); void lcd_reset_alert_level(); @@ -142,7 +144,7 @@ extern uint8_t farm_status; #ifdef IR_SENSOR_ANALOG extern bool bMenuFSDetect; -void printf_IRSensorAnalogBoardChange(bool bPCBrev04); +void printf_IRSensorAnalogBoardChange(); #endif //IR_SENSOR_ANALOG extern int8_t SilentModeMenu; @@ -257,21 +259,7 @@ enum class WizState : uint8_t void lcd_wizard(WizState state); -#define VOLT_DIV_REF 5 -#ifdef IR_SENSOR_ANALOG -constexpr uint16_t Voltage2Raw(float V){ - return ( V * 1023 * OVERSAMPLENR / VOLT_DIV_REF ) + 0.5F; -} -constexpr float Raw2Voltage(uint16_t raw){ - return VOLT_DIV_REF*(raw / (1023.F * OVERSAMPLENR) ); -} -constexpr uint16_t IRsensor_Hmin_TRESHOLD = Voltage2Raw(3.0F); // ~3.0V (0.6*Vcc), raw value=9821 -constexpr uint16_t IRsensor_Lmax_TRESHOLD = Voltage2Raw(1.5F); // ~1.5V (0.3*Vcc), raw value=4910 -constexpr uint16_t IRsensor_Hopen_TRESHOLD = Voltage2Raw(4.6F); // ~4.6V (N.C. @ Ru~20-50k, Rd'=56k, Ru'=10k), raw value=15059 -constexpr uint16_t IRsensor_Ldiode_TRESHOLD = Voltage2Raw(0.3F); // ~0.3V, raw value=982 -constexpr uint16_t IRsensor_VMax_TRESHOLD = Voltage2Raw(5.F); // ~5V, raw value=16368 - - -#endif //IR_SENSOR_ANALOG +extern void lcd_experimental_toggle(); +extern void lcd_experimental_menu(); #endif //ULTRALCD_H diff --git a/Firmware/variants/1_75mm_MK2-RAMBo10a-E3Dv6full.h b/Firmware/variants/1_75mm_MK2-RAMBo10a-E3Dv6full.h index 45b88c7ba..887a90a6f 100644 --- a/Firmware/variants/1_75mm_MK2-RAMBo10a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK2-RAMBo10a-E3Dv6full.h @@ -330,6 +330,10 @@ PREHEAT SETTINGS #define ASA_PREHEAT_HPB_TEMP 105 #define ASA_PREHEAT_FAN_SPEED 0 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_FAN_SPEED 0 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 #define ABS_PREHEAT_FAN_SPEED 0 diff --git a/Firmware/variants/1_75mm_MK2-RAMBo13a-E3Dv6full.h b/Firmware/variants/1_75mm_MK2-RAMBo13a-E3Dv6full.h index 7b3e24458..c9c4ed6cd 100644 --- a/Firmware/variants/1_75mm_MK2-RAMBo13a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK2-RAMBo13a-E3Dv6full.h @@ -326,6 +326,9 @@ PREHEAT SETTINGS #define ASA_PREHEAT_HOTEND_TEMP 260 #define ASA_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 105 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 diff --git a/Firmware/variants/1_75mm_MK25-RAMBo10a-E3Dv6full.h b/Firmware/variants/1_75mm_MK25-RAMBo10a-E3Dv6full.h index 36a9b5214..f2ef69e99 100644 --- a/Firmware/variants/1_75mm_MK25-RAMBo10a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK25-RAMBo10a-E3Dv6full.h @@ -384,6 +384,9 @@ #define ASA_PREHEAT_HOTEND_TEMP 260 #define ASA_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 105 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 diff --git a/Firmware/variants/1_75mm_MK25-RAMBo13a-E3Dv6full.h b/Firmware/variants/1_75mm_MK25-RAMBo13a-E3Dv6full.h index ff13a7c61..7eaba3d6c 100644 --- a/Firmware/variants/1_75mm_MK25-RAMBo13a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK25-RAMBo13a-E3Dv6full.h @@ -385,6 +385,9 @@ #define ASA_PREHEAT_HOTEND_TEMP 260 #define ASA_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 105 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 diff --git a/Firmware/variants/1_75mm_MK25S-RAMBo10a-E3Dv6full.h b/Firmware/variants/1_75mm_MK25S-RAMBo10a-E3Dv6full.h index 71a23a1a6..ee245bd4b 100644 --- a/Firmware/variants/1_75mm_MK25S-RAMBo10a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK25S-RAMBo10a-E3Dv6full.h @@ -384,6 +384,9 @@ #define ASA_PREHEAT_HOTEND_TEMP 260 #define ASA_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 105 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 diff --git a/Firmware/variants/1_75mm_MK25S-RAMBo13a-E3Dv6full.h b/Firmware/variants/1_75mm_MK25S-RAMBo13a-E3Dv6full.h index 8d22a6cc9..6bf30f192 100644 --- a/Firmware/variants/1_75mm_MK25S-RAMBo13a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK25S-RAMBo13a-E3Dv6full.h @@ -385,6 +385,9 @@ #define ASA_PREHEAT_HOTEND_TEMP 260 #define ASA_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 105 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 diff --git a/Firmware/variants/1_75mm_MK3-EINSy10a-E3Dv6full.h b/Firmware/variants/1_75mm_MK3-EINSy10a-E3Dv6full.h index b80217ee3..04b4c5266 100644 --- a/Firmware/variants/1_75mm_MK3-EINSy10a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK3-EINSy10a-E3Dv6full.h @@ -294,6 +294,9 @@ #if BED_MINTEMP_DELAY>USHRT_MAX #error "Check maximal allowed value @ ShortTimer (see BED_MINTEMP_DELAY definition)" #endif +#define DETECT_SUPERPINDA +#define PINDA_MINTEMP BED_MINTEMP +#define AMBIENT_MINTEMP -30 // Maxtemps #if defined(E3D_PT100_EXTRUDER_WITH_AMP) || defined(E3D_PT100_EXTRUDER_NO_AMP) @@ -304,6 +307,7 @@ #define HEATER_1_MAXTEMP 305 #define HEATER_2_MAXTEMP 305 #define BED_MAXTEMP 125 +#define AMBIENT_MAXTEMP 100 #if defined(E3D_PT100_EXTRUDER_WITH_AMP) || defined(E3D_PT100_EXTRUDER_NO_AMP) // Define PID constants for extruder with PT100 @@ -496,6 +500,9 @@ #define ASA_PREHEAT_HOTEND_TEMP 260 #define ASA_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 110 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 diff --git a/Firmware/variants/1_75mm_MK3S-EINSy10a-E3Dv6full.h b/Firmware/variants/1_75mm_MK3S-EINSy10a-E3Dv6full.h index ad714c235..c869ec517 100644 --- a/Firmware/variants/1_75mm_MK3S-EINSy10a-E3Dv6full.h +++ b/Firmware/variants/1_75mm_MK3S-EINSy10a-E3Dv6full.h @@ -296,6 +296,9 @@ #if BED_MINTEMP_DELAY>USHRT_MAX #error "Check maximal allowed value @ ShortTimer (see BED_MINTEMP_DELAY definition)" #endif +#define DETECT_SUPERPINDA +#define PINDA_MINTEMP BED_MINTEMP +#define AMBIENT_MINTEMP -30 // Maxtemps #if defined(E3D_PT100_EXTRUDER_WITH_AMP) || defined(E3D_PT100_EXTRUDER_NO_AMP) @@ -306,6 +309,7 @@ #define HEATER_1_MAXTEMP 305 #define HEATER_2_MAXTEMP 305 #define BED_MAXTEMP 125 +#define AMBIENT_MAXTEMP 100 #if defined(E3D_PT100_EXTRUDER_WITH_AMP) || defined(E3D_PT100_EXTRUDER_NO_AMP) // Define PID constants for extruder with PT100 @@ -331,6 +335,8 @@ #define EXTRUDER_2_AUTO_FAN_PIN -1 #define EXTRUDER_AUTO_FAN_TEMPERATURE 50 #define EXTRUDER_AUTO_FAN_SPEED 255 // == full speed +#define EXTRUDER_ALTFAN_DETECT +#define EXTRUDER_ALTFAN_SPEED_SILENT 128 @@ -498,6 +504,9 @@ #define ASA_PREHEAT_HOTEND_TEMP 260 #define ASA_PREHEAT_HPB_TEMP 105 +#define PC_PREHEAT_HOTEND_TEMP 275 +#define PC_PREHEAT_HPB_TEMP 110 + #define ABS_PREHEAT_HOTEND_TEMP 255 #define ABS_PREHEAT_HPB_TEMP 100 diff --git a/README.md b/README.md index fb1c79689..1562552bc 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,28 @@ The firmware for the Original Prusa i3 printers is proudly based on [Marlin 1.0. 1. Clone this repository and checkout the correct branch for your desired release version. -2. Set your printer model. +1. Set your printer model. - For MK3 --> skip to step 3. - If you have a different printer model, follow step [2.b](#2b) from Windows build +1. Install GNU AWK `sudo apt-get install gawk` +If you use mawk instead of gawk you get strange errors when multi language support is generated like: +`awk: line 2: function strtonum never defined +sed: couldn't write 4 items to stdout: Broken pipe +./lang-build.sh: 121: ./lang-build.sh: arithmetic expression: expecting EOF: "0x"awk: line 2: function strtonum never defined +sed: couldn't write 4 items to stdout: Broken pipe +tr: write error: Broken pipe +./lang-build.sh: 121: ./lang-build.sh: arithmetic expression: expecting EOF: "0x"awk: line 2: function strtonum never defined +sed: couldn't write 4 items to stdout: Broken pipe +tr: write error: Broken pipe +tr: write error +cut: write error: Broken pipeNG! - some texts not found in lang_en.txt! updating binary: + primary language ids...awk: line 2: function strtonum never defined +sed: couldn't flush stdout: Broken pipe` -3. Run `./build.sh` +1. Run `./build.sh` - Output hex file is at `"PrusaFirmware/lang/firmware.hex"` . In the same folder you can hex files for other languages as well. -4. Connect your printer and flash with PrusaSlicer ( Configuration --> Flash printer firmware ) or Slic3r PE. +1. Connect your printer and flash with PrusaSlicer ( Configuration --> Flash printer firmware ) or Slic3r PE. - If you wish to flash from Arduino, follow step [2.c](#2c) from Windows build first. @@ -182,7 +196,7 @@ Example: `ninja` -## Runing +## Running `./tests` # 4. Documentation diff --git a/lang/lang-build.sh b/lang/lang-build.sh index b8c2476eb..e9d46c055 100755 --- a/lang/lang-build.sh +++ b/lang/lang-build.sh @@ -5,7 +5,7 @@ # # Input files: # lang_en.txt or lang_en_xx.txt -# +# # Output files: # lang_xx.bin # @@ -82,7 +82,7 @@ generate_binary() rm -f lang_$1.dat LNG=$1 #check lang dictionary - /usr/bin/env python lang-check.py $1 --no-warning + ./lang-check.py $1 --no-warning #create lang_xx.tmp - different processing for 'en' language if [ "$1" = "en" ]; then #remove comments and empty lines diff --git a/lang/lang-check.py b/lang/lang-check.py old mode 100644 new mode 100755 diff --git a/lang/lang_en.txt b/lang/lang_en.txt old mode 100755 new mode 100644 index a209acfd6..469084d10 --- a/lang/lang_en.txt +++ b/lang/lang_en.txt @@ -1,12 +1,21 @@ # "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" -#MSG_03_OR_OLDER c=18 +#MSG_IR_03_OR_OLDER c=18 " 0.3 or older" -#MSG_04_OR_NEWER c=18 +# c=18 +"FS v0.3 or older" + +#MSG_IR_04_OR_NEWER c=18 " 0.4 or newer" +# c=18 +"FS v0.4 or newer" + +#MSG_IR_UNKNOWN c=18 +"unknown state" + #MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 " of 4" @@ -265,9 +274,6 @@ #MSG_FS_ACTION c=10 "FS Action" -# c=18 -"FS v0.4 or newer" - #MSG_FILE_INCOMPLETE c=20 r=3 "File incomplete. Continue anyway?" @@ -670,6 +676,9 @@ # c=20 r=4 "Please unload the filament first, then repeat this action." +# c=20 r=4 +"Please check the IR sensor connection, unload filament if present." + #MSG_RECOVERING_PRINT c=20 "Recovering print " diff --git a/lang/lang_en_cz.txt b/lang/lang_en_cz.txt old mode 100755 new mode 100644 index 4914bc800..f0b4f3522 --- a/lang/lang_en_cz.txt +++ b/lang/lang_en_cz.txt @@ -2,14 +2,26 @@ "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" "[%.7s]Doladeni Z\x0auz nastaveno, pouzit\x0anebo reset od nuly?\x0a%cPokracovat%cReset" -#MSG_03_OR_OLDER c=18 +#MSG_IR_03_OR_OLDER c=18 " 0.3 or older" " 0.3 nebo starsi" -#MSG_04_OR_NEWER c=18 +# c=18 +"FS v0.3 or older" +"FS 0.3 nebo starsi" + +#MSG_IR_04_OR_NEWER c=18 " 0.4 or newer" " 0.4 nebo novejsi" +# c=18 +"FS v0.4 or newer" +"FS 0.4 a novejsi" + +#MSG_IR_UNKNOWN c=18 +"unknown state" +"neznamy stav" + #MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 " of 4" " z 4" @@ -354,10 +366,6 @@ "FS Action" "FS reakce" -# c=18 -"FS v0.4 or newer" -"FS v0.4 a novejsi" - #MSG_FILE_INCOMPLETE c=20 r=3 "File incomplete. Continue anyway?" "Soubor nekompletni. Pokracovat?" @@ -894,6 +902,10 @@ "Please unload the filament first, then repeat this action." "Prosim vyjmete filament a zopakujte tuto akci" +# c=20 r=4 +"Please check the IR sensor connection, unload filament if present." +"Prosim zkontrolujte zapojeni IR senzoru a vyjmuty filament" + #MSG_RECOVERING_PRINT c=20 "Recovering print " "Obnovovani tisku " diff --git a/lang/lang_en_de.txt b/lang/lang_en_de.txt old mode 100755 new mode 100644 index 25d3ae466..289fcba93 --- a/lang/lang_en_de.txt +++ b/lang/lang_en_de.txt @@ -2,14 +2,26 @@ "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" "[%.7s]Z Einstell.\x0aWert gesetzt,weiter\x0aoder mit 0 beginnen?\x0a%cWeiter%cNeu beginnen" -#MSG_03_OR_OLDER c=18 +#MSG_IR_03_OR_OLDER c=18 " 0.3 or older" " 0.3 oder aelter" -#MSG_04_OR_NEWER c=18 +# c=18 +"FS v0.3 or older" +"FS 0.3 oder aelter" + +#MSG_IR_04_OR_NEWER c=18 " 0.4 or newer" " 0.4 oder neuer" +# c=18 +"FS v0.4 or newer" +"FS 0.4 oder neuer" + +#MSG_IR_UNKNOWN c=18 +"unknown state" +"Status unbekannt" + #MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 " of 4" " von 4" @@ -354,10 +366,6 @@ "FS Action" "FS Aktion" -# c=18 -"FS v0.4 or newer" -"FS v0.4 oder neuer" - #MSG_FILE_INCOMPLETE c=20 r=3 "File incomplete. Continue anyway?" "Datei unvollstaendig Trotzdem fortfahren?" @@ -894,6 +902,10 @@ "Please unload the filament first, then repeat this action." "Bitte entladen Sie erst das Filament und versuchen Sie es nochmal." +# c=20 r=4 +"Please check the IR sensor connection, unload filament if present." +"Bitte IR Sensor Verbindungen ueber- pruefen und Filament entladen ist." + #MSG_RECOVERING_PRINT c=20 "Recovering print " "Druck wiederherst " diff --git a/lang/lang_en_es.txt b/lang/lang_en_es.txt old mode 100755 new mode 100644 index 8404c5b3e..1bb0c968e --- a/lang/lang_en_es.txt +++ b/lang/lang_en_es.txt @@ -2,14 +2,26 @@ "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" "[%.7s]Ajuste Z\x0aAjustado, continuar\x0ao empezar de nuevo?\x0a%cContinuar%cRepetir" -#MSG_03_OR_OLDER c=18 +#MSG_IR_03_OR_OLDER c=18 " 0.3 or older" " 0.3 o mayor" -#MSG_04_OR_NEWER c=18 +# c=18 +"FS v0.3 or older" +"FS 0.3 o mayor" + +#MSG_IR_04_OR_NEWER c=18 " 0.4 or newer" " 0.4 o mas nueva" +# c=18 +"FS v0.4 or newer" +"FS 0.4 o mas nueva" + +#MSG_IR_UNKNOWN c=18 +"unknown state" +"estado desconocido" + #MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 " of 4" " de 4" @@ -354,10 +366,6 @@ "FS Action" "FS accion" -# c=18 -"FS v0.4 or newer" -"FS v0.4 o +nueva" - #MSG_FILE_INCOMPLETE c=20 r=3 "File incomplete. Continue anyway?" "Archivo incompleto. ?Continuar de todos modos?" @@ -894,6 +902,10 @@ "Please unload the filament first, then repeat this action." "Primero descargue el filamento, luego repita esta accion." +# c=20 r=4 +"Please check the IR sensor connection, unload filament if present." +"Por favor comprueba la conexion del IR sensor y filamento esta descargado." + #MSG_RECOVERING_PRINT c=20 "Recovering print " "Recuper. impresion " diff --git a/lang/lang_en_fr.txt b/lang/lang_en_fr.txt old mode 100755 new mode 100644 index bbd82522f..612c9756e --- a/lang/lang_en_fr.txt +++ b/lang/lang_en_fr.txt @@ -2,14 +2,26 @@ "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" "[%.7s]Ajust. du Z\x0aValeur enreg, contin\x0aou depart a zero?\x0a%cContinuer%cReset" -#MSG_03_OR_OLDER c=18 +#MSG_IR_03_OR_OLDER c=18 " 0.3 or older" " 0.3 ou +ancien" -#MSG_04_OR_NEWER c=18 +# c=18 +"FS v0.3 or older" +"FS v0.3 ou +ancien" + +#MSG_IR_04_OR_NEWER c=18 " 0.4 or newer" " 0.4 ou +recent" +# c=18 +"FS v0.4 or newer" +"FS v0.4 ou +recent" + +#MSG_IR_UNKNOWN c=18 +"unknown state" +"Etat inconnu" + #MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 " of 4" " de 4" @@ -354,10 +366,6 @@ "FS Action" "\x00" -# c=18 -"FS v0.4 or newer" -"FS v0.4 ou +recent" - #MSG_FILE_INCOMPLETE c=20 r=3 "File incomplete. Continue anyway?" "Fichier incomplet. Continuer qd meme?" @@ -894,6 +902,10 @@ "Please unload the filament first, then repeat this action." "SVP, dechargez le filament et reessayez." +# c=20 r=4 +"Please check the IR sensor connection, unload filament if present." +"SVP, verifiez la connexion du capteur IR et decharge le filament." + #MSG_RECOVERING_PRINT c=20 "Recovering print " "Recup. impression " diff --git a/lang/lang_en_it.txt b/lang/lang_en_it.txt old mode 100755 new mode 100644 index 70b4bbc0f..8bf6ad409 --- a/lang/lang_en_it.txt +++ b/lang/lang_en_it.txt @@ -6,10 +6,22 @@ " 0.3 or older" " 0.3 o inferiore" -#MSG_04_OR_NEWER c=18 +# c=18 +"FS v0.3 or older" +"FS 0.3 o inferiore" + +#MSG_IR_04_OR_NEWER c=18 " 0.4 or newer" " 0.4 o superiore" +# c=18 +"FS v0.4 or newer" +"FS 0.4 o superiore" + +#MSG_IR_UNKNOWN c=18 +"unknown state" +"stato sconosciuto" + #MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 " of 4" " su 4" @@ -354,10 +366,6 @@ "FS Action" "Azione FS" -# c=18 -"FS v0.4 or newer" -"FS 0.4 o superiore" - #MSG_FILE_INCOMPLETE c=20 r=3 "File incomplete. Continue anyway?" "File incompleto. Continuare comunque?" @@ -894,6 +902,10 @@ "Please unload the filament first, then repeat this action." "Scaricare prima il filamento, poi ripetere l'operazione." +# c=20 r=4 +"Please check the IR sensor connection, unload filament if present." +"Controllare il collegamento al sensore e rimuovere il filamento." + #MSG_RECOVERING_PRINT c=20 "Recovering print " "Recupero stampa " diff --git a/lang/lang_en_pl.txt b/lang/lang_en_pl.txt old mode 100755 new mode 100644 index 62fd5d939..32027934e --- a/lang/lang_en_pl.txt +++ b/lang/lang_en_pl.txt @@ -2,14 +2,26 @@ "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" "[%.7s]Live Adj. Z\x0austaw., kontynuowac\x0aczy zaczac od 0?\x0a%cKontynuuj%cReset" -#MSG_03_OR_OLDER c=18 +#MSG_IR_03_OR_OLDER c=18 " 0.3 or older" " 0.3 lub starszy" -#MSG_04_OR_NEWER c=18 +# c=18 +"FS v0.3 or older" +"FS 0.3 lub starszy" + +#MSG_IR_04_OR_NEWER c=18 " 0.4 or newer" " 0.4 lub nowszy" +# c=18 +"FS v0.4 or newer" +"FS 0.4 lub nowszy" + +#MSG_IR_UNKNOWN c=18 +"unknown state" +"Stan nieznany" + #MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 " of 4" " z 4" @@ -354,10 +366,6 @@ "FS Action" "Akcja FS" -# c=18 -"FS v0.4 or newer" -"FS v0.4 lub nowszy" - #MSG_FILE_INCOMPLETE c=20 r=3 "File incomplete. Continue anyway?" "Plik niekompletny. Kontynowac?" @@ -894,6 +902,10 @@ "Please unload the filament first, then repeat this action." "Najpierw rozladuj filament, nastepnie powtorz czynnosc." +# c=20 r=4 +"Please check the IR sensor connection, unload filament if present." +"Sprawdz polaczenie czujnika IR, rozladuj filament, jesli zaladowany." + #MSG_RECOVERING_PRINT c=20 "Recovering print " "Wznawianie wydruku " diff --git a/lang/po/Firmware.pot b/lang/po/Firmware.pot index 02dc7715a..bd92a7ecd 100644 --- a/lang/po/Firmware.pot +++ b/lang/po/Firmware.pot @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Wed May 13 17:40:37 CEST 2020\n" -"PO-Revision-Date: Wed May 13 17:40:37 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:22:18 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:22:18 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr "" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr "" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr "" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr "" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "" @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "" # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "" # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "" # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "" @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "" @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "" @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "" @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "" # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "" @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "" # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "" @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "" @@ -460,13 +475,8 @@ msgstr "" msgid "FS Action" msgstr "" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "" @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "" # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "" @@ -536,12 +546,12 @@ msgid "Heating" msgstr "" # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "" # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "" @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "" @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "" @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "" # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "" @@ -821,7 +831,7 @@ msgid "High power" msgstr "" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "" # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "" @@ -871,7 +881,7 @@ msgid "No" msgstr "" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "" @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "" # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "" @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "" # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "" @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "" # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "" @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "" # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "" # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "" @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "" # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "" @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "" @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "" # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "" # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "" # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "" # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "" # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "" +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "" + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "" @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "" # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "" # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "" # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "" @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "" @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "" # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "" @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "" # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "" # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "" # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "" # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "" # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "" # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "" # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "" # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "" # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "" # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "" # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "" # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "" # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "" # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "" # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "" # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "" # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "" # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "" @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "" # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "" # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "" # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "" diff --git a/lang/po/Firmware_cs.po b/lang/po/Firmware_cs.po index e1f8932ae..dda52924b 100644 --- a/lang/po/Firmware_cs.po +++ b/lang/po/Firmware_cs.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cs\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Wed May 13 17:41:02 CEST 2020\n" -"PO-Revision-Date: Wed May 13 17:41:02 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:22:53 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:22:53 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Doladeni Z\x0auz nastaveno, pouzit\x0anebo reset od nuly?\x0a%cPokracovat%cReset" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 nebo starsi" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 nebo starsi" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 nebo novejsi" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 a novejsi" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "neznamy stav" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " z 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] odsazeni bodu" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "POZOR:\x0aCrash detekce\x0adeaktivovana ve\x0aStealth modu" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Zrusit" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Doladeni Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Vse OK " @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "a stisknete tlacitko" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Dojely oba Z voziky k~hornimu dorazu?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "AutoZavedeni fil." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Automaticke zavadeni filamentu je mozne pouze pri zapnutem filament senzoru..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Automaticke zavadeni filamentu aktivni, stisknete tlacitko a vlozte filament..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Delka osy" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Osa" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Podlozka / Topeni" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Zahrivani bedu" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Korekce podlozky" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test remenu " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Detekovan vypadek proudu.Obnovit tisk?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Kalibruji vychozi poz." # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Kalibrace XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Kalibrovat Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Zkalibrovat" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibrace XYZ. Otacenim tlacitka posunte Z osu az k~hornimu dorazu. Potvrdte tlacitkem." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Kalibruji Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibrace Z. Otacenim tlacitka posunte Z osu az k~hornimu dorazu. Potvrdte tlacitkem." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Kalibrace" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Zrusit" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Karta vyjmuta" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Barva neni cista" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Zchladit" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Kopirovat vybrany jazyk?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Zvolte filament pro kalibraci prvni vrstvy z nasledujiciho menu" @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Detekovan naraz." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Detekovan naraz. Obnovit tisk?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Naraz" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Pouze aktualni" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Datum:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Vypnout motory" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "Pokr." # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Chcete opakovat posledni krok a pozmenit vzdalenost mezi tryskou a podlozkou?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Korekce E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Vysouvam filament" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Kon. spinac nesepnut" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Koncovy spinac" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Konc. spinace" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Chyba - Doslo k prepisu staticke pameti!" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Strihani filamentu" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "CHYBA: Filament senzor nereaguje, zkontrolujte prosim zapojeni." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "CHYBA:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Levy vent.:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Selhani MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "F. autozav." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Selhani" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test ventilatoru" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Kontr. vent." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament vytlacen a spravne barvy?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Filament nezaveden" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Senzor filamentu" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Spotrebovano filam." # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Cas tisku" @@ -460,13 +475,8 @@ msgstr "Cas tisku" msgid "FS Action" msgstr "FS reakce" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 a novejsi" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Soubor nekompletni. Pokracovat?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Kal. prvni vrstvy" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Nejdriv pomoci selftestu zkontoluji nejcastejsi chyby vznikajici pri sestaveni tiskarny." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Opravte chybu a pote stisknete tlacitko na jednotce MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Prutok" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Predni tiskovy vent?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Vpredu [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Predni/levy vent." # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Topeni/Termistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Zahrivani preruseno bezpecnostnim casovacem." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Zahrivani" # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Dobry den, jsem vase tiskarna Original Prusa i3. Chcete abych Vas provedla kalibracnim procesem?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Vymenit filament" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Zmena uspesna!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Vymena ok?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Kontrola podlozky" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Kontrola endstopu" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Kontrola hotend " @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Kontrola senzoru" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Kontrola osy X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Kontrola osy Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Kontrola osy Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Nyni provedu xyz kalibraci. Zabere to priblizne 12 min." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Nyni provedu z kalibraci." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Informace" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Vlozte filament" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Je filament zaveden?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Selhani posl. tisku" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Mate-li vice tiskovych platu, kalibrujte je v menu Nastaveni - HW nastaveni - Tiskove platy" @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Levy vent na trysce?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Vlevo" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Vlevo [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Korekce lin." @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Doladeni osy Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Vlozte filament (nezavadejte) do extruderu a stisknete tlacitko" @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Zavest filament" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Cisteni barvy" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Zavadeni filamentu" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Uvolnena remenicka" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Zavest do trysky" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Merim referencni vysku kalibracniho bodu" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Pokracuji v nahrivani..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Merene zkoseni" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Mod" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Vys. vykon" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 pripojeno" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Posunout osu" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Posunout X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Posunout Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Posunout Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Bez pohybu." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Zadna SD karta" @@ -871,7 +881,7 @@ msgid "No" msgstr "Ne" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Nezapojeno " @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Netoci se" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Nyni zkalibruji vzdalenost mezi koncem trysky a povrchem podlozky." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Nyni predehreji trysku pro PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Tryska" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Neplatne hodnoty nastaveni. Bude pouzito vychozi PID, Esteps atd." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Nyni odstrante testovaci vytisk z tiskoveho platu." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Vent. trysky" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Pozastavit tisk" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "PID kal. ukoncena" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "PID kalibrace" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Umistete list papiru na podlozku a udrzujte jej pod tryskou behem mereni prvnich 4 bodu. Pokud tryska zachyti papir, okamzite vypnete tiskarnu." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Prosim ocistete podlozku a stisknete tlacitko." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Pro uspesnou kalibraci ocistete prosim tiskovou trysku. Potvrdte tlacitkem." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Zkontrolujte :" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Prosim nahlednete do prirucky 3D tiskare a opravte problem. Pote obnovte Pruvodce restartovanim tiskarny." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Prosim otevrete idler a manualne odstrante filament." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Odstrante prosim tiskovy plat z podlozky." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Nejprve spustte kalibraci XYZ." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Prosim cekejte" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Nejprve prosim sundejte transportni soucastky." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Predehrejte trysku!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Predehrev" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Prosim aktualizujte." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Pro nahrati trysky a pokracovani stisknete tlacitko." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Tisk prerusen" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Predehrev k zavedeni" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Predehrev k vyjmuti" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Tiskovy vent.:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Tisk z SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Stisknete hl. tlacitko" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Tiskovy vent." # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Prosim vlozte filament do extruderu a stisknete tlacitko k jeho zavedeni" # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Prosim vlozte filament do prvni trubicky MMU a stisknete tlacitko k jeho zavedeni" # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Prosim nejdriv zavedte filament" # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Vzadu [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Prosim vyjmete filament a zopakujte tuto akci" +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Prosim zkontrolujte zapojeni IR senzoru a vyjmuty filament" + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Obnovovani tisku " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset XYZ kalibr." # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Pokracovat" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Obnoveni tisku" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Vpravo [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Spusteni Pruvodce vymaze ulozene vysledky vsech kalibraci a spusti kalibracni proces od zacatku. Pokracovat?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Vpravo" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Hledam kalibracni bod podlozky" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Vyber jazyka" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Self test start " # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Selftest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Chyba Selftestu!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Selftest selhal " # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Pro kalibraci presneho rehomovani bude nyni spusten selftest." # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Vyberte teplotu predehrati trysky ktera odpovida vasemu materialu." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Nastavte teplotu:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Nastaveni" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Stav konc. spin." # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Stav senzoru" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Nektere soubory nebudou setrideny. Maximalni pocet souboru ve slozce pro setrideni je 100." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Cas" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Tezke zkoseni:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Abeceda" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Trideni souboru" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Hlasity" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Lehke zkoseni:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Vyskytl se problem, srovnavam osu Z ..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Jednou" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Rychlost" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Toci se" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Je vyzadovana stabilni pokojova teplota 21-26C a pevna podlozka." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistika " @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ZASTAVENO." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Podpora" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Prohozene" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Zvolte filament:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Tepl. kal." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Zvolte teplotu, ktera odpovida vasemu materialu." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Teplot. kalibrace" # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Teplotni kalibrace selhala" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Teplotni kalibrace dokoncena a je nyni aktivni. Teplotni kalibraci je mozno deaktivovat v menu Nastaveni->Tepl. kal." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Senzor overen, vyjmete filament." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Teplota" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Teploty" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Je potreba kalibrovat osu Z. Prosim postupujte dle prirucky, kapitola Zaciname, sekce Postup kalibrace." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filament celkem" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Celkovy cas tisku" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Ladit" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Celkem selhani" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "k zavedeni filamentu" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "k vyjmuti filamentu" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Celkem" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Pouzite behem tisku" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Napeti" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "neznamy" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Ceka se na uzivatele..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Cekani na zchladnuti trysky a podlozky." # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Cekani na zchladnuti PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Pouzijte vyjmout pro odstraneni filamentu 1 pokud presahuje z PTFE trubicky za tiskarnou. Pouzijte vysunout, pokud neni videt." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Varovani: doslo ke zmene typu tiskarny a motherboardu." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Varovani: doslo ke zmene typu motherboardu." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Varovani: doslo ke zmene typu tiskarny." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Bylo vysunuti filamentu uspesne?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Chyba zapojeni" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Pruvodce" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Detaily XYZ kal." @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Pruvodce muzete kdykoliv znovu spustit z menu Kalibrace -> Pruvodce" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Kalibrace XYZ v poradku. Zkoseni bude automaticky vyrovnano pri tisku." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Kalibrace XYZ v poradku. X/Y osy mirne zkosene. Dobra prace!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Korekce X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Kalibrace XYZ v poradku. X/Y osy jsou kolme. Gratuluji!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Kalibrace XYZ nepresna. Predni kalibracni body moc vpredu." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Kalibrace XYZ nepresna. Pravy predni bod moc vpredu." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Zavest vse" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Kalibrace XYZ selhala. Kalibracni bod podlozky nenalezen." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Kalibrace XYZ selhala. Predni kalibracni body moc vpredu. Srovnejte tiskarnu." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Kalibrace XYZ selhala. Pravy predni bod moc vpredu. Srovnejte tiskarnu." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Y vzdalenost od min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "Tiskarna zacne tisknout lomenou caru. Otacenim tlacitka nastavte optimalni vysku. Postupujte podle obrazku v handbooku (kapitola Kalibrace)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Overeni selhalo, vyjmete filament a zkuste znovu." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Korekce Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Zpet" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Kontrola" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falesne spusteni" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "HW nastaveni" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Mesh Bed Leveling" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "MK3S firmware detekovan na tiskarne MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "MMU mod" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Probiha zmena modu..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-code je pripraven pro novejsi firmware. Prosim aktualizujte firmware. Tisk zrusen." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Predehrev ke strihu" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Predehrev k vysunuti" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Prumer trysky tiskarny se lisi od G-code. Prosim zkontrolujte nastaveni. Tisk zrusen." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Prejmenovat" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Vybrat" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Senzor info" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Asist." # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Tiskove platy" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Korekce Z:" diff --git a/lang/po/Firmware_de.po b/lang/po/Firmware_de.po index 7745bde85..dc3c21284 100644 --- a/lang/po/Firmware_de.po +++ b/lang/po/Firmware_de.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Fri May 15 16:44:45 CEST 2020\n" -"PO-Revision-Date: Fri May 15 16:44:45 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:23:29 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:23:29 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Z Einstell.\x0aWert gesetzt,weiter\x0aoder mit 0 beginnen?\x0a%cWeiter%cNeu beginnen" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 oder aelter" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 oder aelter" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 oder neuer" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 oder neuer" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "Status unbekannt" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " von 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] Punktversatz" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "WARNUNG:\x0aCrash Erkennung\x0adeaktiviert im\x0aStealth Modus" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Abbruch" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Z Anpassen:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Alles richtig " @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "und Knopf druecken" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Sind linke+rechte Z- Schlitten ganz oben?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Startposition" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "AutoLaden Filament" # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Automatisches Laden Filament nur bei eingeschaltetem Fil. sensor verfuegbar..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Automatisches Laden Filament ist aktiv, Knopf druecken und Filament einlegen..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Achsenlaenge" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Achse" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Bett / Heizung" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Bett aufwaermen" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Ausgleich Bett ok" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Riementest " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Stromausfall! Druck wiederherstellen?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Kalibriere Start" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Kalibrierung XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Kalibrierung Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Kalibrieren" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "XYZ Kalibrieren: Drehen Sie den Knopf bis der obere Anschlag erreicht wird. Anschliessend den Knopf druecken." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Kalibrierung Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Z Kalibrieren: Drehen Sie den Knopf bis der obere Anschlag erreicht wird. Anschliessend den Knopf druecken." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Kalibrierung" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Abbruch" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "SD Karte entfernt" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Falsche Farbe" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Abkuehlen" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Gewaehlte Sprache kopieren?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Crash Erk." # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Waehlen Sie ein Filament fuer Erste Schichtkalibrierung aus und waehlen Sie es im On-Screen-Menu aus." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Crash erkannt." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Crash erkannt. Druck fortfuehren?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Aktuelles" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Datum:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Motoren aus" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Moechten Sie den letzten Schritt wiederholen, um den Abstand zwischen Duese und Druckbett neu einzustellen?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "E-Korrektur:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "werfe Filament aus" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Ende nicht getroffen" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Endanschlag" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Endschalter" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Fehler - statischer Speicher wurde ueberschrieben" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Schneide filament" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "FEHLER: Filament- sensor reagiert nicht, bitte Verbindung pruefen." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "FEHLER:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Extruder Luefter:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Extruder Info" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "MMU-Fehler" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "F. autoladen" # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Fehlerstatistik" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Lueftertest" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Luefter Chk." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament extrudiert mit richtiger Farbe?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. nicht geladen" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Filamentsensor" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Filament benutzt" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Druckzeit" @@ -460,13 +475,8 @@ msgstr "Druckzeit" msgid "FS Action" msgstr "FS Aktion" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 oder neuer" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Datei unvollstaendig Trotzdem fortfahren?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Erste-Schicht Kal." # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Zunaechst fuehre ich den Selbsttest durch, um die haeufigsten Probleme beim Zusammenbau zu ueberpruefen." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Beseitigen Sie das Problem und druecken Sie dann den Knopf am MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Durchfluss" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Vorderer Luefter?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Vorne [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Vorderer/linke Luefter" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Heizung/Thermistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Heizung durch Sicherheitstimer deaktiviert." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Aufwaermen" # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Hallo, ich bin Ihr Original Prusa i3 Drucker. Moechten Sie, dass ich Sie durch den Einrich- tungsablauf fuehre?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Filament-Wechsel" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Wechsel erfolgr.!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Wechsel ok?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Pruefe Bett " # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Pruefe Endschalter" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Pruefe Duese " @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Pruefe Sensoren " # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Pruefe X Achse " # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Pruefe Y Achse " # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Pruefe Z Achse " @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Ich werde jetzt die XYZ-Kalibrierung durchfuehren. Es wird ca. 12 Minuten dauern." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Ich werde jetzt die Z Kalibrierung durchfuehren." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Infoanzeige" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Filament einlegen" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Ist das Filament geladen?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Letzte Druckfehler" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Wenn Sie zusaetzliche Stahlbleche haben, kalibrieren Sie deren Voreinstellungen unter Einstellungen - HW Setup - Stahlbleche." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Linker Luefter?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Links" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Links [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Lineare Korrektur" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Z einstellen" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Stecken Sie das Filament (nicht laden) in den Extruder und druecken Sie dann den Knopf." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Filament laden" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Lade Farbe" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Filament laedt" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Lose Riemenscheibe" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "In Druckduese laden" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Messen der Referenzhoehe des Kalibrierpunktes" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "MeshBett Ausgleich" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Temperatur wiederherstellen..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Schraeglauf" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Modus" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "MK3-Firmware am MK3S-Drucker erkannt" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Hohe leist" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 verbunden" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Achse bewegen" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Bewege X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Bewege Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Bewege Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Keine Bewegung." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Keine SD Karte" @@ -871,7 +881,7 @@ msgid "No" msgstr "Nein" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Nicht angeschlossen" @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Dreht sich nicht" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Jetzt werde ich den Abstand zwischen Duesenspitze und Druckbett kalibrieren." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Jetzt werde ich die Duese fuer PLA vorheizen." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Duese" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Alte Einstellungen gefunden. Standard PID, E-Steps u.s.w. werden gesetzt." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Testdruck jetzt von Stahlblech entfernen." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Duesevent." # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Druck pausieren" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "PID Kalib. fertig" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "PID Kalibrierung" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Legen Sie ein Blatt Papier unter die Duese waehrend der Kalibrierung der ersten 4 Punkte. Wenn die Duese das Papier erfasst, den Drucker sofort ausschalten." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Bitte reinigen Sie das Heizbett und druecken Sie dann den Knopf." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Bitte entfernen Sie ueberstehendes Filament von der Duese. Klicken wenn sauber." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Bitte pruefe:" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Bitte lesen Sie unser Handbuch und beheben Sie das Problem. Fahren Sie dann mit dem Assistenten fort, indem Sie den Drucker neu starten." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Bitte Spannrolle oeffnen und Fila- ment von Hand entfernen" @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Bitte entfernen Sie das Stahlblech vom Heizbett." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Bitte zuerst XYZ Kalibrierung ausfuehren." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Bitte warten" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Bitte zuerst Transportsicherungen entfernen." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Duese vorheizen!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Vorheizen" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Bitte aktualisieren." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Bitte druecken Sie den Knopf um die Duese vorzuheizen und fortzufahren." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Druck abgebrochen" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Heizen zum Laden" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Heizen zum Entladen" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Druckvent.:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Drucken von SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Knopf druecken zum" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Druckvent." # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Bitte legen Sie das Filament in den Extruder ein und druecken Sie dann den Knopf, um es zu laden." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Bitte stecken Sie das Filament in den ersten Schlauch der MMU und druecken Sie dann den Knopf, um es zu laden." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Bitte laden Sie zuerst das Filament." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Hinten [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Bitte entladen Sie erst das Filament und versuchen Sie es nochmal." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Bitte IR Sensor Verbindungen ueber- pruefen und Filament entladen ist." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Druck wiederherst " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset XYZ Kalibr." # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "Ruecksetzen" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Druck fortsetzen" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Druck fortgesetzt" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Rechts [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Der Assistent wird die aktuellen Kalibrierungsdaten loeschen und von vorne beginnen. Weiterfahren?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Rechts" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Suche Bett Kalibrierpunkt" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Waehle Sprache" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Selbsttest OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Selbsttest start " # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Selbsttest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Selbsttest Fehler!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Selbsttest Error " # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Selbsttest im Gang, um die genaue Rueck- kehr zum Nullpunkt ohne Sensor zu kalibrieren" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Bitte Vorheiztemperatur auswaehlen, die Ihrem Material entspricht." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Temp. einstellen:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Einstellungen" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Endschalter Status" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Sensorstatus" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Einige Dateien wur- den nicht sortiert. Max. Dateien pro Verzeichnis = 100." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Zeit" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Schwer.Schr:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Sortiere Dateien" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Laut" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Leicht.Schr:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Fehler aufgetreten, Z-Kalibrierung erforderlich..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Einmal" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Geschwindigkeit" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Dreht sich" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Stabile Umgebungs- temperatur 21-26C und feste Stand- flaeche erforderlich" # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistiken " @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "GESTOPPT." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Ausgetauscht" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Filament auswaehlen:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Temp Kalib." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Waehlen Sie die Temperatur, die zu Ihrem Material passt." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Temp. kalibrieren" # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Temperaturkalibrierung fehlgeschlagen" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Temp.kalibrierung ist fertig + aktiv. Temp.kalibrierung kann ausgeschaltet werden im Menu Einstellungen -> Temp.kal." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Sensor ueberprueft, entladen Sie jetzt das Filament." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Temperatur" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperaturen" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Es ist noch not- wendig die Z- Kalibrierung aus- zufuehren. Bitte befolgen Sie das Handbuch, Kapitel Erste Schritte, Abschnitt Kalibrierablauf." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Gesamtes Filament" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Gesamte Druckzeit" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Feineinstellung" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Gesamte Fehler" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "Filament laden" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "Filament entladen" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Gesamt" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Beim Druck benutzt" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Spannungen" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "unbekannt" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Warte auf Benutzer.." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Warten bis Heizung und Bett abgekuehlt sind" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Warten, bis PINDA- Sonde abgekuehlt ist" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Entladen Sie das Filament 1, wenn er aus dem hinteren MMU-Rohr herausragt. Verwenden Sie den Auswurf, wenn er im Rohr versteckt ist." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Warnung: Druckertyp und Platinentyp wurden beide geaendert." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Warnung: Platinentyp wurde geaendert." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Warnung: Druckertyp wurde geaendert." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Konnten Sie das Filament entnehmen?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Verdrahtungsfehler" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Assistent" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "XYZ Kal. Details" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Sie koennen den Assistenten immer im Menu neu starten: Kalibrierung -> Assistent" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "XYZ Kalibrierung in Ordnung. Schraeglauf wird automatisch korrigiert." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "XYZ Kalibrierung in Ordnung. X/Y Achsen sind etwas schraeg." @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "Verzoegerung" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "X-Korrektur:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "XYZ-Kalibrierung ok. X/Y-Achsen sind senkrecht zueinander Glueckwunsch!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "XYZ-Kalibrierung beeintraechtigt. Vordere Kalibrierpunkte nicht erreichbar." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "XYZ-Kalibrierung beeintraechtigt. Rechter vorderer Kalibrierpunkt nicht erreichbar." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Alle laden" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "XYZ-Kalibrierung fehlgeschlagen. Bett-Kalibrierpunkt nicht gefunden." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "XYZ-Kalibrierung fehlgeschlagen. Vordere Kalibrierpunkte nicht erreichbar." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "XYZ-Kalibrierung fehlgeschlagen. Rechter vorderer Kalibrierpunkt ist nicht erreichbar." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Y Entfernung vom Min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "Der Drucker beginnt mit dem Drucken einer Zickzacklinie. Drehen Sie den Knopf, bis Sie die optimale Hoehe erreicht haben. Ueberpruefen Sie die Bilder im Handbuch (Kapitel Kalibrierung)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Ueberpruefung fehl- geschlagen, entladen Sie das Filament und versuchen Sie es erneut." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Y-Korrektur:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Zurueck" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Kontrolle" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falschtriggerung" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "HW Einstellungen" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Gitter" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "MeshBett Ausgleich" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "MK3S-Firmware auf MK3-Drucker erkannt" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "MMU Modus" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Moduswechsel erfolgt..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-Code ist fuer eine neuere Firmware geslict. Bitte die Firmware updaten. Druck abgebrochen." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Heizen zum Schnitt" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Heizen zum Auswurf" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Der Durchmesser der Druckerduese weicht vom G-Code ab. Bitte ueberpruefen Sie den Wert in den Einstellungen. Druck abgebrochen." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Umbenennen" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Auswahl" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Sensor Info" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "" # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Stahlbleche" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Z-Korrektur:" diff --git a/lang/po/Firmware_es.po b/lang/po/Firmware_es.po index 1fa12ab75..ce2fcdf3e 100644 --- a/lang/po/Firmware_es.po +++ b/lang/po/Firmware_es.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Wed May 13 17:41:49 CEST 2020\n" -"PO-Revision-Date: Wed May 13 17:41:49 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:24:02 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:24:02 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Ajuste Z\x0aAjustado, continuar\x0ao empezar de nuevo?\x0a%cContinuar%cRepetir" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 o mayor" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 o mayor" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 o mas nueva" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 o mas nueva" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "estado desconocido" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " de 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] punto offset" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "ATENCION:\x0aDec. choque\x0adesactivada en\x0aModo silencio" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Cancelar" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Ajustar-Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Todo bien" @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "Haz clic" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Carros Z izq./der. estan arriba maximo?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Llevar al origen" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Carga auto. filam." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "La carga automatica solo funciona si el sensor de filamento esta activado..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "La carga automatica esta activada, pulse el dial e inserte el filamento..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Longitud del eje" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Eje" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Base / Calentador" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Calentando Base" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Corr. de la cama" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test cinturon " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Se fue la luz. ?Reanudar la impresion?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Calibrando posicion inicial" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Calibrar XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Calibrar Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Calibrar" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrando XYZ. Gira el dial para subir el extrusor hasta tocar los topes superiores. Despues haz clic." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Calibrando Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrando Z. Gira el dial para subir el extrusor hasta tocar los topes superiores. Despues haz clic." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Calibracion" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Cancelar" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Tarjeta retirada" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Color no homogeneo" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Enfriar" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Copiar idioma seleccionado?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Det. choque" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Escoge un filamento para la Calibracion de la Primera Capa y seleccionalo en el menu en pantalla." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Choque detectado." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Choque detectado. Continuar impresion?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Choque" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Actual" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Fecha:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Apagar motores" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Quieres repetir el ultimo paso para reajustar la distancia boquilla-base?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Corregir-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Expulsando filamento" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Endstop no alcanzado" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Error - se ha sobre-escrito la memoria estatica" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Corte de filament" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "ERROR: El sensor de filamento no responde, por favor comprueba la conexion." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Vent.extrusor:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Info. del extrusor" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Extruir" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Estadistica de fallos MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "Autocarg.fil." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Estadistica de fallos" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test ventiladores" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Comprob.vent" @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Es nitido el color nuevo?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. no introducido" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Sensor de filamento" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Filamento usado" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Tiempo de imp.:" @@ -460,13 +475,8 @@ msgstr "Tiempo de imp.:" msgid "FS Action" msgstr "FS accion" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 o +nueva" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Archivo incompleto. ?Continuar de todos modos?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Cal. primera cap." # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Primero, hare el Selftest para comprobar los problemas de montaje mas comunes." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Corrige el problema y pulsa el boton en la unidad MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Flujo" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Vent. frontal?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Frontal [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Ventiladores frontal/izquierdo" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Calentador/Termistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Calentadores desactivados por el temporizador de seguridad." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Calentando..." # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Hola, soy tu impresora Original Prusa i3. Quieres que te guie a traves de la configuracion?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Cambiar filamento" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Cambio correcto" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Cambio correcto?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Control base cal." # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Control endstops" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Control fusor" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Comprobando sensores" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Control sensor X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Control sensor Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Control sensor Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "Filamento" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Hare la calibracion XYZ. Tardara 12 min. aproximadamente." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Voy a hacer Calibracion Z ahora." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Monitorizar" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Introducir filamento" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Esta el filamento cargado?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Ultimas impresiones fallidas" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Si tienes planchas de acero adicionales, calibra sus ajustes en Ajustes - Ajustes HW - Planchas acero." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Vent. izquierdo?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Izquierda" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Izquierda [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Correccion de Linealidad" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Micropaso Eje Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Inserte el filamento (no lo cargue) en el extrusor y luego presione el dial." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Introducir filam." # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Cambiando color" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Introduciendo filam." # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Polea suelta" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Cargar a la boquilla" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Midiendo altura del punto de calibracion" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "Nivelacion Mesh Level" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Restaurando temperatura..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Desviacion med:" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Modo" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Firmware MK3 detectado en impresora MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Rend.pleno" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 conectado" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Mover ejes" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Mover X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Mover Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Mover Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Sin movimiento" # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "No hay tarjeta SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "No hay conexion " @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Ventilador no gira" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Voy a calibrar la distancia entre la punta de la boquilla y la superficie de la base." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Ahora precalentare la boquilla para PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Boquilla" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Se han encontrado ajustes anteriores. Se ajustara el PID, los pasos del extrusor, etc" # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Ahora retira la prueba de la lamina de acero." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Vent. capa" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Pausar impresion" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Cal. PID terminada" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Calibracion PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Colocar una hoja de papel sobre la superficie de impresion durante la calibracion de los primeros 4 puntos. Si la boquilla mueve el papel, apagar impresora inmediatamente." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Limpia la superficie de la base, por favor, y haz clic" @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Limpia boquilla para calibracion. Click cuando acabes." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Controla :" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Lee el manual y resuelve el problema. Despues, reinicia la impresora y continua con el Wizard" # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Por favor abate el rodillo de empuje (idler) y retira el filamento manualmente." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Por favor retire la chapa de acero de la base calefactable." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Por favor realiza la calibracion XYZ primero." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Por Favor Espere" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Por favor retira los soportes de envio primero." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Precalienta extrusor" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Precalentar" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Actualize por favor" # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Pulsa el dial para precalentar la boquilla y continue." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "Pausa" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Impresion cancelada" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Precalent. cargar" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Precalent. descargar" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Vent.fusor:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Menu tarjeta SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Pulsa el dial" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Vent. extr" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Por favor, coloca el filamento en el extrusor, luego presiona el dial para cargarlo." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Por favor, coloca el filamento en el primer tubo de la MMU, luego pulsa el dial para cargarlo." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Por favor, cargar primero el filamento. " # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "prusa3d.es" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Trasera [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Primero descargue el filamento, luego repita esta accion." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Por favor comprueba la conexion del IR sensor y filamento esta descargado." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Recuper. impresion " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "" # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Reanudar impres." @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Continuan. impresion" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Derecha [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Puerto RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Ejecutar el Wizard borrara los valores de calibracion actuales y comenzara de nuevo. Continuar?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Derecha" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Buscando punto de calibracion base" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Cambiar el idioma" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Iniciar Selftest" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "" # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Error Selftest !" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Fallo Selftest" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Se realizara el auto-test para calibrar con precision la vuelta a la posicion inicial sin sensores." # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Selecciona la temperatura para precalentar la boquilla que se ajuste a tu material. " # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Establecer temp.:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Configuracion" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Mostrar endstops" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Estado del sensor" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Algunos archivos no se ordenaran. Maximo 100 archivos por carpeta para ordenar. " @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Fecha" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Incl.severa:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Alfabet" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Ordenando archivos" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Alto" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Liger.incl.:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Problema encontrado, nivelacion Z forzosa ..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Una vez" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Velocidad" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Ventilador girando" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Se necesita una temperatura ambiente ente 21 y 26C y un soporte rigido." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Estadisticas " @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "PARADA" # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Soporte" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Intercambiado" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Selecciona filamento:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Cal. temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Selecciona la temperatura adecuada a tu material." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Calibracion temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Fallo de la calibracion de temperatura" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Calibracion temperatura terminada. Haz clic para continuar." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Sensor verificado, retire el filamento ahora." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Temperatura" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperaturas" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Todavia es necesario hacer una calibracion Z. Por favor siga el manual, capitulo Primeros pasos, seccion Calibracion del flujo." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filamento total" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Tiempo total" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Ajustar" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Fallos totales" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "para cargar el filamento" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "para descargar el filamento" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Usado en impresion" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Voltajes" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "desconocido" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Esperando ordenes" # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Esperando enfriamiento de la base y extrusor." # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Esperando a que se enfrie la sonda PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Usa unload para retirar el filamento 1 si sobresale por fuera de la parte trasera del tubo MMU. Usa Expulsar si esta escondido dentro del tubo" # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Aviso: tanto el tipo de impresora como el tipo de la placa han cambiado." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Cuidado: el tipo de placa ha cambiado." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Cuidado: Ha cambiado el tipo de impresora." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "?Se cargocon exito el filamento?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Error de conexion" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Detalles cal. XYZ" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Siempre puedes acceder al asistente desde Calibracion -> Wizard" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Calibracion XYZ correcta. La inclinacion se corregira automaticamente." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Calibracion XYZ correcta. Los ejes X / Y estan ligeramente inclinados. Buen trabajo!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "Expirar" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Corregir-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Calibracion XYZ ok. Ejes X/Y perpendiculares. Enhorabuena!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Calibrazion XYZ comprometida. Puntos frontales no alcanzables." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Calibrazion XYZ comprometida. Punto frontal derecho no alcanzable." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Intr. todos fil." # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Calibracion XYZ fallada. Puntos de calibracion en la base no encontrados." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Calibracion XYZ fallada. Puntos frontales no alcanzables." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Calibracion XYZ fallad. Punto frontal derecho no alcanzable." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Distancia en Y desde el min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "La impresora comenzara a imprimir una linea en zig-zag. Gira el dial hasta que la linea alcance la altura optima. Mira las fotos del manual (Capitulo de calibracion)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "La verificacion fallo, retire el filamento e intente nuevamente." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Corregir-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "atras" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Comprobaciones" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falsa activacion" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "FINDA:" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Configuracion HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Malla" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Nivelacion Malla Base" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Firmware MK3S detectado en impresora MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Modo MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Cambio de modo progresando ..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "Codigo G laminado para nuevo firmware. Por favor actualiza el firmware. Impresion cancelada." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "PINDA:" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Precalent. laminar" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Precalent. expulsar" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Diametro nozzle Impresora difiere de cod.G. Comprueba los valores en ajustes. Impresion cancelada." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Renombrar" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Seleccionar" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info sensor" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Asistido" # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Lamina de acero" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Corregir-Z:" diff --git a/lang/po/Firmware_fr.po b/lang/po/Firmware_fr.po index 7e7db4e8c..fd77f7afa 100644 --- a/lang/po/Firmware_fr.po +++ b/lang/po/Firmware_fr.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Wed May 13 17:42:13 CEST 2020\n" -"PO-Revision-Date: Wed May 13 17:42:13 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:24:37 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:24:37 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Ajust. du Z\x0aValeur enreg, contin\x0aou depart a zero?\x0a%cContinuer%cReset" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 ou +ancien" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS v0.3 ou +ancien" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 ou +recent" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS v0.4 ou +recent" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "Etat inconnu" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " de 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "Offset point [0;0]" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "ATTENTION:\x0aDetection de crash\x0adesactivee en\x0amode furtif" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Annuler" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Ajuster Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Tout est correct" @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "et appuyez sur le bouton" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Z~carriages gauche + droite tout en haut?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Mise a 0 des axes" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Autocharge du fil." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Chargement auto du filament uniquement si le capteur de filament est active." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Chargement auto. du fil. active, appuyez sur le bouton et inserez le fil." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Longueur de l'axe" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Axe" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Lit / Chauffage" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Chauffe du lit" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Corr. niveau plateau" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test de courroie " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Coupure detectee. Reprendre impression?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Calib. mise a 0" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Calibrer XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Calibrer Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Calibrer" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibration de XYZ. Tournez le bouton pour faire monter l'extrudeur dans l'axe Z jusqu'aux butees. Cliquez une fois fait." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Calibration Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibration de Z. Tournez le bouton pour faire monter l'extrudeur dans l'axe Z jusqu'aux butees. Cliquez une fois fait." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Annuler" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Carte retiree" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Couleur incorrecte" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Refroidissement" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Copier la langue choisie?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Detect.crash" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Choisissez un filament pour la Calibration de la Premiere Couche et selectionnez-le depuis le menu a l'ecran." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Crash detecte." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Crash detecte. Poursuivre l'impression?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Actuel" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Date:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Desactiver moteurs" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Voulez-vous refaire l'etape pour reajuster la hauteur entre la buse et le plateau chauffant?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Correct-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Le fil. remonte" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Butee non atteinte" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Butee" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Butees" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Erreur - la memoire statique a ete ecrasee" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Je coupe filament" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "ERREUR: Le capteur de filament ne repond pas, verifiez le branchement." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "ERREUR:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Ventilo extrudeur:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Infos extrudeur" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Extrudeur" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Stat. d'echec MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "F. autocharg." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Stat. d'echec" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test du ventilateur" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Verif vent." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament extrude et avec bonne couleur?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Filament non charge" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Capteur de filament" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Filament utilise" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Temps d'impression" @@ -460,13 +475,8 @@ msgstr "Temps d'impression" msgid "FS Action" msgstr "" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 ou +recent" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Fichier incomplet. Continuer qd meme?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Cal. 1ere couche" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "D'abord, je vais lancer le Auto-test pour verifier les problemes d'assemblage les plus communs." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Corrigez le probleme et appuyez sur le bouton sur la MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Flux" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Ventilo impr avant?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Avant [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Ventilos avt/gauche" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Chauffage/Thermistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Chauffage desactivee par le compteur de securite." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Chauffe" # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Bonjour, je suis votre imprimante Original Prusa i3. Voulez-vous que je vous guide a travers le processus d'installation?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Changer filament" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Changement reussi!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Change correctement?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Verif. plateau chauf" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Verification butees" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Verif. du hotend" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Verif. des capteurs" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Verification axe X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Verification axe Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Verification axe Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Je vais maintenant lancer la calibration XYZ. Cela prendra 12 min environ." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Je vais maintenant lancer la calibration Z." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Ecran d'info" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Inserez le filament" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Fil. est-il charge?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Echecs derniere imp." # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Si vous avez d'autres feuilles d'acier, calibrez leurs pre-reglages dans Reglages - Config HW - Plaque en acier." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Ventilo gauche?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Gauche" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Gauche [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Correction lin." @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Ajuster Z en dir." # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Veuillez inserer le filament ( ne le chargez pas) dans l'extrudeur, puis appuyez sur le bouton." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Charger filament" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Charg. de la couleur" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Chargement du fil." # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Poulie lache" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Charger la buse" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Je mesure la hauteur de reference du point de calibrage" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Rechauffage de la buse..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Deviat.mesuree" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Firmware MK3 detecte sur imprimante MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Haute puiss" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 connecte" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "Moteur" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Deplacer l'axe" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Deplacer X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Deplacer Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Deplacer Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Pas de mouvement." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Pas de carte SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "Non" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Non connecte" @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Ne tourne pas" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Maintenant je vais calibrer la distance entre la pointe de la buse et la surface du plateau chauffant." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Maintenant je vais prechauffer la buse pour du PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Buse" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Anciens reglages trouves. Le PID, les Esteps etc. par defaut seront regles" # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Retirez maintenant l'impression de test de la plaque en acier." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Vent. buse" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Pause de l'impr." @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Calib. PID terminee" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Calibration PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Placez une feuille de papier sous la buse pendant la calibration des 4 premiers points. Si la buse accroche le papier, eteignez vite l'imprimante." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Nettoyez plateau chauffant en acier et appuyez sur le bouton." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Nettoyez la buse pour la calibration. Cliquez une fois fait." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Verifiez:" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Merci de consulter notre manuel et de corriger le probleme. Poursuivez alors l'assistant en redemarrant l'imprimante." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Ouvrez l'idler et retirez le filament manuellement." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Retirez la plaque en acier du plateau chauffant." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Veuillez d'abord lancer la calibration XYZ." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Merci de patienter" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Retirez d'abord les protections de transport." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Prechauffez la buse!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Prechauffage" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Mettez a jour le FW." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Appuyez sur le bouton pour prechauffer la buse et continuer." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Impression annulee" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Chauffe pour charger" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Chauf.pour decharger" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Vent. impr:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Impr. depuis la SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "App. sur sur bouton" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Vent. impr" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Veuillez inserer le filament dans l'extrudeur, puis appuyez sur le bouton pour le charger." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Veuillez inserer le filament dans le premier tube du MMU, puis appuyez sur le bouton pour le charger." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Veuillez d'abord charger un filament." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Arriere [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "SVP, dechargez le filament et reessayez." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "SVP, verifiez la connexion du capteur IR et decharge le filament." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Recup. impression " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reinit. calib. XYZ" # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "Reinitialiser" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Reprendre impression" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Reprise de l'impr." # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Droite [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Port RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Lancement de l'Assistant supprimera les resultats actuels de calibration et commencera du debut. Continuer?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "FlshAir" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Droite" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Recherche du point de calibration du plateau chauffant" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Choisir langue" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Auto-test OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Debut auto-test" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Auto-test" # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Erreur auto-test!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Echec de l'auto-test" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Le Selftest sera lance pour calibrer la remise a zero precise sans capteur" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Selectionnez la temperature de prechauffage de la buse qui correspond a votre materiau." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Regler temp.:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Reglages" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Afficher butees" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Etat capteur" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Certains fichiers ne seront pas tries. Max 100 fichiers tries par dossier." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Heure" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Deviat.sev.:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Tri des fichiers" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Fort" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Deviat.leg.:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Probleme rencontre, cliquez sur le bouton pour niveller l'axe Z..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Une fois" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Vitesse" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Tourne" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Une temperature ambiante stable de 21-26C et un support stable sont requis." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistiques" @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ARRETE." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Echange" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Selectionnez le filament:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Calib. Temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Selectionnez la temperature qui correspond a votre materiau." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Calibration temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Echec de la calibration en temperature" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "La calibration en temperature est terminee et activee. La calibration en temperature peut etre desactivee dans le menu Reglages-> Cal. Temp." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Capteur verifie, retirez le filament maintenant." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Il faut toujours effectuer la Calibration Z. Veuillez suivre le manuel, chapitre Premiers pas, section Processus de calibration." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filament total" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Temps total impr." # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Regler" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Total des echecs" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "pour charger le fil." # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "pour decharger fil." @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Totale" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Utilise pdt impr." # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Tensions" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "inconnu" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Attente utilisateur..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Attente du refroidissement des buse et plateau chauffant" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Attente du refroidissement de la sonde PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Utilisez Remonter le fil. pour retirer le filament 1 s'il depasse du tube arriere du MMU. Utilisez ejecter s'il est cache dans le tube." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Attention: Types d'imprimante et de carte mere modifies" # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Attention: Type de carte mere modifie." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Attention: Type d'imprimante modifie" # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Dechargement du filament reussi?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Erreur de cablage" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Assistant" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Details calib. XYZ" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Vous pouvez toujours relancer l'Assistant dans Calibration > Assistant." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Calibration XYZ OK. L'ecart sera corrige automatiquement." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Calibration XYZ OK. Les axes X/Y sont legerement non perpendiculaires. Bon boulot!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Correct-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Calibration XYZ OK. Les axes X/Y sont perpendiculaires. Felicitations!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Calibration XYZ compromise. Les points de calibration en avant ne sont pas atteignables." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Calibration XYZ compromise. Le point de calibration avant droit n'est pas atteignable." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Charger un par un" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Echec calibration XYZ. Le point de calibration du plateau n'a pas ete trouve." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Echec calibration XYZ. Les points de calibration en avant ne sont pas atteignables." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Echec calibration XYZ. Le point de calibration avant droit n'est pas atteignable." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Distance Y du min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "L'imprimante commencera a imprimer une ligne en zig-zag. Tournez le bouton jusqu'a atteindre la hauteur optimale. Consultez les photos dans le manuel (chapitre Calibration)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Verification en echec, retirez le filament et reessayez." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Correct-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Retour" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Verifications" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Faux declenchement" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "FINDA:" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Config HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "IR:" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Firmware MK3S detecte sur imprimante MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Mode MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Changement de mode en cours..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "Le G-code a ete prepare pour une version plus recente du firmware. Veuillez mettre a jour le firmware. L'impression annulee." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "PINDA:" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Chauffe pour couper" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Chauf. pour remonter" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Diametre de la buse dans les reglages ne correspond pas a celui dans le G-Code. Merci de verifier le parametre dans les reglages. Impression annulee." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Renommer" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Selectionner" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info capteur" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "" # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Plaques en acier" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Correct-Z:" diff --git a/lang/po/Firmware_it.po b/lang/po/Firmware_it.po index 1e8c36ac7..2c1a41d92 100644 --- a/lang/po/Firmware_it.po +++ b/lang/po/Firmware_it.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Fri May 15 18:16:31 CEST 2020\n" -"PO-Revision-Date: Fri May 15 18:16:31 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:25:10 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:25:10 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -25,11 +25,26 @@ msgstr "[%.7s]Set valori\x0aComp. Z, continuare\x0ao iniziare da zero?\x0a%cCont msgid " 0.3 or older" msgstr " 0.3 o inferiore" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 o inferiore" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 o superiore" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 o superiore" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "stato sconosciuto" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " su 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] punto offset" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "ATTENZIONE:\x0aRilev. impatto\x0adisattivato in\x0aModalita silenziosa" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Annulla" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Compensaz. Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Nessun errore" @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "e cliccare manopola" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "I carrelli Z sin/des sono altezza max?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Trova origine" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Autocaric. filam." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Caricamento auto. filam. disp. solo con il sensore attivo..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Caricamento automatico attivo, premi la manopola e inserisci il filamento." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Lunghezza dell'asse" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Assi" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Piano/Riscald." @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Riscald. piano" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Correz. liv.piano" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test cinghie " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Blackout rilevato. Recuperare la stampa?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Calibrazione Home" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Calibra XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Calibra Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Calibra" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrazione XYZ. Ruotare la manopola per alzare il carrello Z fino all'altezza massima. Click per terminare." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Calibrando Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrazione Z. Ruotare la manopola per alzare il carrello Z fino all'altezza massima. Click per terminare." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Calibrazione" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Annulla" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "SD rimossa" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Colore non puro" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Raffredda" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Copiare la lingua selezionata?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Rileva.crash" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Scegli un filamento per la calibrazione del primo strato e selezionalo nel menu sullo schermo." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Rilevato impatto." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Scontro rilevato. Riprendere la stampa?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Impatto" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Attuale" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Data:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Disabilita motori" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Desideri ripetere l'ultimo passaggio per migliorare la distanza fra ugello e piatto?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Correzione-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Espellendo filamento" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Finec. fuori portata" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Finecorsa" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Finecorsa" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Errore - la memoria statica e' stata sovrascritta" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Tagliando filam." # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "ERRORE: il sensore filam. non risponde,Controllare conness." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "ERRORE:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Ventola estr:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Info estrusore" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Estrusore" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Stat.fall. MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "Autocar.fil." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Stat. fallimenti" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test ventola" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Control.vent" @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filamento estruso e con colore corretto?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. non caricato" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Sensore filam." # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Fil. utilizzato" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Tempo di stampa" @@ -460,13 +475,8 @@ msgstr "Tempo di stampa" msgid "FS Action" msgstr "Azione FS" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS 0.4 o superiore" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "File incompleto. Continuare comunque?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Cal. primo strato" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Per primo avviero l'autotest per controllare gli errori di assemblaggio piu comuni." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Risolvere il problema e premere il bottone sull'unita MMU. " # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Flusso" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Ventola frontale?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Fronte [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Ventola frontale/sinistra" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Riscald./Termist." # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Riscaldamento fermato dal timer di sicurezza." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Riscaldamento..." # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Ciao, sono la tua stampante Original Prusa i3. Gradiresti un aiuto nel processo di configurazione?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Cambia filamento" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Cambio riuscito!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Cambio corretto?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Verifica piano" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Verifica finecorsa" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Verifica ugello" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Controllo sensori" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Verifica asse X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Verifica asse Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Verifica asse Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "Filamento" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Adesso avviero una Calibrazione XYZ. Puo durare circa 12 min." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Adesso avviero la Calibrazione Z." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Schermata info" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Inserire filamento" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Il filamento e' stato caricato?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Fallimenti ultima stampa" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Se hai piastre d'acciaio aggiuntive, calibra i preset in Impostazioni - Setup HW - Piastre in Acciaio." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Vent SX hotend?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Sinistra" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Sinistra [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Correzione lineare" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Compensazione Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Inserire filamento (senza caricarlo) nell'estrusore e premere la manopola." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Carica filamento" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Caricando colore" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Caricando filamento" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Puleggia lenta" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Carica ugello" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Misura altezza di rif. del punto di calib." # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "Liv. grilia piano" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Ripristino temperatura... " # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Deviazione mis" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Mod." # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Firmware MK3 rilevato su stampante MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Forte" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 connessa" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "Motore" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Muovi asse" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Sposta X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Sposta Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Sposta Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Nessun movimento." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Nessuna SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Non connesso" @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Non gira" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Adesso calibro la distanza fra ugello e superfice del piatto." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Adesso preriscaldero l'ugello per PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Ugello" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Sono state trovate impostazioni vecchie. Verranno impostati i valori predefiniti di PID, Esteps etc." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Ora rimuovete la stampa di prova dalla piastra in acciaio." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Ventola estrusore" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Metti in pausa" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Calib. PID completa" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Calibrazione PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Posizionare un foglio sotto l'ugello durante la calibrazione dei primi 4 punti. In caso l'ugello muova il foglio spegnere subito la stampante." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Per favore pulisci il piatto, poi premi la manopola." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Pulire l'ugello per la calibrazione, poi fare click." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Verifica:" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Per favore consulta il nostro manuale per risolvere il problema. Poi riprendi il Wizard dopo aver riavviato la stampante." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Aprire la guida filam. e rimuovere il filam. a mano" @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Rimuovete la piastra di acciaio dal piano riscaldato" # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Esegui la calibrazione XYZ prima. " @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Attendere" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Per favore rimuovete i materiali da spedizione" @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Prerisc. ugello!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Preriscalda" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Prego aggiornare." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Premete la manopola per preriscaldare l'ugello e continuare." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "Pausa" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Stampa interrotta" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Preriscald. carico" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Preriscald. scarico" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Vent.stam:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Stampa da SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Premere la manopola" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Ventola di stampa" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Inserisci il filamento nell'estrusore, poi premi la manopola per caricarlo." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Per favore inserisci il filamento nel primo tubo del MMU, poi premi la manopola per caricarlo." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Per favore prima carica il filamento." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Retro [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Scaricare prima il filamento, poi ripetere l'operazione." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Controllare il collegamento al sensore e rimuovere il filamento." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Recupero stampa " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset calibrazione XYZ." # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Riprendi stampa" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Riprendi stampa" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Destra [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Porta RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Se avvi il Wizard perderai la calibrazione preesistente e dovrai ricominciare dall'inizio. Continuare?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Destra" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Ricerca dei punti di calibrazione del piano" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Seleziona lingua" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Autotest OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Avvia autotest" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Autotest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Errore Autotest !" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Autotest fallito" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Verra effettuato un self test per calibrare l'homing senza sensori" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Selezionate la temperatura per il preriscaldamento dell'ugello adatta al vostro materiale." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Imposta temperatura" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Impostazioni" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Stato finecorsa" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Stato sensore" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Alcuni file non saranno ordinati. Il numero massimo di file in una cartella e 100 perche siano ordinati." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Cron." # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Devia.grave:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Alfabeti" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Ordinando i file" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Forte" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Devia.lieve:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "Esaurim" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Sono stati rilevati problemi, avviato livellamento Z ..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Singolo" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Velocita" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Gira" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Sono necessari una temperatura ambiente di 21-26C e una superficie rigida " # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistiche" @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ARRESTATO." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Supporto" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Scambiato" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Seleziona il filamento:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Calib. temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Seleziona la temperatura appropriata per il tuo materiale." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Calib. Temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Calibrazione temperatura fallita" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Calibrazione temperatura completata e attiva. Puo essere disattivata dal menu Impostazioni ->Cal. Temp." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Sensore verificato, rimuovere il filamento." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperature" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "E ancora necessario effettuare la calibrazione Z. Segui il manuale, capitolo Primi Passi, sezione Sequenza di Calibrazione. " # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filamento totale" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Tempo stampa totale" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Regola" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Totale fallimenti" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "per caricare il filamento" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "per scaricare il filamento" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Totale" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Usati nella stampa" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Voltaggi" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "sconosciuto" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Attendendo utente..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "In attesa del raffreddamento dell'ugello e del piano" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "In attesa del raffreddamento della sonda PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Usate lo scaricamento per rimuovere il filamento 1 se protrude dal retro del tubo posteriore del MMu. Utilizzate l'espulsione se e nascosto nel tubo." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Attenzione: tipo di stampante e di scheda madre cambiati." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Avviso: tipo di scheda madre cambiato" # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Avviso: tipo di stampante cambiato." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Filamento scaricato con successo?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Errore cablaggio" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "XYZ Cal. dettagli" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "E possibile riprendere il Wizard in qualsiasi momento attraverso Calibrazione -> Wizard." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Calibrazione XYZ corretta. La distorsione verra compensata automaticamente." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Calibrazion XYZ corretta. Assi X/Y leggermente storti. Ben fatto!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Correzione-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Calibrazione XYZ OK. Gli assi X/Y sono perpendicolari. Complimenti!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Calibrazione XYZ compromessa. Punti anteriori non raggiungibili." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Calibrazione XYZ compromessa. Punto anteriore destro non raggiungibile." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Caricare tutti" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Calibrazione XYZ fallita. Il punto di calibrazione sul piano non e' stato trovato." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Calibrazione XYZ fallita. Punti anteriori non raggiungibili." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Calibrazione XYZ fallita. Punto anteriore destro non raggiungibile." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Distanza Y dal min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "La stampante iniziera a stampare una linea a zig-zag. Gira la manopola fino a che non hai raggiungo l'altezza ottimale. Verifica con le immagini nel manuale (capitolo sulla calibrazione):" # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Verifica fallita, rimuovere il filamento e riprovare." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Correzione-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Indietro" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Controlli" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falso innesco" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Impostazioni HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Griglia" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Liv. griglia piano" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Firmware MK3S rilevato su stampante MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Mod. MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Cambio modalita in corso ..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-code processato per un firmware piu recente. Per favore aggiorna il firmware. Stampa annullata." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Preriscalda. taglio" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Preriscalda. espuls." @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Diametro ugello diverso dal G-Code. Controlla il valore nelle impostazioni. Stampa annullata." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "atteso livello %s" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Rinomina" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Seleziona" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info Sensore" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Assist." # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Piani d'acciaio" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Correzione-Z:" diff --git a/lang/po/Firmware_pl.po b/lang/po/Firmware_pl.po index a086c4044..3de78e7f7 100644 --- a/lang/po/Firmware_pl.po +++ b/lang/po/Firmware_pl.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Fri May 15 18:16:57 CEST 2020\n" -"PO-Revision-Date: Fri May 15 18:16:57 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:25:45 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:25:45 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Live Adj. Z\x0austaw., kontynuowac\x0aczy zaczac od 0?\x0a%cKontynuuj%cReset" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 lub starszy" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 lub starszy" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 lub nowszy" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 lub nowszy" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "Stan nieznany" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " z 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] przesun.punktu" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "UWAGA:\x0aWykrywanie zderzen\x0awylaczone w\x0atrybie Stealth" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Anuluj" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Ustawianie Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Wszystko OK " @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "i nacisnij pokretlo" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Obydwa konce osi sa na szczycie?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Auto zerowanie" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Autoladowanie fil." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Autoladowanie fil. dostepne tylko gdy czujnik filamentu jest wlaczony..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Autoladowanie filamentu wlaczone, nacisnij pokretlo i wsun filament..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Dlugosc osi" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Os" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Stol / Grzanie" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Grzanie stolu.." # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Korekta stolu" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test paskow" @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Wykryto zanik napiecia. Kontynowac?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Zerowanie osi" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Kalibracja XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Kalibruj Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Kalibruj" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibracja XYZ. Przekrec pokretlo, aby przesunac os Z do gornych ogranicznikow. Nacisnij, by potwierdzic." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Kalibruje Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibracja XYZ. Przekrec pokretlo, aby przesunac os Z do gornych ogranicznikow. Nacisnij, by potwierdzic." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Kalibracja" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Anuluj" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Karta wyjeta" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Kolor zanieczysz." @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Chlodzenie" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Skopiowac wybrany jezyk?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Wykr.zderzen" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Wybierz filament do Kalibracji Pierwszej Warstwy i potwierdz w menu ekranowym." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Zderzenie wykryte" # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Wykryto zderzenie. Wznowic druk?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Zderzenie" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Aktualne" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Data:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Wylacz silniki" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "Kont." # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Chcesz powtorzyc ostatni krok i ponownie ustawic odleglosc miedzy dysza a stolikiem?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Korekcja-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Wysuwanie filamentu" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Krancowka nie aktyw." # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Krancowka" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Krancowki" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Blad - pamiec statyczna zostala nadpisana" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Obcinanie fil." # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "BLAD: Czujnik filamentu nie odpowiada, sprawdz polaczenie." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "BLAD:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "WentHotend:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Ekstruder - info" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Ekstruder" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Bledy MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "Autolad. fil." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Statystyki bledow" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test wentylatora" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Sprawd.went." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament wychodzi z dyszy,kolor jest ok?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. nie zaladowany" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Czujnik filamentu" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Uzyty filament" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Czas druku" @@ -460,13 +475,8 @@ msgstr "Czas druku" msgid "FS Action" msgstr "Akcja FS" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 lub nowszy" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Plik niekompletny. Kontynowac?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Kal. 1. warstwy" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Najpierw wlacze selftest w celu sprawdzenia najczestszych problemow podczas montazu." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Rozwiaz problem i wcisnij przycisk na MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Przeplyw" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Przedni went. druku?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Przod [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Przedni/lewy wentylator" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Grzalka/Termistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Grzanie wylaczone przez wyl. czasowy" @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Grzanie..." # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Czesc, jestem Twoja drukarka Original Prusa i3. Czy potrzebujesz pomocy z ustawieniem?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Wymiana filamentu" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Wymiana ok!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Wymiana ok?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Kontrola stolu" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Kontrola krancowek" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Kontrola hotendu" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Kontrola czujnikow" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Kontrola osi X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Kontrola osi Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Kontrola osi Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Przeprowadze teraz kalibracje XYZ. Zajmie ok. 12 min." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Przeprowadze kalibracje Z." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Ekran informacyjny" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Wprowadz filament" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Filament jest zaladowany?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Ostatnie bledy druku" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Jesli masz dodatkowe plyty stalowe, to skalibruj ich ustawienia w menu Ustawienia - Ustawienia HW - Plyty stalowe." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Lewy went hotendu?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Lewa" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Lewo [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Korekcja liniowa" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Ustaw. Live Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Wsun filament (nie uzywaj funkcji ladowania) do ekstrudera i nacisnij pokretlo." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Ladowanie fil." # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Czyszcz. koloru" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Laduje filament" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Luzne kolo pasowe" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Zaladuj do dyszy" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Okreslam wysokosc odniesienia punktu kalibracyjnego" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "Poziomowanie stolu wg siatki" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Wznawiam nagrzewanie..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Zmierzony skos" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Tryb" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Wykryto firmware MK3 w drukarce MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Wysoka wyd." # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU podlaczone" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "Silnik" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Ruch osi" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Ruch osi X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Ruch osi Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Ruch osi Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Brak ruchu." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Brak karty SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "Nie" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Nie podlaczono " @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Nie kreci sie" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Kalibruje odleglosc miedzy koncowka dyszy a powierzchnia druku." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Nagrzewam dysze dla PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Dysza" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Znaleziono stare ustawienia. Zostana przywrocone domyslne ust. PID, Esteps, itp." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Teraz zdejmij wydruk testowy ze stolu." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "WentHotend" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Wstrzymanie wydruku" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Kal. PID zakonczona" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Kalibracja PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Umiesc kartke papieru na stole roboczym i podczas pomiaru pierwszych 4 punktow. Jesli dysza zahaczy o papier, natychmiast wylacz drukarke." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Oczysc powierzchnie druku i nacisnij pokretlo." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Dla prawidlowej kalibracji nalezy oczyscic dysze. Potwierdz guzikiem." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Sprawdz :" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Przeczytaj nasz Podrecznik druku 3D aby naprawic problem. Potem wznow Asystenta przez restart drukarki." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Prosze odciagnac dzwignie dociskowa ekstrudera i recznie usunac filament." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Prosze zdjac plyte stalowa z podgrzewanego stolu." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Prosze najpierw uruchomic kalibracje XYZ" @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Prosze czekac" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Najpierw usun zabezpieczenia transportowe" @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Nagrzej dysze!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Grzanie" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Prosze zaktualizowac." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Wcisnij pokretlo aby rozgrzac dysze i kontynuowac." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "Pauza" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Druk przerwany" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Nagrzew.do ladowania" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Nagrzew. do rozlad." # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "WentWydruk:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Druk z karty SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Wcisnij pokretlo" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "WentWydruk" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Wsun filament do ekstrudera i nacisnij pokretlo, aby go zaladowac." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Wsun filament do pierwszego kanalu w MMU2 i nacisnij pokretlo, aby go zaladowac." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Najpierw zaladuj filament." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Tyl [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Najpierw rozladuj filament, nastepnie powtorz czynnosc." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Sprawdz polaczenie czujnika IR, rozladuj filament, jesli zaladowany." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Wznawianie wydruku " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset kalibr. XYZ" # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Wznowic wydruk" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Wznawianie druku" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Prawo [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Port RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Wlaczenie Asystenta usunie obecne dane kalibracyjne i zacznie od poczatku. Kontynuowac?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Prawa" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Szukam punktu kalibracyjnego na stole" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Wybor jezyka" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Selftest OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Selftest startuje" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Selftest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Blad selftest!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Selftest nieudany" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Zostanie uruchomiony Selftest aby dokladnie skalibrowac punkt bazowy bez krancowek" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Wybierz temperature grzania dyszy odpowiednia dla materialu." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Ustaw temperature:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Ustawienia" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Pokaz krancowki" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Stan czujnikow" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Niektore pliki nie zostana posortowane. Max. liczba plikow w 1 folderze = 100." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Czas" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Znaczny skos:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Alfab" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Sortowanie plikow" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Glosny" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Lekki skos:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "Konce f" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Wykryto problem, wymuszono poziomowanie osi Z." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "1-raz" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Predkosc" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Kreci sie" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Potrzebna jest stabilna temperatura otoczenia 21-26C i stabilne podloze." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statystyki" @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ZATRZYMANO." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Wsparcie" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Zamieniono" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Wybierz filament:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Kalib. temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Wybierz temperature, ktora odpowiada Twojemu filamentowi." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Kalibracja temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Kalibracja temperaturowa nieudana" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Kalibracja temperaturowa zakonczona i wlaczona. Moze byc wylaczona z menu Ustawienia -> Kalibracja temp." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Czujnik sprawdzony, wyciagnij filament." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Temperatura" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperatury" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Musimy przeprowadzic kalibracje Z. Kieruj sie Samouczkiem: rozdzial Pierwsze Kroki, sekcja Kalibracja." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Zuzycie filamentu" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Laczny czas druku" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Strojenie" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Suma bledow" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "aby zaladow. fil." # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "aby rozlad. filament" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Suma" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Uzyte podczas druku" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Napiecia" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "nieznane" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Czekam na uzytkownika..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Oczekiwanie na wychlodzenie dyszy i stolu" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Czekam az spadnie temp. sondy PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Uzyj opcji Rozladuj jesli filament wystaje z tylnej rurki MMU. Uzyj opcji Wysun jesli wciaz jest w srodku." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Ostrzezenie: typ drukarki i plyta glowna ulegly zmianie." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Ostrzezenie: plyta glowna ulegla zmianie." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Ostrzezenie: rodzaj drukarki ulegl zmianie" # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Rozladowanie fil. ok?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Blad polaczenia" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Asystent" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Szczegoly kal. XYZ" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Zawsze mozesz uruchomic Asystenta ponownie przez Kalibracja -> Asystent." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Kalibracja XYZ pomyslna. Skos bedzie automatycznie korygowany." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Kalibracja XYZ prawidlowa. Osie X/Y lekko skosne. Dobra robota!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "Wyl. czas." # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Korekcja-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Kalibracja XYZ ok. Osie X/Y sa prostopadle. Gratulacje!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Kalibr. XYZ niedokladna. Przednie punkty kalibr. nieosiagalne." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Kalibracja XYZ niedokladna. Prawy przedni punkt nieosiagalny." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Zalad. wszystkie" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Kalibracja XYZ nieudana. Nie znaleziono punktow kalibracyjnych." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Kalibr. XYZ nieudana. Przednie punkty kalibr. nieosiagalne. Nalezy poprawic montaz drukarki." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Kalibr. XYZ nieudana. Prawy przedni punkt nieosiagalny. Nalezy poprawic montaz drukarki." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Dystans od 0 w osi Y" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "Drukarka zacznie drukowanie linii w ksztalcie zygzaka. Ustaw optymalna wysokosc obracajac pokretlo. Porownaj z ilustracjami w Podreczniku (rozdzial Kalibracja)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Niepowodzenie sprawdzenia, wyciagnij filament i sprobuj ponownie." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Korekcja-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Wstecz" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Testy" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falszywy alarm" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Ustawienia HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Siatka" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Poziomowanie stolu" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Wykryto firmware MK3S w drukarce MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Tryb MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Trwa zmiana trybu..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-code pociety dla nowszego firmware. Zaktualizuj firmware. Druk anulowany." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Nagrzew. obciecia" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Nagrzew. wysuniecia" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Srednica dyszy rozni sie od tej w G-code. Sprawdz ustawienia. Druk anulowany." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "Oczekiwano wersji %s" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Zmien nazwe" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Wybierz" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info o sensorach" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Asyst." # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Plyty stalowe" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Korekcja-Z:" diff --git a/lang/po/new/cs.po b/lang/po/new/cs.po index e1f8932ae..dda52924b 100644 --- a/lang/po/new/cs.po +++ b/lang/po/new/cs.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cs\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Wed May 13 17:41:02 CEST 2020\n" -"PO-Revision-Date: Wed May 13 17:41:02 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:22:53 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:22:53 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Doladeni Z\x0auz nastaveno, pouzit\x0anebo reset od nuly?\x0a%cPokracovat%cReset" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 nebo starsi" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 nebo starsi" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 nebo novejsi" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 a novejsi" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "neznamy stav" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " z 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] odsazeni bodu" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "POZOR:\x0aCrash detekce\x0adeaktivovana ve\x0aStealth modu" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Zrusit" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Doladeni Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Vse OK " @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "a stisknete tlacitko" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Dojely oba Z voziky k~hornimu dorazu?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "AutoZavedeni fil." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Automaticke zavadeni filamentu je mozne pouze pri zapnutem filament senzoru..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Automaticke zavadeni filamentu aktivni, stisknete tlacitko a vlozte filament..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Delka osy" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Osa" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Podlozka / Topeni" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Zahrivani bedu" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Korekce podlozky" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test remenu " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Detekovan vypadek proudu.Obnovit tisk?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Kalibruji vychozi poz." # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Kalibrace XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Kalibrovat Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Zkalibrovat" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibrace XYZ. Otacenim tlacitka posunte Z osu az k~hornimu dorazu. Potvrdte tlacitkem." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Kalibruji Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibrace Z. Otacenim tlacitka posunte Z osu az k~hornimu dorazu. Potvrdte tlacitkem." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Kalibrace" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Zrusit" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Karta vyjmuta" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Barva neni cista" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Zchladit" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Kopirovat vybrany jazyk?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Zvolte filament pro kalibraci prvni vrstvy z nasledujiciho menu" @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Detekovan naraz." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Detekovan naraz. Obnovit tisk?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Naraz" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Pouze aktualni" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Datum:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Vypnout motory" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "Pokr." # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Chcete opakovat posledni krok a pozmenit vzdalenost mezi tryskou a podlozkou?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Korekce E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Vysouvam filament" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Kon. spinac nesepnut" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Koncovy spinac" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Konc. spinace" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Chyba - Doslo k prepisu staticke pameti!" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Strihani filamentu" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "CHYBA: Filament senzor nereaguje, zkontrolujte prosim zapojeni." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "CHYBA:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Levy vent.:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Selhani MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "F. autozav." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Selhani" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test ventilatoru" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Kontr. vent." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament vytlacen a spravne barvy?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Filament nezaveden" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Senzor filamentu" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Spotrebovano filam." # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Cas tisku" @@ -460,13 +475,8 @@ msgstr "Cas tisku" msgid "FS Action" msgstr "FS reakce" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 a novejsi" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Soubor nekompletni. Pokracovat?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Kal. prvni vrstvy" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Nejdriv pomoci selftestu zkontoluji nejcastejsi chyby vznikajici pri sestaveni tiskarny." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Opravte chybu a pote stisknete tlacitko na jednotce MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Prutok" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Predni tiskovy vent?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Vpredu [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Predni/levy vent." # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Topeni/Termistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Zahrivani preruseno bezpecnostnim casovacem." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Zahrivani" # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Dobry den, jsem vase tiskarna Original Prusa i3. Chcete abych Vas provedla kalibracnim procesem?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Vymenit filament" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Zmena uspesna!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Vymena ok?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Kontrola podlozky" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Kontrola endstopu" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Kontrola hotend " @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Kontrola senzoru" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Kontrola osy X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Kontrola osy Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Kontrola osy Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Nyni provedu xyz kalibraci. Zabere to priblizne 12 min." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Nyni provedu z kalibraci." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Informace" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Vlozte filament" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Je filament zaveden?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Selhani posl. tisku" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Mate-li vice tiskovych platu, kalibrujte je v menu Nastaveni - HW nastaveni - Tiskove platy" @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Levy vent na trysce?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Vlevo" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Vlevo [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Korekce lin." @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Doladeni osy Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Vlozte filament (nezavadejte) do extruderu a stisknete tlacitko" @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Zavest filament" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Cisteni barvy" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Zavadeni filamentu" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Uvolnena remenicka" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Zavest do trysky" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Merim referencni vysku kalibracniho bodu" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Pokracuji v nahrivani..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Merene zkoseni" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Mod" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Vys. vykon" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 pripojeno" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Posunout osu" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Posunout X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Posunout Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Posunout Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Bez pohybu." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Zadna SD karta" @@ -871,7 +881,7 @@ msgid "No" msgstr "Ne" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Nezapojeno " @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Netoci se" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Nyni zkalibruji vzdalenost mezi koncem trysky a povrchem podlozky." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Nyni predehreji trysku pro PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Tryska" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Neplatne hodnoty nastaveni. Bude pouzito vychozi PID, Esteps atd." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Nyni odstrante testovaci vytisk z tiskoveho platu." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Vent. trysky" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Pozastavit tisk" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "PID kal. ukoncena" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "PID kalibrace" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Umistete list papiru na podlozku a udrzujte jej pod tryskou behem mereni prvnich 4 bodu. Pokud tryska zachyti papir, okamzite vypnete tiskarnu." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Prosim ocistete podlozku a stisknete tlacitko." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Pro uspesnou kalibraci ocistete prosim tiskovou trysku. Potvrdte tlacitkem." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Zkontrolujte :" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Prosim nahlednete do prirucky 3D tiskare a opravte problem. Pote obnovte Pruvodce restartovanim tiskarny." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Prosim otevrete idler a manualne odstrante filament." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Odstrante prosim tiskovy plat z podlozky." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Nejprve spustte kalibraci XYZ." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Prosim cekejte" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Nejprve prosim sundejte transportni soucastky." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Predehrejte trysku!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Predehrev" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Prosim aktualizujte." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Pro nahrati trysky a pokracovani stisknete tlacitko." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Tisk prerusen" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Predehrev k zavedeni" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Predehrev k vyjmuti" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Tiskovy vent.:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Tisk z SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Stisknete hl. tlacitko" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Tiskovy vent." # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Prosim vlozte filament do extruderu a stisknete tlacitko k jeho zavedeni" # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Prosim vlozte filament do prvni trubicky MMU a stisknete tlacitko k jeho zavedeni" # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Prosim nejdriv zavedte filament" # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Vzadu [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Prosim vyjmete filament a zopakujte tuto akci" +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Prosim zkontrolujte zapojeni IR senzoru a vyjmuty filament" + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Obnovovani tisku " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset XYZ kalibr." # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Pokracovat" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Obnoveni tisku" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Vpravo [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Spusteni Pruvodce vymaze ulozene vysledky vsech kalibraci a spusti kalibracni proces od zacatku. Pokracovat?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Vpravo" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Hledam kalibracni bod podlozky" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Vyber jazyka" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Self test start " # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Selftest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Chyba Selftestu!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Selftest selhal " # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Pro kalibraci presneho rehomovani bude nyni spusten selftest." # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Vyberte teplotu predehrati trysky ktera odpovida vasemu materialu." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Nastavte teplotu:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Nastaveni" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Stav konc. spin." # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Stav senzoru" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Nektere soubory nebudou setrideny. Maximalni pocet souboru ve slozce pro setrideni je 100." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Cas" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Tezke zkoseni:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Abeceda" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Trideni souboru" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Hlasity" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Lehke zkoseni:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Vyskytl se problem, srovnavam osu Z ..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Jednou" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Rychlost" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Toci se" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Je vyzadovana stabilni pokojova teplota 21-26C a pevna podlozka." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistika " @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ZASTAVENO." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Podpora" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Prohozene" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Zvolte filament:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Tepl. kal." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Zvolte teplotu, ktera odpovida vasemu materialu." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Teplot. kalibrace" # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Teplotni kalibrace selhala" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Teplotni kalibrace dokoncena a je nyni aktivni. Teplotni kalibraci je mozno deaktivovat v menu Nastaveni->Tepl. kal." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Senzor overen, vyjmete filament." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Teplota" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Teploty" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Je potreba kalibrovat osu Z. Prosim postupujte dle prirucky, kapitola Zaciname, sekce Postup kalibrace." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filament celkem" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Celkovy cas tisku" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Ladit" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Celkem selhani" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "k zavedeni filamentu" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "k vyjmuti filamentu" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Celkem" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Pouzite behem tisku" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Napeti" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "neznamy" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Ceka se na uzivatele..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Cekani na zchladnuti trysky a podlozky." # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Cekani na zchladnuti PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Pouzijte vyjmout pro odstraneni filamentu 1 pokud presahuje z PTFE trubicky za tiskarnou. Pouzijte vysunout, pokud neni videt." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Varovani: doslo ke zmene typu tiskarny a motherboardu." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Varovani: doslo ke zmene typu motherboardu." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Varovani: doslo ke zmene typu tiskarny." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Bylo vysunuti filamentu uspesne?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Chyba zapojeni" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Pruvodce" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Detaily XYZ kal." @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Pruvodce muzete kdykoliv znovu spustit z menu Kalibrace -> Pruvodce" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Kalibrace XYZ v poradku. Zkoseni bude automaticky vyrovnano pri tisku." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Kalibrace XYZ v poradku. X/Y osy mirne zkosene. Dobra prace!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Korekce X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Kalibrace XYZ v poradku. X/Y osy jsou kolme. Gratuluji!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Kalibrace XYZ nepresna. Predni kalibracni body moc vpredu." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Kalibrace XYZ nepresna. Pravy predni bod moc vpredu." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Zavest vse" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Kalibrace XYZ selhala. Kalibracni bod podlozky nenalezen." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Kalibrace XYZ selhala. Predni kalibracni body moc vpredu. Srovnejte tiskarnu." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Kalibrace XYZ selhala. Pravy predni bod moc vpredu. Srovnejte tiskarnu." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Y vzdalenost od min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "Tiskarna zacne tisknout lomenou caru. Otacenim tlacitka nastavte optimalni vysku. Postupujte podle obrazku v handbooku (kapitola Kalibrace)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Overeni selhalo, vyjmete filament a zkuste znovu." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Korekce Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Zpet" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Kontrola" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falesne spusteni" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "HW nastaveni" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Mesh Bed Leveling" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "MK3S firmware detekovan na tiskarne MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "MMU mod" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Probiha zmena modu..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-code je pripraven pro novejsi firmware. Prosim aktualizujte firmware. Tisk zrusen." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Predehrev ke strihu" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Predehrev k vysunuti" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Prumer trysky tiskarny se lisi od G-code. Prosim zkontrolujte nastaveni. Tisk zrusen." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Prejmenovat" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Vybrat" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Senzor info" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Asist." # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Tiskove platy" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Korekce Z:" diff --git a/lang/po/new/de.po b/lang/po/new/de.po index 7745bde85..dc3c21284 100644 --- a/lang/po/new/de.po +++ b/lang/po/new/de.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Fri May 15 16:44:45 CEST 2020\n" -"PO-Revision-Date: Fri May 15 16:44:45 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:23:29 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:23:29 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Z Einstell.\x0aWert gesetzt,weiter\x0aoder mit 0 beginnen?\x0a%cWeiter%cNeu beginnen" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 oder aelter" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 oder aelter" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 oder neuer" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 oder neuer" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "Status unbekannt" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " von 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] Punktversatz" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "WARNUNG:\x0aCrash Erkennung\x0adeaktiviert im\x0aStealth Modus" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Abbruch" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Z Anpassen:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Alles richtig " @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "und Knopf druecken" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Sind linke+rechte Z- Schlitten ganz oben?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Startposition" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "AutoLaden Filament" # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Automatisches Laden Filament nur bei eingeschaltetem Fil. sensor verfuegbar..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Automatisches Laden Filament ist aktiv, Knopf druecken und Filament einlegen..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Achsenlaenge" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Achse" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Bett / Heizung" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Bett aufwaermen" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Ausgleich Bett ok" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Riementest " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Stromausfall! Druck wiederherstellen?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Kalibriere Start" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Kalibrierung XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Kalibrierung Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Kalibrieren" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "XYZ Kalibrieren: Drehen Sie den Knopf bis der obere Anschlag erreicht wird. Anschliessend den Knopf druecken." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Kalibrierung Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Z Kalibrieren: Drehen Sie den Knopf bis der obere Anschlag erreicht wird. Anschliessend den Knopf druecken." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Kalibrierung" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Abbruch" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "SD Karte entfernt" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Falsche Farbe" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Abkuehlen" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Gewaehlte Sprache kopieren?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Crash Erk." # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Waehlen Sie ein Filament fuer Erste Schichtkalibrierung aus und waehlen Sie es im On-Screen-Menu aus." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Crash erkannt." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Crash erkannt. Druck fortfuehren?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Aktuelles" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Datum:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Motoren aus" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Moechten Sie den letzten Schritt wiederholen, um den Abstand zwischen Duese und Druckbett neu einzustellen?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "E-Korrektur:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "werfe Filament aus" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Ende nicht getroffen" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Endanschlag" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Endschalter" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Fehler - statischer Speicher wurde ueberschrieben" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Schneide filament" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "FEHLER: Filament- sensor reagiert nicht, bitte Verbindung pruefen." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "FEHLER:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Extruder Luefter:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Extruder Info" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "MMU-Fehler" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "F. autoladen" # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Fehlerstatistik" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Lueftertest" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Luefter Chk." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament extrudiert mit richtiger Farbe?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. nicht geladen" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Filamentsensor" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Filament benutzt" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Druckzeit" @@ -460,13 +475,8 @@ msgstr "Druckzeit" msgid "FS Action" msgstr "FS Aktion" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 oder neuer" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Datei unvollstaendig Trotzdem fortfahren?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Erste-Schicht Kal." # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Zunaechst fuehre ich den Selbsttest durch, um die haeufigsten Probleme beim Zusammenbau zu ueberpruefen." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Beseitigen Sie das Problem und druecken Sie dann den Knopf am MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Durchfluss" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Vorderer Luefter?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Vorne [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Vorderer/linke Luefter" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Heizung/Thermistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Heizung durch Sicherheitstimer deaktiviert." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Aufwaermen" # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Hallo, ich bin Ihr Original Prusa i3 Drucker. Moechten Sie, dass ich Sie durch den Einrich- tungsablauf fuehre?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Filament-Wechsel" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Wechsel erfolgr.!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Wechsel ok?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Pruefe Bett " # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Pruefe Endschalter" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Pruefe Duese " @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Pruefe Sensoren " # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Pruefe X Achse " # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Pruefe Y Achse " # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Pruefe Z Achse " @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Ich werde jetzt die XYZ-Kalibrierung durchfuehren. Es wird ca. 12 Minuten dauern." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Ich werde jetzt die Z Kalibrierung durchfuehren." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Infoanzeige" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Filament einlegen" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Ist das Filament geladen?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Letzte Druckfehler" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Wenn Sie zusaetzliche Stahlbleche haben, kalibrieren Sie deren Voreinstellungen unter Einstellungen - HW Setup - Stahlbleche." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Linker Luefter?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Links" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Links [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Lineare Korrektur" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Z einstellen" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Stecken Sie das Filament (nicht laden) in den Extruder und druecken Sie dann den Knopf." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Filament laden" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Lade Farbe" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Filament laedt" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Lose Riemenscheibe" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "In Druckduese laden" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Messen der Referenzhoehe des Kalibrierpunktes" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "MeshBett Ausgleich" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Temperatur wiederherstellen..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Schraeglauf" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Modus" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "MK3-Firmware am MK3S-Drucker erkannt" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Hohe leist" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 verbunden" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Achse bewegen" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Bewege X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Bewege Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Bewege Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Keine Bewegung." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Keine SD Karte" @@ -871,7 +881,7 @@ msgid "No" msgstr "Nein" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Nicht angeschlossen" @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Dreht sich nicht" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Jetzt werde ich den Abstand zwischen Duesenspitze und Druckbett kalibrieren." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Jetzt werde ich die Duese fuer PLA vorheizen." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Duese" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Alte Einstellungen gefunden. Standard PID, E-Steps u.s.w. werden gesetzt." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Testdruck jetzt von Stahlblech entfernen." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Duesevent." # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Druck pausieren" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "PID Kalib. fertig" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "PID Kalibrierung" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Legen Sie ein Blatt Papier unter die Duese waehrend der Kalibrierung der ersten 4 Punkte. Wenn die Duese das Papier erfasst, den Drucker sofort ausschalten." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Bitte reinigen Sie das Heizbett und druecken Sie dann den Knopf." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Bitte entfernen Sie ueberstehendes Filament von der Duese. Klicken wenn sauber." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Bitte pruefe:" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Bitte lesen Sie unser Handbuch und beheben Sie das Problem. Fahren Sie dann mit dem Assistenten fort, indem Sie den Drucker neu starten." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Bitte Spannrolle oeffnen und Fila- ment von Hand entfernen" @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Bitte entfernen Sie das Stahlblech vom Heizbett." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Bitte zuerst XYZ Kalibrierung ausfuehren." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Bitte warten" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Bitte zuerst Transportsicherungen entfernen." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Duese vorheizen!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Vorheizen" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Bitte aktualisieren." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Bitte druecken Sie den Knopf um die Duese vorzuheizen und fortzufahren." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Druck abgebrochen" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Heizen zum Laden" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Heizen zum Entladen" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Druckvent.:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Drucken von SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Knopf druecken zum" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Druckvent." # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Bitte legen Sie das Filament in den Extruder ein und druecken Sie dann den Knopf, um es zu laden." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Bitte stecken Sie das Filament in den ersten Schlauch der MMU und druecken Sie dann den Knopf, um es zu laden." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Bitte laden Sie zuerst das Filament." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Hinten [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Bitte entladen Sie erst das Filament und versuchen Sie es nochmal." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Bitte IR Sensor Verbindungen ueber- pruefen und Filament entladen ist." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Druck wiederherst " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset XYZ Kalibr." # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "Ruecksetzen" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Druck fortsetzen" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Druck fortgesetzt" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Rechts [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Der Assistent wird die aktuellen Kalibrierungsdaten loeschen und von vorne beginnen. Weiterfahren?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Rechts" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Suche Bett Kalibrierpunkt" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Waehle Sprache" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Selbsttest OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Selbsttest start " # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Selbsttest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Selbsttest Fehler!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Selbsttest Error " # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Selbsttest im Gang, um die genaue Rueck- kehr zum Nullpunkt ohne Sensor zu kalibrieren" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Bitte Vorheiztemperatur auswaehlen, die Ihrem Material entspricht." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Temp. einstellen:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Einstellungen" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Endschalter Status" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Sensorstatus" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Einige Dateien wur- den nicht sortiert. Max. Dateien pro Verzeichnis = 100." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Zeit" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Schwer.Schr:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Sortiere Dateien" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Laut" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Leicht.Schr:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Fehler aufgetreten, Z-Kalibrierung erforderlich..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Einmal" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Geschwindigkeit" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Dreht sich" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Stabile Umgebungs- temperatur 21-26C und feste Stand- flaeche erforderlich" # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistiken " @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "GESTOPPT." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Ausgetauscht" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Filament auswaehlen:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Temp Kalib." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Waehlen Sie die Temperatur, die zu Ihrem Material passt." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Temp. kalibrieren" # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Temperaturkalibrierung fehlgeschlagen" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Temp.kalibrierung ist fertig + aktiv. Temp.kalibrierung kann ausgeschaltet werden im Menu Einstellungen -> Temp.kal." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Sensor ueberprueft, entladen Sie jetzt das Filament." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Temperatur" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperaturen" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Es ist noch not- wendig die Z- Kalibrierung aus- zufuehren. Bitte befolgen Sie das Handbuch, Kapitel Erste Schritte, Abschnitt Kalibrierablauf." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Gesamtes Filament" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Gesamte Druckzeit" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Feineinstellung" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Gesamte Fehler" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "Filament laden" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "Filament entladen" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Gesamt" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Beim Druck benutzt" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Spannungen" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "unbekannt" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Warte auf Benutzer.." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Warten bis Heizung und Bett abgekuehlt sind" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Warten, bis PINDA- Sonde abgekuehlt ist" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Entladen Sie das Filament 1, wenn er aus dem hinteren MMU-Rohr herausragt. Verwenden Sie den Auswurf, wenn er im Rohr versteckt ist." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Warnung: Druckertyp und Platinentyp wurden beide geaendert." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Warnung: Platinentyp wurde geaendert." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Warnung: Druckertyp wurde geaendert." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Konnten Sie das Filament entnehmen?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Verdrahtungsfehler" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Assistent" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "XYZ Kal. Details" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Sie koennen den Assistenten immer im Menu neu starten: Kalibrierung -> Assistent" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "XYZ Kalibrierung in Ordnung. Schraeglauf wird automatisch korrigiert." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "XYZ Kalibrierung in Ordnung. X/Y Achsen sind etwas schraeg." @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "Verzoegerung" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "X-Korrektur:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "XYZ-Kalibrierung ok. X/Y-Achsen sind senkrecht zueinander Glueckwunsch!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "XYZ-Kalibrierung beeintraechtigt. Vordere Kalibrierpunkte nicht erreichbar." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "XYZ-Kalibrierung beeintraechtigt. Rechter vorderer Kalibrierpunkt nicht erreichbar." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Alle laden" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "XYZ-Kalibrierung fehlgeschlagen. Bett-Kalibrierpunkt nicht gefunden." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "XYZ-Kalibrierung fehlgeschlagen. Vordere Kalibrierpunkte nicht erreichbar." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "XYZ-Kalibrierung fehlgeschlagen. Rechter vorderer Kalibrierpunkt ist nicht erreichbar." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Y Entfernung vom Min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "Der Drucker beginnt mit dem Drucken einer Zickzacklinie. Drehen Sie den Knopf, bis Sie die optimale Hoehe erreicht haben. Ueberpruefen Sie die Bilder im Handbuch (Kapitel Kalibrierung)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Ueberpruefung fehl- geschlagen, entladen Sie das Filament und versuchen Sie es erneut." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Y-Korrektur:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Zurueck" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Kontrolle" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falschtriggerung" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "HW Einstellungen" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Gitter" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "MeshBett Ausgleich" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "MK3S-Firmware auf MK3-Drucker erkannt" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "MMU Modus" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Moduswechsel erfolgt..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-Code ist fuer eine neuere Firmware geslict. Bitte die Firmware updaten. Druck abgebrochen." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Heizen zum Schnitt" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Heizen zum Auswurf" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Der Durchmesser der Druckerduese weicht vom G-Code ab. Bitte ueberpruefen Sie den Wert in den Einstellungen. Druck abgebrochen." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Umbenennen" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Auswahl" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Sensor Info" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "" # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Stahlbleche" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Z-Korrektur:" diff --git a/lang/po/new/es.po b/lang/po/new/es.po index 1fa12ab75..ce2fcdf3e 100644 --- a/lang/po/new/es.po +++ b/lang/po/new/es.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Wed May 13 17:41:49 CEST 2020\n" -"PO-Revision-Date: Wed May 13 17:41:49 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:24:02 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:24:02 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Ajuste Z\x0aAjustado, continuar\x0ao empezar de nuevo?\x0a%cContinuar%cRepetir" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 o mayor" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 o mayor" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 o mas nueva" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 o mas nueva" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "estado desconocido" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " de 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] punto offset" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "ATENCION:\x0aDec. choque\x0adesactivada en\x0aModo silencio" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Cancelar" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Ajustar-Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Todo bien" @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "Haz clic" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Carros Z izq./der. estan arriba maximo?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Llevar al origen" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Carga auto. filam." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "La carga automatica solo funciona si el sensor de filamento esta activado..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "La carga automatica esta activada, pulse el dial e inserte el filamento..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Longitud del eje" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Eje" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Base / Calentador" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Calentando Base" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Corr. de la cama" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test cinturon " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Se fue la luz. ?Reanudar la impresion?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Calibrando posicion inicial" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Calibrar XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Calibrar Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Calibrar" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrando XYZ. Gira el dial para subir el extrusor hasta tocar los topes superiores. Despues haz clic." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Calibrando Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrando Z. Gira el dial para subir el extrusor hasta tocar los topes superiores. Despues haz clic." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Calibracion" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Cancelar" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Tarjeta retirada" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Color no homogeneo" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Enfriar" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Copiar idioma seleccionado?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Det. choque" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Escoge un filamento para la Calibracion de la Primera Capa y seleccionalo en el menu en pantalla." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Choque detectado." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Choque detectado. Continuar impresion?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Choque" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Actual" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Fecha:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Apagar motores" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Quieres repetir el ultimo paso para reajustar la distancia boquilla-base?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Corregir-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Expulsando filamento" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Endstop no alcanzado" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Error - se ha sobre-escrito la memoria estatica" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Corte de filament" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "ERROR: El sensor de filamento no responde, por favor comprueba la conexion." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Vent.extrusor:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Info. del extrusor" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Extruir" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Estadistica de fallos MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "Autocarg.fil." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Estadistica de fallos" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test ventiladores" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Comprob.vent" @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Es nitido el color nuevo?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. no introducido" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Sensor de filamento" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Filamento usado" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Tiempo de imp.:" @@ -460,13 +475,8 @@ msgstr "Tiempo de imp.:" msgid "FS Action" msgstr "FS accion" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 o +nueva" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Archivo incompleto. ?Continuar de todos modos?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Cal. primera cap." # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Primero, hare el Selftest para comprobar los problemas de montaje mas comunes." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Corrige el problema y pulsa el boton en la unidad MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Flujo" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Vent. frontal?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Frontal [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Ventiladores frontal/izquierdo" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Calentador/Termistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Calentadores desactivados por el temporizador de seguridad." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Calentando..." # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Hola, soy tu impresora Original Prusa i3. Quieres que te guie a traves de la configuracion?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Cambiar filamento" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Cambio correcto" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Cambio correcto?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Control base cal." # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Control endstops" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Control fusor" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Comprobando sensores" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Control sensor X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Control sensor Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Control sensor Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "Filamento" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Hare la calibracion XYZ. Tardara 12 min. aproximadamente." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Voy a hacer Calibracion Z ahora." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Monitorizar" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Introducir filamento" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Esta el filamento cargado?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Ultimas impresiones fallidas" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Si tienes planchas de acero adicionales, calibra sus ajustes en Ajustes - Ajustes HW - Planchas acero." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Vent. izquierdo?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Izquierda" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Izquierda [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Correccion de Linealidad" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Micropaso Eje Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Inserte el filamento (no lo cargue) en el extrusor y luego presione el dial." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Introducir filam." # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Cambiando color" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Introduciendo filam." # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Polea suelta" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Cargar a la boquilla" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Midiendo altura del punto de calibracion" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "Nivelacion Mesh Level" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Restaurando temperatura..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Desviacion med:" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Modo" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Firmware MK3 detectado en impresora MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Rend.pleno" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 conectado" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Mover ejes" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Mover X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Mover Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Mover Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Sin movimiento" # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "No hay tarjeta SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "No hay conexion " @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Ventilador no gira" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Voy a calibrar la distancia entre la punta de la boquilla y la superficie de la base." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Ahora precalentare la boquilla para PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Boquilla" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Se han encontrado ajustes anteriores. Se ajustara el PID, los pasos del extrusor, etc" # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Ahora retira la prueba de la lamina de acero." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Vent. capa" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Pausar impresion" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Cal. PID terminada" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Calibracion PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Colocar una hoja de papel sobre la superficie de impresion durante la calibracion de los primeros 4 puntos. Si la boquilla mueve el papel, apagar impresora inmediatamente." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Limpia la superficie de la base, por favor, y haz clic" @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Limpia boquilla para calibracion. Click cuando acabes." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Controla :" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Lee el manual y resuelve el problema. Despues, reinicia la impresora y continua con el Wizard" # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Por favor abate el rodillo de empuje (idler) y retira el filamento manualmente." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Por favor retire la chapa de acero de la base calefactable." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Por favor realiza la calibracion XYZ primero." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Por Favor Espere" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Por favor retira los soportes de envio primero." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Precalienta extrusor" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Precalentar" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Actualize por favor" # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Pulsa el dial para precalentar la boquilla y continue." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "Pausa" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Impresion cancelada" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Precalent. cargar" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Precalent. descargar" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Vent.fusor:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Menu tarjeta SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Pulsa el dial" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Vent. extr" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Por favor, coloca el filamento en el extrusor, luego presiona el dial para cargarlo." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Por favor, coloca el filamento en el primer tubo de la MMU, luego pulsa el dial para cargarlo." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Por favor, cargar primero el filamento. " # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "prusa3d.es" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Trasera [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Primero descargue el filamento, luego repita esta accion." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Por favor comprueba la conexion del IR sensor y filamento esta descargado." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Recuper. impresion " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "" # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Reanudar impres." @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Continuan. impresion" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Derecha [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Puerto RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Ejecutar el Wizard borrara los valores de calibracion actuales y comenzara de nuevo. Continuar?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Derecha" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Buscando punto de calibracion base" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Cambiar el idioma" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Iniciar Selftest" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "" # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Error Selftest !" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Fallo Selftest" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Se realizara el auto-test para calibrar con precision la vuelta a la posicion inicial sin sensores." # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Selecciona la temperatura para precalentar la boquilla que se ajuste a tu material. " # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Establecer temp.:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Configuracion" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Mostrar endstops" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Estado del sensor" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Algunos archivos no se ordenaran. Maximo 100 archivos por carpeta para ordenar. " @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Fecha" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Incl.severa:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Alfabet" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Ordenando archivos" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Alto" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Liger.incl.:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Problema encontrado, nivelacion Z forzosa ..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Una vez" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Velocidad" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Ventilador girando" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Se necesita una temperatura ambiente ente 21 y 26C y un soporte rigido." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Estadisticas " @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "PARADA" # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Soporte" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Intercambiado" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Selecciona filamento:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Cal. temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Selecciona la temperatura adecuada a tu material." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Calibracion temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Fallo de la calibracion de temperatura" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Calibracion temperatura terminada. Haz clic para continuar." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Sensor verificado, retire el filamento ahora." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Temperatura" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperaturas" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Todavia es necesario hacer una calibracion Z. Por favor siga el manual, capitulo Primeros pasos, seccion Calibracion del flujo." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filamento total" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Tiempo total" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Ajustar" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Fallos totales" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "para cargar el filamento" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "para descargar el filamento" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Usado en impresion" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Voltajes" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "desconocido" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Esperando ordenes" # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Esperando enfriamiento de la base y extrusor." # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Esperando a que se enfrie la sonda PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Usa unload para retirar el filamento 1 si sobresale por fuera de la parte trasera del tubo MMU. Usa Expulsar si esta escondido dentro del tubo" # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Aviso: tanto el tipo de impresora como el tipo de la placa han cambiado." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Cuidado: el tipo de placa ha cambiado." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Cuidado: Ha cambiado el tipo de impresora." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "?Se cargocon exito el filamento?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Error de conexion" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Detalles cal. XYZ" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Siempre puedes acceder al asistente desde Calibracion -> Wizard" # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Calibracion XYZ correcta. La inclinacion se corregira automaticamente." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Calibracion XYZ correcta. Los ejes X / Y estan ligeramente inclinados. Buen trabajo!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "Expirar" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Corregir-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Calibracion XYZ ok. Ejes X/Y perpendiculares. Enhorabuena!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Calibrazion XYZ comprometida. Puntos frontales no alcanzables." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Calibrazion XYZ comprometida. Punto frontal derecho no alcanzable." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Intr. todos fil." # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Calibracion XYZ fallada. Puntos de calibracion en la base no encontrados." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Calibracion XYZ fallada. Puntos frontales no alcanzables." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Calibracion XYZ fallad. Punto frontal derecho no alcanzable." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Distancia en Y desde el min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "La impresora comenzara a imprimir una linea en zig-zag. Gira el dial hasta que la linea alcance la altura optima. Mira las fotos del manual (Capitulo de calibracion)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "La verificacion fallo, retire el filamento e intente nuevamente." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Corregir-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "atras" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Comprobaciones" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falsa activacion" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "FINDA:" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Configuracion HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Malla" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Nivelacion Malla Base" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Firmware MK3S detectado en impresora MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Modo MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Cambio de modo progresando ..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "Codigo G laminado para nuevo firmware. Por favor actualiza el firmware. Impresion cancelada." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "PINDA:" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Precalent. laminar" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Precalent. expulsar" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Diametro nozzle Impresora difiere de cod.G. Comprueba los valores en ajustes. Impresion cancelada." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Renombrar" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Seleccionar" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info sensor" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Asistido" # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Lamina de acero" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Corregir-Z:" diff --git a/lang/po/new/fr.po b/lang/po/new/fr.po index 7e7db4e8c..fdfd39174 100644 --- a/lang/po/new/fr.po +++ b/lang/po/new/fr.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Wed May 13 17:42:13 CEST 2020\n" -"PO-Revision-Date: Wed May 13 17:42:13 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:24:37 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:24:37 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Ajust. du Z\x0aValeur enreg, contin\x0aou depart a zero?\x0a%cContinuer%cReset" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 ou +ancien" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS v0.3 ou +ancien" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 ou +recent" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS v0.4 ou +recent" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "Etat inconnu" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " de 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "Offset point [0;0]" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "ATTENTION:\x0aDetection de crash\x0adesactivee en\x0amode furtif" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Annuler" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Ajuster Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Tout est correct" @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "et appuyez sur le bouton" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Z~carriages gauche + droite tout en haut?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Mise a 0 des axes" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Autocharge du fil." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Chargement auto du filament uniquement si le capteur de filament est active." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Chargement auto. du fil. active, appuyez sur le bouton et inserez le fil." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Longueur de l'axe" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Axe" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Lit / Chauffage" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Chauffe du lit" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Corr. niveau plateau" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test de courroie " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Coupure detectee. Reprendre impression?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Calib. mise a 0" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Calibrer XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Calibrer Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Calibrer" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibration de XYZ. Tournez le bouton pour faire monter l'extrudeur dans l'axe Z jusqu'aux butees. Cliquez une fois fait." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Calibration Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibration de Z. Tournez le bouton pour faire monter l'extrudeur dans l'axe Z jusqu'aux butees. Cliquez une fois fait." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Annuler" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Carte retiree" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Couleur incorrecte" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Refroidissement" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Copier la langue choisie?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Detect.crash" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Choisissez un filament pour la Calibration de la Premiere Couche et selectionnez-le depuis le menu a l'ecran." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Crash detecte." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Crash detecte. Poursuivre l'impression?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Actuel" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Date:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Desactiver moteurs" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Voulez-vous refaire l'etape pour reajuster la hauteur entre la buse et le plateau chauffant?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Correct-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Le fil. remonte" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Butee non atteinte" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Butee" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Butees" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Erreur - la memoire statique a ete ecrasee" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Je coupe filament" # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "ERREUR: Le capteur de filament ne repond pas, verifiez le branchement." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "ERREUR:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Ventilo extrudeur:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Infos extrudeur" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Extrudeur" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Stat. d'echec MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "F. autocharg." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Stat. d'echec" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test du ventilateur" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Verif vent." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament extrude et avec bonne couleur?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Filament non charge" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Capteur de filament" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Filament utilise" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Temps d'impression" @@ -460,13 +475,8 @@ msgstr "Temps d'impression" msgid "FS Action" msgstr "" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 ou +recent" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Fichier incomplet. Continuer qd meme?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Cal. 1ere couche" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "D'abord, je vais lancer le Auto-test pour verifier les problemes d'assemblage les plus communs." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Corrigez le probleme et appuyez sur le bouton sur la MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Flux" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Ventilo impr avant?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Avant [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Ventilos avt/gauche" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Chauffage/Thermistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Chauffage desactivee par le compteur de securite." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Chauffe" # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Bonjour, je suis votre imprimante Original Prusa i3. Voulez-vous que je vous guide a travers le processus d'installation?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Changer filament" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Changement reussi!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Change correctement?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Verif. plateau chauf" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Verification butees" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Verif. du hotend" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Verif. des capteurs" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Verification axe X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Verification axe Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Verification axe Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Je vais maintenant lancer la calibration XYZ. Cela prendra 12 min environ." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Je vais maintenant lancer la calibration Z." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Ecran d'info" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Inserez le filament" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Fil. est-il charge?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Echecs derniere imp." # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Si vous avez d'autres feuilles d'acier, calibrez leurs pre-reglages dans Reglages - Config HW - Plaque en acier." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Ventilo gauche?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Gauche" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Gauche [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Correction lin." @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Ajuster Z en dir." # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Veuillez inserer le filament ( ne le chargez pas) dans l'extrudeur, puis appuyez sur le bouton." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Charger filament" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Charg. de la couleur" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Chargement du fil." # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Poulie lache" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Charger la buse" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Je mesure la hauteur de reference du point de calibrage" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Rechauffage de la buse..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Deviat.mesuree" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Firmware MK3 detecte sur imprimante MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Haute puiss" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 connecte" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "Moteur" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Deplacer l'axe" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Deplacer X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Deplacer Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Deplacer Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Pas de mouvement." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Pas de carte SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "Non" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Non connecte" @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Ne tourne pas" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Maintenant je vais calibrer la distance entre la pointe de la buse et la surface du plateau chauffant." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Maintenant je vais prechauffer la buse pour du PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Buse" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Anciens reglages trouves. Le PID, les Esteps etc. par defaut seront regles" # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Retirez maintenant l'impression de test de la plaque en acier." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Vent. buse" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Pause de l'impr." @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Calib. PID terminee" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Calibration PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Placez une feuille de papier sous la buse pendant la calibration des 4 premiers points. Si la buse accroche le papier, eteignez vite l'imprimante." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Nettoyez plateau chauffant en acier et appuyez sur le bouton." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Nettoyez la buse pour la calibration. Cliquez une fois fait." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Verifiez:" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Merci de consulter notre manuel et de corriger le probleme. Poursuivez alors l'assistant en redemarrant l'imprimante." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Ouvrez l'idler et retirez le filament manuellement." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Retirez la plaque en acier du plateau chauffant." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Veuillez d'abord lancer la calibration XYZ." @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Merci de patienter" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Retirez d'abord les protections de transport." @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Prechauffez la buse!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Prechauffage" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Mettez a jour le FW." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Appuyez sur le bouton pour prechauffer la buse et continuer." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Impression annulee" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Chauffe pour charger" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Chauf.pour decharger" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Vent. impr:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Impr. depuis la SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "App. sur sur bouton" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Vent. impr" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Veuillez inserer le filament dans l'extrudeur, puis appuyez sur le bouton pour le charger." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Veuillez inserer le filament dans le premier tube du MMU, puis appuyez sur le bouton pour le charger." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Veuillez d'abord charger un filament." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Arriere [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "SVP, dechargez le filament et reessayez." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "SVP, verifiez la connexion du capteur IR et si le filament est decharge." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Recup. impression " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reinit. calib. XYZ" # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "Reinitialiser" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Reprendre impression" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Reprise de l'impr." # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Droite [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Port RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Lancement de l'Assistant supprimera les resultats actuels de calibration et commencera du debut. Continuer?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "FlshAir" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Droite" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Recherche du point de calibration du plateau chauffant" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Choisir langue" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Auto-test OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Debut auto-test" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Auto-test" # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Erreur auto-test!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Echec de l'auto-test" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Le Selftest sera lance pour calibrer la remise a zero precise sans capteur" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Selectionnez la temperature de prechauffage de la buse qui correspond a votre materiau." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Regler temp.:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Reglages" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Afficher butees" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Etat capteur" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Certains fichiers ne seront pas tries. Max 100 fichiers tries par dossier." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Heure" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Deviat.sev.:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Tri des fichiers" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Fort" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Deviat.leg.:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Probleme rencontre, cliquez sur le bouton pour niveller l'axe Z..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Une fois" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Vitesse" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Tourne" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Une temperature ambiante stable de 21-26C et un support stable sont requis." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistiques" @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ARRETE." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Echange" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Selectionnez le filament:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Calib. Temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Selectionnez la temperature qui correspond a votre materiau." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Calibration temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Echec de la calibration en temperature" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "La calibration en temperature est terminee et activee. La calibration en temperature peut etre desactivee dans le menu Reglages-> Cal. Temp." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Capteur verifie, retirez le filament maintenant." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Il faut toujours effectuer la Calibration Z. Veuillez suivre le manuel, chapitre Premiers pas, section Processus de calibration." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filament total" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Temps total impr." # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Regler" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Total des echecs" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "pour charger le fil." # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "pour decharger fil." @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Totale" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Utilise pdt impr." # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Tensions" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "inconnu" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Attente utilisateur..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Attente du refroidissement des buse et plateau chauffant" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Attente du refroidissement de la sonde PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Utilisez Remonter le fil. pour retirer le filament 1 s'il depasse du tube arriere du MMU. Utilisez ejecter s'il est cache dans le tube." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Attention: Types d'imprimante et de carte mere modifies" # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Attention: Type de carte mere modifie." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Attention: Type d'imprimante modifie" # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Dechargement du filament reussi?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Erreur de cablage" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Assistant" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Details calib. XYZ" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Vous pouvez toujours relancer l'Assistant dans Calibration > Assistant." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Calibration XYZ OK. L'ecart sera corrige automatiquement." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Calibration XYZ OK. Les axes X/Y sont legerement non perpendiculaires. Bon boulot!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Correct-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Calibration XYZ OK. Les axes X/Y sont perpendiculaires. Felicitations!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Calibration XYZ compromise. Les points de calibration en avant ne sont pas atteignables." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Calibration XYZ compromise. Le point de calibration avant droit n'est pas atteignable." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Charger un par un" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Echec calibration XYZ. Le point de calibration du plateau n'a pas ete trouve." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Echec calibration XYZ. Les points de calibration en avant ne sont pas atteignables." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Echec calibration XYZ. Le point de calibration avant droit n'est pas atteignable." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Distance Y du min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "L'imprimante commencera a imprimer une ligne en zig-zag. Tournez le bouton jusqu'a atteindre la hauteur optimale. Consultez les photos dans le manuel (chapitre Calibration)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Verification en echec, retirez le filament et reessayez." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Correct-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Retour" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Verifications" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Faux declenchement" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "FINDA:" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Config HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "IR:" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Firmware MK3S detecte sur imprimante MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Mode MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Changement de mode en cours..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "Le G-code a ete prepare pour une version plus recente du firmware. Veuillez mettre a jour le firmware. L'impression annulee." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "PINDA:" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Chauffe pour couper" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Chauf. pour remonter" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Diametre de la buse dans les reglages ne correspond pas a celui dans le G-Code. Merci de verifier le parametre dans les reglages. Impression annulee." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Renommer" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Selectionner" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info capteur" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "" # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Plaques en acier" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Correct-Z:" diff --git a/lang/po/new/it.po b/lang/po/new/it.po index 1e8c36ac7..2c1a41d92 100644 --- a/lang/po/new/it.po +++ b/lang/po/new/it.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Fri May 15 18:16:31 CEST 2020\n" -"PO-Revision-Date: Fri May 15 18:16:31 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:25:10 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:25:10 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -25,11 +25,26 @@ msgstr "[%.7s]Set valori\x0aComp. Z, continuare\x0ao iniziare da zero?\x0a%cCont msgid " 0.3 or older" msgstr " 0.3 o inferiore" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 o inferiore" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 o superiore" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 o superiore" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "stato sconosciuto" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " su 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] punto offset" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "ATTENZIONE:\x0aRilev. impatto\x0adisattivato in\x0aModalita silenziosa" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Annulla" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Compensaz. Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Nessun errore" @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "e cliccare manopola" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "I carrelli Z sin/des sono altezza max?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Trova origine" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Autocaric. filam." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Caricamento auto. filam. disp. solo con il sensore attivo..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Caricamento automatico attivo, premi la manopola e inserisci il filamento." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Lunghezza dell'asse" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Assi" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Piano/Riscald." @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Riscald. piano" # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Correz. liv.piano" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test cinghie " @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Blackout rilevato. Recuperare la stampa?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Calibrazione Home" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Calibra XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Calibra Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Calibra" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrazione XYZ. Ruotare la manopola per alzare il carrello Z fino all'altezza massima. Click per terminare." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Calibrando Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Calibrazione Z. Ruotare la manopola per alzare il carrello Z fino all'altezza massima. Click per terminare." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Calibrazione" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Annulla" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "SD rimossa" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Colore non puro" @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Raffredda" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Copiare la lingua selezionata?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Rileva.crash" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Scegli un filamento per la calibrazione del primo strato e selezionalo nel menu sullo schermo." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Rilevato impatto." # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Scontro rilevato. Riprendere la stampa?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Impatto" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Attuale" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Data:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Disabilita motori" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "" # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Desideri ripetere l'ultimo passaggio per migliorare la distanza fra ugello e piatto?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Correzione-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Espellendo filamento" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Finec. fuori portata" # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Finecorsa" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Finecorsa" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Errore - la memoria statica e' stata sovrascritta" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Tagliando filam." # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "ERRORE: il sensore filam. non risponde,Controllare conness." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "ERRORE:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "Ventola estr:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Info estrusore" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Estrusore" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Stat.fall. MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "Autocar.fil." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Stat. fallimenti" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test ventola" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Control.vent" @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filamento estruso e con colore corretto?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. non caricato" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Sensore filam." # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Fil. utilizzato" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Tempo di stampa" @@ -460,13 +475,8 @@ msgstr "Tempo di stampa" msgid "FS Action" msgstr "Azione FS" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS 0.4 o superiore" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "File incompleto. Continuare comunque?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Cal. primo strato" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Per primo avviero l'autotest per controllare gli errori di assemblaggio piu comuni." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Risolvere il problema e premere il bottone sull'unita MMU. " # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Flusso" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Ventola frontale?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Fronte [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Ventola frontale/sinistra" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Riscald./Termist." # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Riscaldamento fermato dal timer di sicurezza." @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Riscaldamento..." # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Ciao, sono la tua stampante Original Prusa i3. Gradiresti un aiuto nel processo di configurazione?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Cambia filamento" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Cambio riuscito!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Cambio corretto?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Verifica piano" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Verifica finecorsa" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Verifica ugello" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Controllo sensori" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Verifica asse X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Verifica asse Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Verifica asse Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "Filamento" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Adesso avviero una Calibrazione XYZ. Puo durare circa 12 min." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Adesso avviero la Calibrazione Z." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Schermata info" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Inserire filamento" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Il filamento e' stato caricato?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Fallimenti ultima stampa" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Se hai piastre d'acciaio aggiuntive, calibra i preset in Impostazioni - Setup HW - Piastre in Acciaio." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Vent SX hotend?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Sinistra" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Sinistra [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Correzione lineare" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Compensazione Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Inserire filamento (senza caricarlo) nell'estrusore e premere la manopola." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Carica filamento" # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Caricando colore" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Caricando filamento" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Puleggia lenta" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Carica ugello" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Misura altezza di rif. del punto di calib." # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "Liv. grilia piano" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Ripristino temperatura... " # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Deviazione mis" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Mod." # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Firmware MK3 rilevato su stampante MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Forte" # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU2 connessa" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "Motore" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Muovi asse" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Sposta X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Sposta Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Sposta Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Nessun movimento." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Nessuna SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Non connesso" @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Non gira" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Adesso calibro la distanza fra ugello e superfice del piatto." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Adesso preriscaldero l'ugello per PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Ugello" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Sono state trovate impostazioni vecchie. Verranno impostati i valori predefiniti di PID, Esteps etc." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Ora rimuovete la stampa di prova dalla piastra in acciaio." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "Ventola estrusore" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Metti in pausa" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Calib. PID completa" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Calibrazione PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Posizionare un foglio sotto l'ugello durante la calibrazione dei primi 4 punti. In caso l'ugello muova il foglio spegnere subito la stampante." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Per favore pulisci il piatto, poi premi la manopola." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Pulire l'ugello per la calibrazione, poi fare click." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Verifica:" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Per favore consulta il nostro manuale per risolvere il problema. Poi riprendi il Wizard dopo aver riavviato la stampante." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Aprire la guida filam. e rimuovere il filam. a mano" @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Rimuovete la piastra di acciaio dal piano riscaldato" # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Esegui la calibrazione XYZ prima. " @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Attendere" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Per favore rimuovete i materiali da spedizione" @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Prerisc. ugello!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Preriscalda" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Prego aggiornare." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Premete la manopola per preriscaldare l'ugello e continuare." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "Pausa" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Stampa interrotta" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Preriscald. carico" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Preriscald. scarico" # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "Vent.stam:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Stampa da SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Premere la manopola" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "Ventola di stampa" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Inserisci il filamento nell'estrusore, poi premi la manopola per caricarlo." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Per favore inserisci il filamento nel primo tubo del MMU, poi premi la manopola per caricarlo." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Per favore prima carica il filamento." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Retro [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Scaricare prima il filamento, poi ripetere l'operazione." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Controllare il collegamento al sensore e rimuovere il filamento." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Recupero stampa " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset calibrazione XYZ." # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Riprendi stampa" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Riprendi stampa" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Destra [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Porta RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Se avvi il Wizard perderai la calibrazione preesistente e dovrai ricominciare dall'inizio. Continuare?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Destra" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Ricerca dei punti di calibrazione del piano" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Seleziona lingua" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Autotest OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Avvia autotest" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Autotest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Errore Autotest !" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Autotest fallito" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Verra effettuato un self test per calibrare l'homing senza sensori" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Selezionate la temperatura per il preriscaldamento dell'ugello adatta al vostro materiale." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Imposta temperatura" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Impostazioni" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Stato finecorsa" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Stato sensore" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Alcuni file non saranno ordinati. Il numero massimo di file in una cartella e 100 perche siano ordinati." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Cron." # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Devia.grave:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Alfabeti" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Ordinando i file" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Forte" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Devia.lieve:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "Esaurim" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Sono stati rilevati problemi, avviato livellamento Z ..." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "Singolo" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Velocita" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Gira" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Sono necessari una temperatura ambiente di 21-26C e una superficie rigida " # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statistiche" @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ARRESTATO." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Supporto" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Scambiato" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Seleziona il filamento:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Calib. temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Seleziona la temperatura appropriata per il tuo materiale." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Calib. Temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Calibrazione temperatura fallita" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Calibrazione temperatura completata e attiva. Puo essere disattivata dal menu Impostazioni ->Cal. Temp." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Sensore verificato, rimuovere il filamento." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperature" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "E ancora necessario effettuare la calibrazione Z. Segui il manuale, capitolo Primi Passi, sezione Sequenza di Calibrazione. " # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Filamento totale" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Tempo stampa totale" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Regola" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Totale fallimenti" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "per caricare il filamento" # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "per scaricare il filamento" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Totale" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Usati nella stampa" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Voltaggi" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "sconosciuto" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Attendendo utente..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "In attesa del raffreddamento dell'ugello e del piano" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "In attesa del raffreddamento della sonda PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Usate lo scaricamento per rimuovere il filamento 1 se protrude dal retro del tubo posteriore del MMu. Utilizzate l'espulsione se e nascosto nel tubo." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Attenzione: tipo di stampante e di scheda madre cambiati." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Avviso: tipo di scheda madre cambiato" # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Avviso: tipo di stampante cambiato." # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Filamento scaricato con successo?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Errore cablaggio" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "XYZ Cal. dettagli" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "E possibile riprendere il Wizard in qualsiasi momento attraverso Calibrazione -> Wizard." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Calibrazione XYZ corretta. La distorsione verra compensata automaticamente." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Calibrazion XYZ corretta. Assi X/Y leggermente storti. Ben fatto!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "" # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Correzione-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Calibrazione XYZ OK. Gli assi X/Y sono perpendicolari. Complimenti!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Calibrazione XYZ compromessa. Punti anteriori non raggiungibili." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Calibrazione XYZ compromessa. Punto anteriore destro non raggiungibile." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Caricare tutti" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Calibrazione XYZ fallita. Il punto di calibrazione sul piano non e' stato trovato." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Calibrazione XYZ fallita. Punti anteriori non raggiungibili." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Calibrazione XYZ fallita. Punto anteriore destro non raggiungibile." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Distanza Y dal min" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "La stampante iniziera a stampare una linea a zig-zag. Gira la manopola fino a che non hai raggiungo l'altezza ottimale. Verifica con le immagini nel manuale (capitolo sulla calibrazione):" # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Verifica fallita, rimuovere il filamento e riprovare." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Correzione-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Indietro" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Controlli" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falso innesco" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Impostazioni HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Griglia" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Liv. griglia piano" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Firmware MK3S rilevato su stampante MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Mod. MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Cambio modalita in corso ..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-code processato per un firmware piu recente. Per favore aggiorna il firmware. Stampa annullata." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Preriscalda. taglio" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Preriscalda. espuls." @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Diametro ugello diverso dal G-Code. Controlla il valore nelle impostazioni. Stampa annullata." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "atteso livello %s" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Rinomina" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Seleziona" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info Sensore" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Assist." # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Piani d'acciaio" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Correzione-Z:" diff --git a/lang/po/new/pl.po b/lang/po/new/pl.po index a086c4044..3de78e7f7 100644 --- a/lang/po/new/pl.po +++ b/lang/po/new/pl.po @@ -7,8 +7,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" "Project-Id-Version: Prusa-Firmware\n" -"POT-Creation-Date: Fri May 15 18:16:57 CEST 2020\n" -"PO-Revision-Date: Fri May 15 18:16:57 CEST 2020\n" +"POT-Creation-Date: Fri Sep 18 15:25:45 CEST 2020\n" +"PO-Revision-Date: Fri Sep 18 15:25:45 CEST 2020\n" "Language-Team: \n" "X-Generator: Poedit 2.0.7\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,16 +20,31 @@ msgstr "" msgid "[%.7s]Live adj. Z\x0avalue set, continue\x0aor start from zero?\x0a%cContinue%cReset" msgstr "[%.7s]Live Adj. Z\x0austaw., kontynuowac\x0aczy zaczac od 0?\x0a%cKontynuuj%cReset" -# MSG_03_OR_OLDER c=18 +# MSG_IR_03_OR_OLDER c=18 #: messages.c:144 msgid " 0.3 or older" msgstr " 0.3 lub starszy" -# MSG_04_OR_NEWER c=18 +# c=18 +#: Marlin_main.cpp:9463 +msgid "FS v0.3 or older" +msgstr "FS 0.3 lub starszy" + +# MSG_IR_04_OR_NEWER c=18 #: messages.c:143 msgid " 0.4 or newer" msgstr " 0.4 lub nowszy" +# c=18 +#: Marlin_main.cpp:9462 +msgid "FS v0.4 or newer" +msgstr "FS 0.4 lub nowszy" + +# MSG_IR_UNKNOWN c=18 +#: messages.c:145 +msgid "unknown state" +msgstr "Stan nieznany" + # MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 c=14 #: messages.c:36 msgid " of 4" @@ -41,7 +56,7 @@ msgid " of 9" msgstr " z 9" # MSG_MEASURED_OFFSET -#: ultralcd.cpp:3064 +#: ultralcd.cpp:3062 msgid "[0;0] point offset" msgstr "[0;0] przesun.punktu" @@ -56,17 +71,17 @@ msgid "WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode" msgstr "UWAGA:\x0aWykrywanie zderzen\x0awylaczone w\x0atrybie Stealth" # -#: ultralcd.cpp:2460 +#: ultralcd.cpp:2451 msgid ">Cancel" msgstr ">Anuluj" # MSG_BABYSTEPPING_Z c=15 -#: ultralcd.cpp:3184 +#: ultralcd.cpp:3182 msgid "Adjusting Z:" msgstr "Ustawianie Z:" # MSG_SELFTEST_CHECK_ALLCORRECT c=20 -#: ultralcd.cpp:8677 +#: ultralcd.cpp:8704 msgid "All correct " msgstr "Wszystko OK " @@ -86,12 +101,12 @@ msgid "Auto" msgstr "" # MSG_PRESS c=20 r=2 -#: ultralcd.cpp:2609 +#: ultralcd.cpp:2607 msgid "and press the knob" msgstr "i nacisnij pokretlo" # MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2 -#: ultralcd.cpp:3506 +#: ultralcd.cpp:3504 msgid "Are left and right Z~carriages all up?" msgstr "Obydwa konce osi sa na szczycie?" @@ -106,32 +121,32 @@ msgid "Auto home" msgstr "Auto zerowanie" # MSG_AUTOLOAD_FILAMENT c=18 -#: ultralcd.cpp:6961 +#: ultralcd.cpp:6993 msgid "AutoLoad filament" msgstr "Autoladowanie fil." # MSG_AUTOLOADING_ONLY_IF_FSENS_ON c=20 r=4 -#: ultralcd.cpp:4445 +#: ultralcd.cpp:4441 msgid "Autoloading filament available only when filament sensor is turned on..." msgstr "Autoladowanie fil. dostepne tylko gdy czujnik filamentu jest wlaczony..." # MSG_AUTOLOADING_ENABLED c=20 r=4 -#: ultralcd.cpp:2804 +#: ultralcd.cpp:2802 msgid "Autoloading filament is active, just press the knob and insert filament..." msgstr "Autoladowanie filamentu wlaczone, nacisnij pokretlo i wsun filament..." # MSG_SELFTEST_AXIS_LENGTH -#: ultralcd.cpp:8325 +#: ultralcd.cpp:8371 msgid "Axis length" msgstr "Dlugosc osi" # MSG_SELFTEST_AXIS -#: ultralcd.cpp:8327 +#: ultralcd.cpp:8373 msgid "Axis" msgstr "Os" # MSG_SELFTEST_BEDHEATER -#: ultralcd.cpp:8269 +#: ultralcd.cpp:8315 msgid "Bed / Heater" msgstr "Stol / Grzanie" @@ -146,12 +161,12 @@ msgid "Bed Heating" msgstr "Grzanie stolu.." # MSG_BED_CORRECTION_MENU -#: ultralcd.cpp:5861 +#: ultralcd.cpp:5889 msgid "Bed level correct" msgstr "Korekta stolu" # MSG_BELTTEST c=17 -#: ultralcd.cpp:5841 +#: ultralcd.cpp:5869 msgid "Belt test " msgstr "Test paskow" @@ -186,12 +201,12 @@ msgid "Blackout occurred. Recover print?" msgstr "Wykryto zanik napiecia. Kontynowac?" # -#: ultralcd.cpp:8679 +#: ultralcd.cpp:8706 msgid "Calibrating home" msgstr "Zerowanie osi" # MSG_CALIBRATE_BED -#: ultralcd.cpp:5850 +#: ultralcd.cpp:5878 msgid "Calibrate XYZ" msgstr "Kalibracja XYZ" @@ -201,12 +216,12 @@ msgid "Calibrate Z" msgstr "Kalibruj Z" # MSG_CALIBRATE_PINDA c=17 r=1 -#: ultralcd.cpp:4637 +#: ultralcd.cpp:4633 msgid "Calibrate" msgstr "Kalibruj" # MSG_MOVE_CARRIAGE_TO_THE_TOP c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibracja XYZ. Przekrec pokretlo, aby przesunac os Z do gornych ogranicznikow. Nacisnij, by potwierdzic." @@ -216,7 +231,7 @@ msgid "Calibrating Z" msgstr "Kalibruje Z" # MSG_MOVE_CARRIAGE_TO_THE_TOP_Z c=20 r=8 -#: ultralcd.cpp:3469 +#: ultralcd.cpp:3467 msgid "Calibrating Z. Rotate the knob to move the Z carriage up to the end stoppers. Click when done." msgstr "Kalibracja XYZ. Przekrec pokretlo, aby przesunac os Z do gornych ogranicznikow. Nacisnij, by potwierdzic." @@ -231,17 +246,17 @@ msgid "Calibration" msgstr "Kalibracja" # -#: ultralcd.cpp:4815 +#: ultralcd.cpp:4811 msgid "Cancel" msgstr "Anuluj" # MSG_SD_REMOVED -#: ultralcd.cpp:9090 +#: ultralcd.cpp:9142 msgid "Card removed" msgstr "Karta wyjeta" # MSG_NOT_COLOR -#: ultralcd.cpp:2709 +#: ultralcd.cpp:2707 msgid "Color not correct" msgstr "Kolor zanieczysz." @@ -251,7 +266,7 @@ msgid "Cooldown" msgstr "Chlodzenie" # -#: ultralcd.cpp:4570 +#: ultralcd.cpp:4566 msgid "Copy selected language?" msgstr "Skopiowac wybrany jezyk?" @@ -261,7 +276,7 @@ msgid "Crash det." msgstr "Wykr.zderzen" # -#: ultralcd.cpp:4950 +#: ultralcd.cpp:4946 msgid "Choose a filament for the First Layer Calibration and select it in the on-screen menu." msgstr "Wybierz filament do Kalibracji Pierwszej Warstwy i potwierdz w menu ekranowym." @@ -271,7 +286,7 @@ msgid "Crash detected." msgstr "Zderzenie wykryte" # -#: Marlin_main.cpp:607 +#: Marlin_main.cpp:605 msgid "Crash detected. Resume print?" msgstr "Wykryto zderzenie. Wznowic druk?" @@ -281,17 +296,17 @@ msgid "Crash" msgstr "Zderzenie" # MSG_CURRENT c=19 r=1 -#: ultralcd.cpp:6002 +#: ultralcd.cpp:6033 msgid "Current" msgstr "Aktualne" # MSG_DATE c=17 r=1 -#: ultralcd.cpp:2163 +#: ultralcd.cpp:2164 msgid "Date:" msgstr "Data:" # MSG_DISABLE_STEPPERS -#: ultralcd.cpp:5743 +#: ultralcd.cpp:5769 msgid "Disable steppers" msgstr "Wylacz silniki" @@ -306,12 +321,12 @@ msgid "Cont." msgstr "Kont." # MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 -#: ultralcd.cpp:5125 +#: ultralcd.cpp:5121 msgid "Do you want to repeat last step to readjust distance between nozzle and heatbed?" msgstr "Chcesz powtorzyc ostatni krok i ponownie ustawic odleglosc miedzy dysza a stolikiem?" # MSG_EXTRUDER_CORRECTION c=13 -#: ultralcd.cpp:5194 +#: ultralcd.cpp:5190 msgid "E-correct:" msgstr "Korekcja-E:" @@ -326,22 +341,22 @@ msgid "Ejecting filament" msgstr "Wysuwanie filamentu" # MSG_SELFTEST_ENDSTOP_NOTHIT c=20 -#: ultralcd.cpp:8293 +#: ultralcd.cpp:8339 msgid "Endstop not hit" msgstr "Krancowka nie aktyw." # MSG_SELFTEST_ENDSTOP -#: ultralcd.cpp:8287 +#: ultralcd.cpp:8333 msgid "Endstop" msgstr "Krancowka" # MSG_SELFTEST_ENDSTOPS -#: ultralcd.cpp:8275 +#: ultralcd.cpp:8321 msgid "Endstops" msgstr "Krancowki" # MSG_STACK_ERROR c=20 r=4 -#: ultralcd.cpp:6998 +#: ultralcd.cpp:7030 msgid "Error - static memory has been overwritten" msgstr "Blad - pamiec statyczna zostala nadpisana" @@ -361,7 +376,7 @@ msgid "Cutting filament" msgstr "Obcinanie fil." # MSG_FSENS_NOT_RESPONDING c=20 r=4 -#: ultralcd.cpp:4458 +#: ultralcd.cpp:4454 msgid "ERROR: Filament sensor is not responding, please check connection." msgstr "BLAD: Czujnik filamentu nie odpowiada, sprawdz polaczenie." @@ -376,12 +391,12 @@ msgid "ERROR:" msgstr "BLAD:" # MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18 -#: ultralcd.cpp:8686 +#: ultralcd.cpp:8713 msgid "Extruder fan:" msgstr "WentHotend:" # MSG_INFO_EXTRUDER c=18 -#: ultralcd.cpp:2211 +#: ultralcd.cpp:2201 msgid "Extruder info" msgstr "Ekstruder - info" @@ -391,7 +406,7 @@ msgid "Extruder" msgstr "Ekstruder" # -#: ultralcd.cpp:6985 +#: ultralcd.cpp:7017 msgid "Fail stats MMU" msgstr "Bledy MMU" @@ -401,7 +416,7 @@ msgid "F. autoload" msgstr "Autolad. fil." # -#: ultralcd.cpp:6982 +#: ultralcd.cpp:7014 msgid "Fail stats" msgstr "Statystyki bledow" @@ -416,7 +431,7 @@ msgid "Fan test" msgstr "Test wentylatora" # MSG_FANS_CHECK -#: ultralcd.cpp:5751 +#: ultralcd.cpp:5777 msgid "Fans check" msgstr "Sprawd.went." @@ -436,7 +451,7 @@ msgid "Filament extruding & with correct color?" msgstr "Filament wychodzi z dyszy,kolor jest ok?" # MSG_NOT_LOADED c=19 -#: ultralcd.cpp:2705 +#: ultralcd.cpp:2703 msgid "Filament not loaded" msgstr "Fil. nie zaladowany" @@ -446,12 +461,12 @@ msgid "Filament sensor" msgstr "Czujnik filamentu" # MSG_FILAMENT_USED c=19 -#: ultralcd.cpp:2869 +#: ultralcd.cpp:2867 msgid "Filament used" msgstr "Uzyty filament" # MSG_PRINT_TIME c=19 r=1 -#: ultralcd.cpp:2870 +#: ultralcd.cpp:2868 msgid "Print time" msgstr "Czas druku" @@ -460,13 +475,8 @@ msgstr "Czas druku" msgid "FS Action" msgstr "Akcja FS" -# c=18 -#: Marlin_main.cpp:9512 -msgid "FS v0.4 or newer" -msgstr "FS v0.4 lub nowszy" - # MSG_FILE_INCOMPLETE c=20 r=3 -#: ultralcd.cpp:8814 +#: ultralcd.cpp:8841 msgid "File incomplete. Continue anyway?" msgstr "Plik niekompletny. Kontynowac?" @@ -481,7 +491,7 @@ msgid "First layer cal." msgstr "Kal. 1. warstwy" # MSG_WIZARD_SELFTEST c=20 r=8 -#: ultralcd.cpp:5046 +#: ultralcd.cpp:5042 msgid "First, I will run the selftest to check most common assembly problems." msgstr "Najpierw wlacze selftest w celu sprawdzenia najczestszych problemow podczas montazu." @@ -491,12 +501,12 @@ msgid "Fix the issue and then press button on MMU unit." msgstr "Rozwiaz problem i wcisnij przycisk na MMU." # MSG_FLOW -#: ultralcd.cpp:7125 +#: ultralcd.cpp:7157 msgid "Flow" msgstr "Przeplyw" # MSG_PRUSA3D_FORUM -#: ultralcd.cpp:2156 +#: ultralcd.cpp:2157 msgid "forum.prusa3d.com" msgstr "" @@ -506,22 +516,22 @@ msgid "Front print fan?" msgstr "Przedni went. druku?" # MSG_BED_CORRECTION_FRONT c=14 r=1 -#: ultralcd.cpp:3266 +#: ultralcd.cpp:3264 msgid "Front side[um]" msgstr "Przod [um]" # MSG_SELFTEST_FANS -#: ultralcd.cpp:8333 +#: ultralcd.cpp:8379 msgid "Front/left fans" msgstr "Przedni/lewy wentylator" # MSG_SELFTEST_HEATERTHERMISTOR -#: ultralcd.cpp:8263 +#: ultralcd.cpp:8309 msgid "Heater/Thermistor" msgstr "Grzalka/Termistor" # MSG_BED_HEATING_SAFETY_DISABLED -#: Marlin_main.cpp:9440 +#: Marlin_main.cpp:9453 msgid "Heating disabled by safety timer." msgstr "Grzanie wylaczone przez wyl. czasowy" @@ -536,12 +546,12 @@ msgid "Heating" msgstr "Grzanie..." # MSG_WIZARD_WELCOME c=20 r=7 -#: ultralcd.cpp:5025 +#: ultralcd.cpp:5021 msgid "Hi, I am your Original Prusa i3 printer. Would you like me to guide you through the setup process?" msgstr "Czesc, jestem Twoja drukarka Original Prusa i3. Czy potrzebujesz pomocy z ustawieniem?" # MSG_PRUSA3D_HOWTO -#: ultralcd.cpp:2157 +#: ultralcd.cpp:2158 msgid "howto.prusa3d.com" msgstr "" @@ -551,12 +561,12 @@ msgid "Change filament" msgstr "Wymiana filamentu" # MSG_CHANGE_SUCCESS -#: ultralcd.cpp:2620 +#: ultralcd.cpp:2618 msgid "Change success!" msgstr "Wymiana ok!" # MSG_CORRECTLY c=20 -#: ultralcd.cpp:2697 +#: ultralcd.cpp:2695 msgid "Changed correctly?" msgstr "Wymiana ok?" @@ -566,12 +576,12 @@ msgid "Checking bed " msgstr "Kontrola stolu" # MSG_SELFTEST_CHECK_ENDSTOPS c=20 -#: ultralcd.cpp:8668 +#: ultralcd.cpp:8695 msgid "Checking endstops" msgstr "Kontrola krancowek" # MSG_SELFTEST_CHECK_HOTEND c=20 -#: ultralcd.cpp:8674 +#: ultralcd.cpp:8701 msgid "Checking hotend " msgstr "Kontrola hotendu" @@ -581,17 +591,17 @@ msgid "Checking sensors " msgstr "Kontrola czujnikow" # MSG_SELFTEST_CHECK_X c=20 -#: ultralcd.cpp:7482 +#: ultralcd.cpp:7514 msgid "Checking X axis " msgstr "Kontrola osi X" # MSG_SELFTEST_CHECK_Y c=20 -#: ultralcd.cpp:7491 +#: ultralcd.cpp:7523 msgid "Checking Y axis " msgstr "Kontrola osi Y" # MSG_SELFTEST_CHECK_Z c=20 -#: ultralcd.cpp:8671 +#: ultralcd.cpp:8698 msgid "Checking Z axis " msgstr "Kontrola osi Z" @@ -611,12 +621,12 @@ msgid "Filament" msgstr "" # MSG_WIZARD_XYZ_CAL c=20 r=8 -#: ultralcd.cpp:5055 +#: ultralcd.cpp:5051 msgid "I will run xyz calibration now. It will take approx. 12 mins." msgstr "Przeprowadze teraz kalibracje XYZ. Zajmie ok. 12 min." # MSG_WIZARD_Z_CAL c=20 r=8 -#: ultralcd.cpp:5063 +#: ultralcd.cpp:5059 msgid "I will run z calibration now." msgstr "Przeprowadze kalibracje Z." @@ -626,12 +636,12 @@ msgid "Info screen" msgstr "Ekran informacyjny" # MSG_INSERT_FILAMENT c=20 -#: ultralcd.cpp:2605 +#: ultralcd.cpp:2603 msgid "Insert filament" msgstr "Wprowadz filament" # MSG_WIZARD_FILAMENT_LOADED c=20 r=2 -#: ultralcd.cpp:4835 +#: ultralcd.cpp:4831 msgid "Is filament loaded?" msgstr "Filament jest zaladowany?" @@ -646,7 +656,7 @@ msgid "Last print failures" msgstr "Ostatnie bledy druku" # -#: ultralcd.cpp:5133 +#: ultralcd.cpp:5129 msgid "If you have additional steel sheets, calibrate their presets in Settings - HW Setup - Steel sheets." msgstr "Jesli masz dodatkowe plyty stalowe, to skalibruj ich ustawienia w menu Ustawienia - Ustawienia HW - Plyty stalowe." @@ -661,17 +671,17 @@ msgid "Left hotend fan?" msgstr "Lewy went hotendu?" # -#: ultralcd.cpp:2993 +#: ultralcd.cpp:2991 msgid "Left" msgstr "Lewa" # MSG_BED_CORRECTION_LEFT c=14 r=1 -#: ultralcd.cpp:3264 +#: ultralcd.cpp:3262 msgid "Left side [um]" msgstr "Lewo [um]" # -#: ultralcd.cpp:5766 +#: ultralcd.cpp:5792 msgid "Lin. correction" msgstr "Korekcja liniowa" @@ -681,7 +691,7 @@ msgid "Live adjust Z" msgstr "Ustaw. Live Z" # c=20 r=6 -#: ultralcd.cpp:7527 +#: ultralcd.cpp:7559 msgid "Insert the filament (do not load it) into the extruder and then press the knob." msgstr "Wsun filament (nie uzywaj funkcji ladowania) do ekstrudera i nacisnij pokretlo." @@ -691,7 +701,7 @@ msgid "Load filament" msgstr "Ladowanie fil." # MSG_LOADING_COLOR -#: ultralcd.cpp:2645 +#: ultralcd.cpp:2643 msgid "Loading color" msgstr "Czyszcz. koloru" @@ -701,12 +711,12 @@ msgid "Loading filament" msgstr "Laduje filament" # MSG_LOOSE_PULLEY c=20 r=1 -#: ultralcd.cpp:8317 +#: ultralcd.cpp:8363 msgid "Loose pulley" msgstr "Luzne kolo pasowe" # -#: ultralcd.cpp:6944 +#: ultralcd.cpp:6976 msgid "Load to nozzle" msgstr "Zaladuj do dyszy" @@ -736,7 +746,7 @@ msgid "Measuring reference height of calibration point" msgstr "Okreslam wysokosc odniesienia punktu kalibracyjnego" # MSG_MESH_BED_LEVELING -#: ultralcd.cpp:5856 +#: ultralcd.cpp:5884 msgid "Mesh Bed Leveling" msgstr "Poziomowanie stolu wg siatki" @@ -751,7 +761,7 @@ msgid "MMU OK. Resuming temperature..." msgstr "MMU OK. Wznawiam nagrzewanie..." # -#: ultralcd.cpp:3034 +#: ultralcd.cpp:3032 msgid "Measured skew" msgstr "Zmierzony skos" @@ -781,7 +791,7 @@ msgid "Mode" msgstr "Tryb" # c=20 r=3 -#: Marlin_main.cpp:879 +#: Marlin_main.cpp:884 msgid "MK3 firmware detected on MK3S printer" msgstr "Wykryto firmware MK3 w drukarce MK3S" @@ -821,7 +831,7 @@ msgid "High power" msgstr "Wysoka wyd." # -#: ultralcd.cpp:2186 +#: ultralcd.cpp:2176 msgid "MMU2 connected" msgstr "MMU podlaczone" @@ -831,32 +841,32 @@ msgid "Motor" msgstr "Silnik" # MSG_MOVE_AXIS -#: ultralcd.cpp:5741 +#: ultralcd.cpp:5767 msgid "Move axis" msgstr "Ruch osi" # MSG_MOVE_X -#: ultralcd.cpp:4361 +#: ultralcd.cpp:4357 msgid "Move X" msgstr "Ruch osi X" # MSG_MOVE_Y -#: ultralcd.cpp:4362 +#: ultralcd.cpp:4358 msgid "Move Y" msgstr "Ruch osi Y" # MSG_MOVE_Z -#: ultralcd.cpp:4363 +#: ultralcd.cpp:4359 msgid "Move Z" msgstr "Ruch osi Z" # MSG_NO_MOVE -#: Marlin_main.cpp:5541 +#: Marlin_main.cpp:5555 msgid "No move." msgstr "Brak ruchu." # MSG_NO_CARD -#: ultralcd.cpp:6911 +#: ultralcd.cpp:6943 msgid "No SD card" msgstr "Brak karty SD" @@ -871,7 +881,7 @@ msgid "No" msgstr "Nie" # MSG_SELFTEST_NOTCONNECTED -#: ultralcd.cpp:8265 +#: ultralcd.cpp:8311 msgid "Not connected" msgstr "Nie podlaczono " @@ -886,12 +896,12 @@ msgid "Not spinning" msgstr "Nie kreci sie" # MSG_WIZARD_V2_CAL c=20 r=8 -#: ultralcd.cpp:4946 +#: ultralcd.cpp:4942 msgid "Now I will calibrate distance between tip of the nozzle and heatbed surface." msgstr "Kalibruje odleglosc miedzy koncowka dyszy a powierzchnia druku." # MSG_WIZARD_WILL_PREHEAT c=20 r=4 -#: ultralcd.cpp:5071 +#: ultralcd.cpp:5067 msgid "Now I will preheat nozzle for PLA." msgstr "Nagrzewam dysze dla PLA." @@ -901,12 +911,12 @@ msgid "Nozzle" msgstr "Dysza" # MSG_DEFAULT_SETTINGS_LOADED c=20 r=5 -#: Marlin_main.cpp:1518 +#: Marlin_main.cpp:1533 msgid "Old settings found. Default PID, Esteps etc. will be set." msgstr "Znaleziono stare ustawienia. Zostana przywrocone domyslne ust. PID, Esteps, itp." # -#: ultralcd.cpp:5062 +#: ultralcd.cpp:5058 msgid "Now remove the test print from steel sheet." msgstr "Teraz zdejmij wydruk testowy ze stolu." @@ -916,7 +926,7 @@ msgid "Nozzle FAN" msgstr "WentHotend" # MSG_PAUSE_PRINT -#: ultralcd.cpp:6875 +#: ultralcd.cpp:6907 msgid "Pause print" msgstr "Wstrzymanie wydruku" @@ -931,7 +941,7 @@ msgid "PID cal. finished" msgstr "Kal. PID zakonczona" # MSG_PID_EXTRUDER c=17 r=1 -#: ultralcd.cpp:5862 +#: ultralcd.cpp:5890 msgid "PID calibration" msgstr "Kalibracja PID" @@ -946,7 +956,7 @@ msgid "Place a sheet of paper under the nozzle during the calibration of first 4 msgstr "Umiesc kartke papieru na stole roboczym i podczas pomiaru pierwszych 4 punktow. Jesli dysza zahaczy o papier, natychmiast wylacz drukarke." # MSG_WIZARD_CLEAN_HEATBED c=20 r=8 -#: ultralcd.cpp:5128 +#: ultralcd.cpp:5124 msgid "Please clean heatbed and then press the knob." msgstr "Oczysc powierzchnie druku i nacisnij pokretlo." @@ -956,7 +966,7 @@ msgid "Please clean the nozzle for calibration. Click when done." msgstr "Dla prawidlowej kalibracji nalezy oczyscic dysze. Potwierdz guzikiem." # MSG_SELFTEST_PLEASECHECK -#: ultralcd.cpp:8257 +#: ultralcd.cpp:8303 msgid "Please check :" msgstr "Sprawdz :" @@ -966,7 +976,7 @@ msgid "Please check our handbook and fix the problem. Then resume the Wizard by msgstr "Przeczytaj nasz Podrecznik druku 3D aby naprawic problem. Potem wznow Asystenta przez restart drukarki." # MSG_CHECK_IDLER c=20 r=4 -#: Marlin_main.cpp:3138 +#: Marlin_main.cpp:3152 msgid "Please open idler and remove filament manually." msgstr "Prosze odciagnac dzwignie dociskowa ekstrudera i recznie usunac filament." @@ -996,7 +1006,7 @@ msgid "Please remove steel sheet from heatbed." msgstr "Prosze zdjac plyte stalowa z podgrzewanego stolu." # MSG_RUN_XYZ c=20 r=4 -#: Marlin_main.cpp:4583 +#: Marlin_main.cpp:4601 msgid "Please run XYZ calibration first." msgstr "Prosze najpierw uruchomic kalibracje XYZ" @@ -1011,7 +1021,7 @@ msgid "Please wait" msgstr "Prosze czekac" # -#: ultralcd.cpp:5061 +#: ultralcd.cpp:5057 msgid "Please remove shipping helpers first." msgstr "Najpierw usun zabezpieczenia transportowe" @@ -1021,7 +1031,7 @@ msgid "Preheat the nozzle!" msgstr "Nagrzej dysze!" # MSG_PREHEAT -#: ultralcd.cpp:6853 +#: ultralcd.cpp:6885 msgid "Preheat" msgstr "Grzanie" @@ -1041,12 +1051,12 @@ msgid "Please upgrade." msgstr "Prosze zaktualizowac." # MSG_PRESS_TO_PREHEAT c=20 r=4 -#: Marlin_main.cpp:11526 +#: Marlin_main.cpp:11556 msgid "Press knob to preheat nozzle and continue." msgstr "Wcisnij pokretlo aby rozgrzac dysze i kontynuowac." # MSG_FS_PAUSE c=5 -#: fsensor.cpp:710 +#: fsensor.cpp:730 msgid "Pause" msgstr "Pauza" @@ -1061,17 +1071,17 @@ msgid "Print aborted" msgstr "Druk przerwany" # c=20 -#: ultralcd.cpp:2442 +#: ultralcd.cpp:2433 msgid "Preheating to load" msgstr "Nagrzew.do ladowania" # c=20 -#: ultralcd.cpp:2446 +#: ultralcd.cpp:2437 msgid "Preheating to unload" msgstr "Nagrzew. do rozlad." # MSG_SELFTEST_PRINT_FAN_SPEED c=18 -#: ultralcd.cpp:8689 +#: ultralcd.cpp:8716 msgid "Print fan:" msgstr "WentWydruk:" @@ -1081,7 +1091,7 @@ msgid "Print from SD" msgstr "Druk z karty SD" # -#: ultralcd.cpp:2289 +#: ultralcd.cpp:2280 msgid "Press the knob" msgstr "Wcisnij pokretlo" @@ -1106,37 +1116,42 @@ msgid "Print FAN" msgstr "WentWydruk" # -#: ultralcd.cpp:4926 +#: ultralcd.cpp:4922 msgid "Please insert filament into the extruder, then press the knob to load it." msgstr "Wsun filament do ekstrudera i nacisnij pokretlo, aby go zaladowac." # -#: ultralcd.cpp:4921 +#: ultralcd.cpp:4917 msgid "Please insert filament into the first tube of the MMU, then press the knob to load it." msgstr "Wsun filament do pierwszego kanalu w MMU2 i nacisnij pokretlo, aby go zaladowac." # -#: ultralcd.cpp:4843 +#: ultralcd.cpp:4839 msgid "Please load filament first." msgstr "Najpierw zaladuj filament." # MSG_PRUSA3D -#: ultralcd.cpp:2155 +#: ultralcd.cpp:2156 msgid "prusa3d.com" msgstr "" # MSG_BED_CORRECTION_REAR c=14 r=1 -#: ultralcd.cpp:3267 +#: ultralcd.cpp:3265 msgid "Rear side [um]" msgstr "Tyl [um]" # c=20 r=4 -#: ultralcd.cpp:7549 +#: ultralcd.cpp:7583 msgid "Please unload the filament first, then repeat this action." msgstr "Najpierw rozladuj filament, nastepnie powtorz czynnosc." +# c=20 r=4 +#: ultralcd.cpp:7586 +msgid "Please check the IR sensor connection, unload filament if present." +msgstr "Sprawdz polaczenie czujnika IR, rozladuj filament, jesli zaladowany." + # MSG_RECOVERING_PRINT c=20 -#: Marlin_main.cpp:10883 +#: Marlin_main.cpp:10913 msgid "Recovering print " msgstr "Wznawianie wydruku " @@ -1151,17 +1166,17 @@ msgid "Prusa i3 MK3S OK." msgstr "" # MSG_CALIBRATE_BED_RESET -#: ultralcd.cpp:5867 +#: ultralcd.cpp:5895 msgid "Reset XYZ calibr." msgstr "Reset kalibr. XYZ" # MSG_BED_CORRECTION_RESET -#: ultralcd.cpp:3268 +#: ultralcd.cpp:3266 msgid "Reset" msgstr "" # MSG_RESUME_PRINT -#: ultralcd.cpp:6861 +#: ultralcd.cpp:6893 msgid "Resume print" msgstr "Wznowic wydruk" @@ -1171,7 +1186,7 @@ msgid "Resuming print" msgstr "Wznawianie druku" # MSG_BED_CORRECTION_RIGHT c=14 r=1 -#: ultralcd.cpp:3265 +#: ultralcd.cpp:3263 msgid "Right side[um]" msgstr "Prawo [um]" @@ -1181,7 +1196,7 @@ msgid "RPi port" msgstr "Port RPi" # MSG_WIZARD_RERUN c=20 r=7 -#: ultralcd.cpp:4864 +#: ultralcd.cpp:4860 msgid "Running Wizard will delete current calibration results and start from the beginning. Continue?" msgstr "Wlaczenie Asystenta usunie obecne dane kalibracyjne i zacznie od poczatku. Kontynuowac?" @@ -1196,7 +1211,7 @@ msgid "FlashAir" msgstr "" # -#: ultralcd.cpp:2994 +#: ultralcd.cpp:2992 msgid "Right" msgstr "Prawa" @@ -1206,27 +1221,27 @@ msgid "Searching bed calibration point" msgstr "Szukam punktu kalibracyjnego na stole" # MSG_LANGUAGE_SELECT -#: ultralcd.cpp:5779 +#: ultralcd.cpp:5807 msgid "Select language" msgstr "Wybor jezyka" # MSG_SELFTEST_OK -#: ultralcd.cpp:7812 +#: ultralcd.cpp:7858 msgid "Self test OK" msgstr "Selftest OK" # MSG_SELFTEST_START c=20 -#: ultralcd.cpp:7582 +#: ultralcd.cpp:7626 msgid "Self test start " msgstr "Selftest startuje" # MSG_SELFTEST -#: ultralcd.cpp:5843 +#: ultralcd.cpp:5871 msgid "Selftest " msgstr "Selftest " # MSG_SELFTEST_ERROR -#: ultralcd.cpp:8255 +#: ultralcd.cpp:8301 msgid "Selftest error !" msgstr "Blad selftest!" @@ -1236,17 +1251,17 @@ msgid "Selftest failed " msgstr "Selftest nieudany" # MSG_FORCE_SELFTEST c=20 r=8 -#: Marlin_main.cpp:1550 +#: Marlin_main.cpp:1565 msgid "Selftest will be run to calibrate accurate sensorless rehoming." msgstr "Zostanie uruchomiony Selftest aby dokladnie skalibrowac punkt bazowy bez krancowek" # -#: ultralcd.cpp:5102 +#: ultralcd.cpp:5098 msgid "Select nozzle preheat temperature which matches your material." msgstr "Wybierz temperature grzania dyszy odpowiednia dla materialu." # MSG_SET_TEMPERATURE c=19 r=1 -#: ultralcd.cpp:3286 +#: ultralcd.cpp:3284 msgid "Set temperature:" msgstr "Ustaw temperature:" @@ -1271,17 +1286,17 @@ msgid "Settings" msgstr "Ustawienia" # MSG_SHOW_END_STOPS c=18 -#: ultralcd.cpp:5864 +#: ultralcd.cpp:5892 msgid "Show end stops" msgstr "Pokaz krancowki" # -#: ultralcd.cpp:4008 +#: ultralcd.cpp:4004 msgid "Sensor state" msgstr "Stan czujnikow" # MSG_FILE_CNT c=20 r=6 -#: cardreader.cpp:738 +#: cardreader.cpp:736 msgid "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100." msgstr "Niektore pliki nie zostana posortowane. Max. liczba plikow w 1 folderze = 100." @@ -1301,7 +1316,7 @@ msgid "Time" msgstr "Czas" # -#: ultralcd.cpp:3037 +#: ultralcd.cpp:3035 msgid "Severe skew:" msgstr "Znaczny skos:" @@ -1311,7 +1326,7 @@ msgid "Alphabet" msgstr "Alfab" # MSG_SORTING c=20 r=1 -#: cardreader.cpp:745 +#: cardreader.cpp:743 msgid "Sorting files" msgstr "Sortowanie plikow" @@ -1321,7 +1336,7 @@ msgid "Loud" msgstr "Glosny" # -#: ultralcd.cpp:3036 +#: ultralcd.cpp:3034 msgid "Slight skew:" msgstr "Lekki skos:" @@ -1336,7 +1351,7 @@ msgid "Runouts" msgstr "Konce f" # -#: Marlin_main.cpp:5101 +#: Marlin_main.cpp:5115 msgid "Some problem encountered, Z-leveling enforced ..." msgstr "Wykryto problem, wymuszono poziomowanie osi Z." @@ -1346,7 +1361,7 @@ msgid "Once" msgstr "1-raz" # MSG_SPEED -#: ultralcd.cpp:7119 +#: ultralcd.cpp:7151 msgid "Speed" msgstr "Predkosc" @@ -1356,12 +1371,12 @@ msgid "Spinning" msgstr "Kreci sie" # MSG_TEMP_CAL_WARNING c=20 r=4 -#: Marlin_main.cpp:4596 +#: Marlin_main.cpp:4614 msgid "Stable ambient temperature 21-26C is needed a rigid stand is required." msgstr "Potrzebna jest stabilna temperatura otoczenia 21-26C i stabilne podloze." # MSG_STATISTICS -#: ultralcd.cpp:6978 +#: ultralcd.cpp:7010 msgid "Statistics " msgstr "Statystyki" @@ -1376,17 +1391,17 @@ msgid "STOPPED. " msgstr "ZATRZYMANO." # MSG_SUPPORT -#: ultralcd.cpp:6987 +#: ultralcd.cpp:7019 msgid "Support" msgstr "Wsparcie" # MSG_SELFTEST_SWAPPED -#: ultralcd.cpp:8335 +#: ultralcd.cpp:8381 msgid "Swapped" msgstr "Zamieniono" # -#: ultralcd.cpp:4814 +#: ultralcd.cpp:4810 msgid "Select filament:" msgstr "Wybierz filament:" @@ -1396,17 +1411,17 @@ msgid "Temp. cal." msgstr "Kalib. temp." # -#: ultralcd.cpp:4955 +#: ultralcd.cpp:4951 msgid "Select temperature which matches your material." msgstr "Wybierz temperature, ktora odpowiada Twojemu filamentowi." # MSG_CALIBRATION_PINDA_MENU c=17 r=1 -#: ultralcd.cpp:5873 +#: ultralcd.cpp:5903 msgid "Temp. calibration" msgstr "Kalibracja temp." # MSG_TEMP_CAL_FAILED c=20 r=8 -#: ultralcd.cpp:3933 +#: ultralcd.cpp:3930 msgid "Temperature calibration failed" msgstr "Kalibracja temperaturowa nieudana" @@ -1416,17 +1431,17 @@ msgid "Temperature calibration is finished and active. Temp. calibration can be msgstr "Kalibracja temperaturowa zakonczona i wlaczona. Moze byc wylaczona z menu Ustawienia -> Kalibracja temp." # c=20 r=3 -#: ultralcd.cpp:7554 +#: ultralcd.cpp:7590 msgid "Sensor verified, remove the filament now." msgstr "Czujnik sprawdzony, wyciagnij filament." # MSG_TEMPERATURE -#: ultralcd.cpp:5739 +#: ultralcd.cpp:5765 msgid "Temperature" msgstr "Temperatura" # MSG_MENU_TEMPERATURES c=15 r=1 -#: ultralcd.cpp:2218 +#: ultralcd.cpp:2208 msgid "Temperatures" msgstr "Temperatury" @@ -1436,17 +1451,17 @@ msgid "There is still a need to make Z calibration. Please follow the manual, ch msgstr "Musimy przeprowadzic kalibracje Z. Kieruj sie Samouczkiem: rozdzial Pierwsze Kroki, sekcja Kalibracja." # -#: ultralcd.cpp:2891 +#: ultralcd.cpp:2889 msgid "Total filament" msgstr "Zuzycie filamentu" # -#: ultralcd.cpp:2892 +#: ultralcd.cpp:2890 msgid "Total print time" msgstr "Laczny czas druku" # MSG_TUNE -#: ultralcd.cpp:6850 +#: ultralcd.cpp:6882 msgid "Tune" msgstr "Strojenie" @@ -1461,12 +1476,12 @@ msgid "Total failures" msgstr "Suma bledow" # -#: ultralcd.cpp:2296 +#: ultralcd.cpp:2287 msgid "to load filament" msgstr "aby zaladow. fil." # -#: ultralcd.cpp:2300 +#: ultralcd.cpp:2291 msgid "to unload filament" msgstr "aby rozlad. filament" @@ -1486,32 +1501,32 @@ msgid "Total" msgstr "Suma" # MSG_USED c=19 r=1 -#: ultralcd.cpp:6001 +#: ultralcd.cpp:6032 msgid "Used during print" msgstr "Uzyte podczas druku" # MSG_MENU_VOLTAGES c=15 r=1 -#: ultralcd.cpp:2221 +#: ultralcd.cpp:2211 msgid "Voltages" msgstr "Napiecia" # -#: ultralcd.cpp:2194 +#: ultralcd.cpp:2184 msgid "unknown" msgstr "nieznane" # MSG_USERWAIT -#: Marlin_main.cpp:5511 +#: Marlin_main.cpp:5525 msgid "Wait for user..." msgstr "Czekam na uzytkownika..." # MSG_WAITING_TEMP c=20 r=3 -#: ultralcd.cpp:3434 +#: ultralcd.cpp:3432 msgid "Waiting for nozzle and bed cooling" msgstr "Oczekiwanie na wychlodzenie dyszy i stolu" # MSG_WAITING_TEMP_PINDA c=20 r=3 -#: ultralcd.cpp:3395 +#: ultralcd.cpp:3393 msgid "Waiting for PINDA probe cooling" msgstr "Czekam az spadnie temp. sondy PINDA" @@ -1521,22 +1536,22 @@ msgid "Use unload to remove filament 1 if it protrudes outside of the rear MMU t msgstr "Uzyj opcji Rozladuj jesli filament wystaje z tylnej rurki MMU. Uzyj opcji Wysun jesli wciaz jest w srodku." # MSG_CHANGED_BOTH c=20 r=4 -#: Marlin_main.cpp:1510 +#: Marlin_main.cpp:1525 msgid "Warning: both printer type and motherboard type changed." msgstr "Ostrzezenie: typ drukarki i plyta glowna ulegly zmianie." # MSG_CHANGED_MOTHERBOARD c=20 r=4 -#: Marlin_main.cpp:1502 +#: Marlin_main.cpp:1517 msgid "Warning: motherboard type changed." msgstr "Ostrzezenie: plyta glowna ulegla zmianie." # MSG_CHANGED_PRINTER c=20 r=4 -#: Marlin_main.cpp:1506 +#: Marlin_main.cpp:1521 msgid "Warning: printer type changed." msgstr "Ostrzezenie: rodzaj drukarki ulegl zmianie" # MSG_UNLOAD_SUCCESSFUL c=20 r=2 -#: Marlin_main.cpp:3128 +#: Marlin_main.cpp:3142 msgid "Was filament unload successful?" msgstr "Rozladowanie fil. ok?" @@ -1546,12 +1561,12 @@ msgid "Wiring error" msgstr "Blad polaczenia" # MSG_WIZARD c=17 r=1 -#: ultralcd.cpp:5834 +#: ultralcd.cpp:5862 msgid "Wizard" msgstr "Asystent" # MSG_XYZ_DETAILS c=18 -#: ultralcd.cpp:2210 +#: ultralcd.cpp:2200 msgid "XYZ cal. details" msgstr "Szczegoly kal. XYZ" @@ -1571,12 +1586,12 @@ msgid "You can always resume the Wizard from Calibration -> Wizard." msgstr "Zawsze mozesz uruchomic Asystenta ponownie przez Kalibracja -> Asystent." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME c=20 r=8 -#: ultralcd.cpp:3904 +#: ultralcd.cpp:3902 msgid "XYZ calibration all right. Skew will be corrected automatically." msgstr "Kalibracja XYZ pomyslna. Skos bedzie automatycznie korygowany." # MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD c=20 r=8 -#: ultralcd.cpp:3901 +#: ultralcd.cpp:3899 msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!" msgstr "Kalibracja XYZ prawidlowa. Osie X/Y lekko skosne. Dobra robota!" @@ -1586,62 +1601,62 @@ msgid "Timeout" msgstr "Wyl. czas." # MSG_X_CORRECTION c=13 -#: ultralcd.cpp:5190 +#: ultralcd.cpp:5186 msgid "X-correct:" msgstr "Korekcja-X:" # MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8 -#: ultralcd.cpp:3898 +#: ultralcd.cpp:3896 msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!" msgstr "Kalibracja XYZ ok. Osie X/Y sa prostopadle. Gratulacje!" # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR c=20 r=8 -#: ultralcd.cpp:3882 +#: ultralcd.cpp:3880 msgid "XYZ calibration compromised. Front calibration points not reachable." msgstr "Kalibr. XYZ niedokladna. Przednie punkty kalibr. nieosiagalne." # MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR c=20 r=8 -#: ultralcd.cpp:3885 +#: ultralcd.cpp:3883 msgid "XYZ calibration compromised. Right front calibration point not reachable." msgstr "Kalibracja XYZ niedokladna. Prawy przedni punkt nieosiagalny." # MSG_LOAD_ALL c=17 -#: ultralcd.cpp:6261 +#: ultralcd.cpp:6292 msgid "Load all" msgstr "Zalad. wszystkie" # -#: ultralcd.cpp:3864 +#: ultralcd.cpp:3862 msgid "XYZ calibration failed. Bed calibration point was not found." msgstr "Kalibracja XYZ nieudana. Nie znaleziono punktow kalibracyjnych." # -#: ultralcd.cpp:3870 +#: ultralcd.cpp:3868 msgid "XYZ calibration failed. Front calibration points not reachable." msgstr "Kalibr. XYZ nieudana. Przednie punkty kalibr. nieosiagalne. Nalezy poprawic montaz drukarki." # -#: ultralcd.cpp:3873 +#: ultralcd.cpp:3871 msgid "XYZ calibration failed. Right front calibration point not reachable." msgstr "Kalibr. XYZ nieudana. Prawy przedni punkt nieosiagalny. Nalezy poprawic montaz drukarki." # -#: ultralcd.cpp:2991 +#: ultralcd.cpp:2989 msgid "Y distance from min" msgstr "Dystans od 0 w osi Y" # -#: ultralcd.cpp:4958 +#: ultralcd.cpp:4954 msgid "The printer will start printing a zig-zag line. Rotate the knob until you reach the optimal height. Check the pictures in the handbook (Calibration chapter)." msgstr "Drukarka zacznie drukowanie linii w ksztalcie zygzaka. Ustaw optymalna wysokosc obracajac pokretlo. Porownaj z ilustracjami w Podreczniku (rozdzial Kalibracja)." # c=20 r=5 -#: ultralcd.cpp:7558 +#: ultralcd.cpp:7594 msgid "Verification failed, remove the filament and try again." msgstr "Niepowodzenie sprawdzenia, wyciagnij filament i sprobuj ponownie." # MSG_Y_CORRECTION c=13 -#: ultralcd.cpp:5191 +#: ultralcd.cpp:5187 msgid "Y-correct:" msgstr "Korekcja-Y:" @@ -1661,17 +1676,17 @@ msgid "Back" msgstr "Wstecz" # -#: ultralcd.cpp:5724 +#: ultralcd.cpp:5742 msgid "Checks" msgstr "Testy" # -#: ultralcd.cpp:8349 +#: ultralcd.cpp:8395 msgid "False triggering" msgstr "Falszywy alarm" # -#: ultralcd.cpp:4013 +#: ultralcd.cpp:4009 msgid "FINDA:" msgstr "" @@ -1696,7 +1711,7 @@ msgid "HW Setup" msgstr "Ustawienia HW" # -#: ultralcd.cpp:4017 +#: ultralcd.cpp:4013 msgid "IR:" msgstr "" @@ -1711,12 +1726,12 @@ msgid "Mesh" msgstr "Siatka" # -#: ultralcd.cpp:5763 +#: ultralcd.cpp:5789 msgid "Mesh bed leveling" msgstr "Poziomowanie stolu" # -#: Marlin_main.cpp:872 +#: Marlin_main.cpp:877 msgid "MK3S firmware detected on MK3 printer" msgstr "Wykryto firmware MK3S w drukarce MK3" @@ -1726,7 +1741,7 @@ msgid "MMU Mode" msgstr "Tryb MMU" # -#: ultralcd.cpp:4494 +#: ultralcd.cpp:4490 msgid "Mode change in progress ..." msgstr "Trwa zmiana trybu..." @@ -1771,17 +1786,17 @@ msgid "G-code sliced for a newer firmware. Please update the firmware. Print can msgstr "G-code pociety dla nowszego firmware. Zaktualizuj firmware. Druk anulowany." # -#: ultralcd.cpp:4009 +#: ultralcd.cpp:4005 msgid "PINDA:" msgstr "" # c=20 -#: ultralcd.cpp:2452 +#: ultralcd.cpp:2443 msgid "Preheating to cut" msgstr "Nagrzew. obciecia" # c=20 -#: ultralcd.cpp:2449 +#: ultralcd.cpp:2440 msgid "Preheating to eject" msgstr "Nagrzew. wysuniecia" @@ -1796,22 +1811,22 @@ msgid "Printer nozzle diameter differs from the G-code. Please check the value i msgstr "Srednica dyszy rozni sie od tej w G-code. Sprawdz ustawienia. Druk anulowany." # c=20 -#: ultralcd.cpp:8355 +#: ultralcd.cpp:8401 msgid "%s level expected" msgstr "Oczekiwano wersji %s" # -#: ultralcd.cpp:6814 +#: ultralcd.cpp:6846 msgid "Rename" msgstr "Zmien nazwe" # -#: ultralcd.cpp:6807 +#: ultralcd.cpp:6839 msgid "Select" msgstr "Wybierz" # -#: ultralcd.cpp:2212 +#: ultralcd.cpp:2202 msgid "Sensor info" msgstr "Info o sensorach" @@ -1826,12 +1841,12 @@ msgid "Assist" msgstr "Asyst." # c=18 -#: ultralcd.cpp:5722 +#: ultralcd.cpp:5740 msgid "Steel sheets" msgstr "Plyty stalowe" # MSG_Z_CORRECTION c=13 -#: ultralcd.cpp:5192 +#: ultralcd.cpp:5188 msgid "Z-correct:" msgstr "Korekcja-Z:"