Remove duplicate Extruder fan:
Create MSG in messages to reuse it Remove `Nozzle FAN` Change Support -> Extruder info -> fan speeds
This commit is contained in:
parent
e0b18b279d
commit
3ddbea14bb
@ -34,6 +34,8 @@ const char MSG_FANS_CHECK[] PROGMEM_I1 = ISTR("Fans check"); ////c=13
|
||||
const char MSG_FIL_RUNOUTS[] PROGMEM_I1 = ISTR("Fil. runouts"); ////c=15
|
||||
const char MSG_FILAMENT[] PROGMEM_I1 = ISTR("Filament"); ////c=17
|
||||
const char MSG_FAN_SPEED[] PROGMEM_I1 = ISTR("Fan speed"); ////c=14
|
||||
const char MSG_EXTRUDER_FAN_SPEED[] PROGMEM_I1 = ISTR("Extruder fan:");////c=16
|
||||
const char MSG_PRINT_FAN_SPEED[] PROGMEM_I1 = ISTR("Print fan:"); ////c=16
|
||||
const char MSG_FILAMENT_CLEAN[] PROGMEM_I1 = ISTR("Filament extruding & with correct color?"); ////c=20 r=2
|
||||
const char MSG_FILAMENT_LOADED[] PROGMEM_I1 = ISTR("Is filament loaded?"); ////c=20 r=2
|
||||
const char MSG_FILAMENT_LOADING_T0[] PROGMEM_I1 = ISTR("Insert filament into extruder 1. Click when done."); ////c=20 r=4
|
||||
|
@ -35,6 +35,8 @@ extern const char MSG_FANS_CHECK[];
|
||||
extern const char MSG_FIL_RUNOUTS[];
|
||||
extern const char MSG_FILAMENT[];
|
||||
extern const char MSG_FAN_SPEED[];
|
||||
extern const char MSG_EXTRUDER_FAN_SPEED[];
|
||||
extern const char MSG_PRINT_FAN_SPEED[];
|
||||
extern const char MSG_FILAMENT_CLEAN[];
|
||||
extern const char MSG_FILAMENT_LOADED[];
|
||||
extern const char MSG_FILAMENT_LOADING_T0[];
|
||||
|
@ -1428,8 +1428,8 @@ static void pgmtext_with_colon(const char *ipgmLabel, char *dst, uint8_t dstSize
|
||||
//!
|
||||
//! @code{.unparsed}
|
||||
//! |01234567890123456789|
|
||||
//! |Nozzle FAN: 0000 RPM| MSG_NOZZLE_FAN c=10 SPEED c=3
|
||||
//! |Print FAN: 0000 RPM| MSG_PRINT_FAN c=10 SPEED c=3
|
||||
//! |Extruder fan: 0000| MSG_EXTRUDER_FAN_SPEED c=16
|
||||
//! |Print fan: 0000| MSG_PRINT_FAN_SPEED c=16
|
||||
//! | |
|
||||
//! | |
|
||||
//! ----------------------
|
||||
@ -1438,14 +1438,9 @@ static void pgmtext_with_colon(const char *ipgmLabel, char *dst, uint8_t dstSize
|
||||
void lcd_menu_extruder_info() // NOT static due to using inside "Marlin_main" module ("manage_inactivity()")
|
||||
{
|
||||
|
||||
// Display Nozzle fan RPM
|
||||
lcd_timeoutToStatus.stop(); //infinite timeout
|
||||
lcd_home();
|
||||
static const size_t maxChars = 12;
|
||||
char nozzle[maxChars], print[maxChars];
|
||||
pgmtext_with_colon(_i("Nozzle FAN"), nozzle, maxChars); ////MSG_NOZZLE_FAN c=10
|
||||
pgmtext_with_colon(_i("Print FAN"), print, maxChars); ////MSG_PRINT_FAN c=10
|
||||
lcd_printf_P(_N("%s %4d RPM\n" "%s %4d RPM\n"), nozzle, 60*fan_speed[0], print, 60*fan_speed[1] );
|
||||
lcd_printf_P(PSTR("%-16.16S%-4d\n" "%-16.16S%-4d\n"), _T(MSG_EXTRUDER_FAN_SPEED), 60*fan_speed[0], _T(MSG_PRINT_FAN_SPEED), 60*fan_speed[1] );
|
||||
menu_back_if_clicked();
|
||||
}
|
||||
|
||||
@ -8416,10 +8411,10 @@ static int lcd_selftest_screen(TestScreen screen, int _progress, int _progress_s
|
||||
if ((screen >= TestScreen::ExtruderFan) && (screen <= TestScreen::FansOk))
|
||||
{
|
||||
//SERIAL_ECHOLNPGM("Fan test");
|
||||
lcd_puts_at_P(0, 2, _i("Extruder fan:"));////MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
lcd_puts_at_P(0, 2, _T(MSG_EXTRUDER_FAN_SPEED));
|
||||
lcd_set_cursor(18, 2);
|
||||
(screen < TestScreen::PrintFan) ? lcd_print(_indicator) : lcd_print("OK");
|
||||
lcd_puts_at_P(0, 3, _i("Print fan:"));////MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
lcd_puts_at_P(0, 3, _T(MSG_PRINT_FAN_SPEED));
|
||||
lcd_set_cursor(18, 3);
|
||||
(screen < TestScreen::FansOk) ? lcd_print(_indicator) : lcd_print("OK");
|
||||
}
|
||||
|
@ -214,7 +214,7 @@
|
||||
#MSG_ERROR c=10
|
||||
"ERROR:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
|
||||
#MSG_INFO_EXTRUDER c=18
|
||||
@ -529,9 +529,6 @@
|
||||
#MSG_REMOVE_TEST_PRINT c=20 r=4
|
||||
"Now remove the test print from steel sheet."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
|
||||
@ -622,7 +619,7 @@
|
||||
#MSG_PREHEATING_TO_UNLOAD c=20
|
||||
"Preheating to unload"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
|
||||
#MSG_CARD_MENU c=18
|
||||
@ -640,9 +637,6 @@
|
||||
#MSG_FOLLOW_CALIBRATION_FLOW c=20 r=8
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"CHYBA:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Levy vent.:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Nyni odstrante testovaci vytisk z tiskoveho platu."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"V. trysky"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Pozastavit tisk"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Predehrev k vyjmuti"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Tiskovy vent.:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Tiskarna nebyla jeste zkalibrovana. Postupujte prosim podle manualu, kapitola Zaciname, odstavec Postup kalibrace."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Tiskovy v."
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Prosim vlozte filament do extruderu a stisknete tlacitko k jeho zavedeni"
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"\x00"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"\x00"
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"\x00"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"\x00"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"\x00"
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"\x00"
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"FEHLER:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Extruderl\xf5fter:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Testdruck jetzt von Stahlblech entfernen."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Druckl\xf5ft."
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Druck pausieren"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Heizen zum Entladen"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Druckl\xf5fter:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Drucker wurde noch nicht kalibriert. Bitte folgen Sie dem Handbuch, Kapitel Erste Schritte, Abschnitt Kalibrie- rungsablauf."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Druckl\xf5ft."
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Bitte legen Sie das Filament in den Extruder ein und dr\xf5cken Sie dann den Knopf, um es zu laden."
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Vent.extrusor:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Ahora retira la prueba de la lamina de acero."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Vent. capa"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Pausar impresion"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Precalent. descargar"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Vent.fusor:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Impresora no esta calibrada todavia. Por favor usa el manual capitulo Primeros pasos Calibracion flujo."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Vent. extr"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Por favor, coloca el filamento en el extrusor, luego presiona el dial para cargarlo."
|
||||
|
@ -286,9 +286,9 @@
|
||||
"ERROR:"
|
||||
"ERREUR:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Ventilo extrudeur:"
|
||||
"Vent. extrudeur:"
|
||||
|
||||
#MSG_INFO_EXTRUDER c=18
|
||||
"Extruder info"
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Retirez maintenant l'impression de test de la plaque en acier."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Vent. buse"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Pause de l'impr."
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Chauf.pour decharger"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Vent. impr:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"L'imprimante n'a pas encore ete calibree. Suivez le manuel, chapitre Premiers pas, section Processus de calibration."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Vent. impr"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Veuillez inserer le filament dans l'extrudeur, puis appuyez sur le bouton pour le charger."
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"POGRESKA:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Ekstruder vent:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Sada uklonite probni print sa celicne ploce."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Fan mlazn"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Pauzirajte print"
|
||||
@ -830,9 +826,9 @@
|
||||
"Preheating to unload"
|
||||
"Predgr. za praznj."
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Ventilator printa:"
|
||||
"Vent printa:"
|
||||
|
||||
#MSG_CARD_MENU c=18
|
||||
"Print from SD"
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Printer jos nije kalibriran. Molimo slijedite prirucnik, poglavlje Prvi koraci, odjeljak Tijek kalibracije."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Umetnite filament u ekstruder, a zatim pritisnite gumb za punjenje."
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"HIBA:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Extruder vent.:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Vedd le a tesztnyomatot az acellaprol."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Targyhuto"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Nyomtatas szunet"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Felfutes kiadashoz"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Targyhuto:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"A nyomtato meg nem volt bekalibralva. Kerlek, kovesd az utmutato Elso lepesek fejezetenek Kalibracio menete bekezdeset."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Targyhuto"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Kerlek helyezd be a filament veget az extruderbe, majd nyomd meg a gombot a betolteshez."
|
||||
|
@ -286,9 +286,9 @@
|
||||
"ERROR:"
|
||||
"ERRORE:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Ventola estrusore:"
|
||||
"Vent. estrusore:"
|
||||
|
||||
#MSG_INFO_EXTRUDER c=18
|
||||
"Extruder info"
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Ora rimuovete la stampa di prova dalla piastra in acciaio."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Vent. estr"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Metti in pausa"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Preriscald. scarico"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Vent.stam:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Stampante non ancora calibrata. Si prega di seguire il manuale, capitolo Primi Passi, sezione Sequenza di Calibrazione."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Vent.stamp"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Inserisci il filamento nell'estrusore, poi premi la manopola per caricarlo."
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"\x00"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"\x00"
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"\x00"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"\x00"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"\x00"
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"\x00"
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"\x00"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"\x00"
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"\x00"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"\x00"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"\x00"
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"\x00"
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"FOUT:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"\x00"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Verwijder nu de testprint van staalplaat."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Tuit fan"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Print pauzeren"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Opwarmen uitwerpen"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"\x00"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Printer is nog niet gekalibreerd. Volg de handleiding, hoofdstuk First steps, sectie Calibration flow."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Steek a.u.b. filament in de extruder en druk op de knop om het te laden."
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"BLAD:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"WentHotend:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Teraz zdejmij wydruk testowy ze stolu."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"WentHotend"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Wstrzym. wydruku"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Nagrzew. do rozlad."
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"WentWydruk:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Drukarka nie byla jeszcze kalibrowana. Kieruj sie Samouczkiem: rozdzial Pierwsze Kroki, sekcja Konfiguracja przed drukowaniem."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"WentWydruk"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Wsun filament do ekstrudera i nacisnij pokretlo, aby go zaladowac."
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"EROARE:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Vent. extruder:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Acum inlaturati printul de test de pe suprafata de print."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"Vent. varf"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Pauza print"
|
||||
@ -830,9 +826,9 @@
|
||||
"Preheating to unload"
|
||||
"Preincalzire unload"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Ventilator print:"
|
||||
"Vent. print:"
|
||||
|
||||
#MSG_CARD_MENU c=18
|
||||
"Print from SD"
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Imprimanta nu a fost calibrata inca. Va rugam sa folositi manualul, capitolul First steps, sectiunea Calibration flow."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Vent.print"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Va rugam introduceti filamentul in extruder apoi apasati butonul pentru a-l incarca."
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"CHYBA:"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"Lavy vent.:"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"Teraz odstrante testovaci vytlacok z platne."
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"V. trysky"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"Pozastavit tlac"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"Predhrev k vybratiu"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"Tlacovy vent.:"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"Tlaciaren nebola este skalibrovana. Postupujte prosim podla manualu, kapitola Zaciname, odstavec Postup kalibracie."
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"Tlacovy v."
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"Prosim vlozte filament do extruderu a stlacte tlacidlo k jeho zavedeniu"
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"\x00"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"\x00"
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"\x00"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"\x00"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"\x00"
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"\x00"
|
||||
|
@ -286,7 +286,7 @@
|
||||
"ERROR:"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||
"Extruder fan:"
|
||||
"\x00"
|
||||
|
||||
@ -706,10 +706,6 @@
|
||||
"Now remove the test print from steel sheet."
|
||||
"\x00"
|
||||
|
||||
#MSG_NOZZLE_FAN c=10
|
||||
"Nozzle FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_PAUSE_PRINT c=18
|
||||
"Pause print"
|
||||
"\x00"
|
||||
@ -830,7 +826,7 @@
|
||||
"Preheating to unload"
|
||||
"\x00"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
#MSG_PRINT_FAN_SPEED c=16
|
||||
"Print fan:"
|
||||
"\x00"
|
||||
|
||||
@ -854,10 +850,6 @@
|
||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
"\x00"
|
||||
|
||||
#MSG_PRINT_FAN c=10
|
||||
"Print FAN"
|
||||
"\x00"
|
||||
|
||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
"Please insert filament into the extruder, then press the knob to load it."
|
||||
"\x00"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -375,7 +375,7 @@ msgstr "Tamno"
|
||||
msgid "ERROR:"
|
||||
msgstr "POGRESKA:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Ekstruder vent:"
|
||||
@ -900,11 +900,6 @@ msgstr "Pronadene stare postavke. Postavit ce se zadani PID, Esteps itd."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Sada uklonite probni print sa celicne ploce."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Fan mlazn"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Predgr. za punjenje"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Predgr. za praznj."
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Ventilator printa:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Pritisnite gumb za nastavak temperature mlaznice."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Printer jos nije kalibriran. Molimo slijedite prirucnik, poglavlje Prvi koraci, odjeljak Tijek kalibracije."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Sotet"
|
||||
msgid "ERROR:"
|
||||
msgstr "HIBA:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Extruder vent.:"
|
||||
@ -900,11 +900,6 @@ msgstr "Regi beallitasokat talaltam. Az alap PID, Esteps, stb. lesz beallitva."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Vedd le a tesztnyomatot az acellaprol."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Targyhuto"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Felfutes betolteshez"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Felfutes kiadashoz"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Targyhuto:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Nyomd meg a gombot a fuvoka ismetelt felfutesehez."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "A nyomtato meg nem volt bekalibralva. Kerlek, kovesd az utmutato Elso lepesek fejezetenek Kalibracio menete bekezdeset."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Targyhuto"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr "FOUT:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr "Oude instellingen gevonden. Standaard PID, E-steps etc. instellingen wor
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Verwijder nu de testprint van staalplaat."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Tuit fan"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Opwarmen invoeren"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Opwarmen uitwerpen"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr "Druk op de knop om de temperatuur van de tuit te hervatten."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Printer is nog niet gekalibreerd. Volg de handleiding, hoofdstuk First steps, sectie Calibration flow."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -375,7 +375,7 @@ msgstr "Minim"
|
||||
msgid "ERROR:"
|
||||
msgstr "EROARE:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Vent. extruder:"
|
||||
@ -900,11 +900,6 @@ msgstr "Setari vechi detectate. PID, Esteps etc. de baza vor fi setate."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Acum inlaturati printul de test de pe suprafata de print."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Vent. varf"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Preincalzire load"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Preincalzire unload"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Ventilator print:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Apasati butonul pentru a restabili temperatura extruder-ului."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Imprimanta nu a fost calibrata inca. Va rugam sa folositi manualul, capitolul First steps, sectiunea Calibration flow."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Vent.print"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Temny"
|
||||
msgid "ERROR:"
|
||||
msgstr "CHYBA:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Lavy vent.:"
|
||||
@ -900,11 +900,6 @@ msgstr "Neplatne hodnoty nastavenia. Bude pouzite predvolene PID, Esteps atd."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Teraz odstrante testovaci vytlacok z platne."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "V. trysky"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Predhrev k zavedeniu"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Predhrev k vybratiu"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Tlacovy vent.:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Pre pokracovanie nahrievania trysky stlacte tlacidlo."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Tlaciaren nebola este skalibrovana. Postupujte prosim podla manualu, kapitola Zaciname, odstavec Postup kalibracie."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Tlacovy v."
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Temny"
|
||||
msgid "ERROR:"
|
||||
msgstr "CHYBA:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Levy vent.:"
|
||||
@ -900,11 +900,6 @@ msgstr "Neplatne hodnoty nastaveni. Bude pouzito vychozi PID, Esteps atd."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Nyni odstrante testovaci vytisk z tiskoveho platu."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "V. trysky"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Predehrev k zavedeni"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Predehrev k vyjmuti"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Tiskovy vent.:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Pro pokracovani nahrivani trysky stisknete tlacitko."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Tiskarna nebyla jeste zkalibrovana. Postupujte prosim podle manualu, kapitola Zaciname, odstavec Postup kalibrace."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Tiskovy v."
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Dimm"
|
||||
msgid "ERROR:"
|
||||
msgstr "FEHLER:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Extruderlüfter:"
|
||||
@ -900,11 +900,6 @@ msgstr "Alte Einstellungen gefunden. Standard PID, E-Steps u.s.w. werden gesetzt
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Testdruck jetzt von Stahlblech entfernen."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Drucklüft."
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Heizen zum Laden"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Heizen zum Entladen"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Drucklüfter:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Drücken Sie den Knopf um die Düsentemperatur wiederherzustellen"
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Drucker wurde noch nicht kalibriert. Bitte folgen Sie dem Handbuch, Kapitel Erste Schritte, Abschnitt Kalibrie- rungsablauf."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Drucklüft."
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Oscuro"
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Vent.extrusor:"
|
||||
@ -900,11 +900,6 @@ msgstr "Se han encontrado ajustes anteriores. Se ajustara el PID, los pasos del
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Ahora retira la prueba de la lamina de acero."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Vent. capa"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Precalent. cargar"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Precalent. descargar"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Vent.fusor:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Presione el dial para continuar con la temperatura de la boquilla."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Impresora no esta calibrada todavia. Por favor usa el manual capitulo Primeros pasos Calibracion flujo."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Vent. extr"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Sombre"
|
||||
msgid "ERROR:"
|
||||
msgstr "ERREUR:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Ventilo extrudeur:"
|
||||
@ -900,11 +900,6 @@ msgstr "Anciens reglages trouves. Le PID, les Esteps etc. par defaut seront regl
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Retirez maintenant l'impression de test de la plaque en acier."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Vent. buse"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Chauffe pour charger"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Chauf.pour decharger"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Vent. impr:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Appuyez sur le bouton pour rechauffer la buse."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "L'imprimante n'a pas encore ete calibree. Suivez le manuel, chapitre Premiers pas, section Processus de calibration."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Vent. impr"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Tamno"
|
||||
msgid "ERROR:"
|
||||
msgstr "POGRESKA:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Ekstruder vent:"
|
||||
@ -900,11 +900,6 @@ msgstr "Pronadene stare postavke. Postavit ce se zadani PID, Esteps itd."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Sada uklonite probni print sa celicne ploce."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Fan mlazn"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Predgr. za punjenje"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Predgr. za praznj."
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Ventilator printa:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Pritisnite gumb za nastavak temperature mlaznice."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Printer jos nije kalibriran. Molimo slijedite prirucnik, poglavlje Prvi koraci, odjeljak Tijek kalibracije."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Sotet"
|
||||
msgid "ERROR:"
|
||||
msgstr "HIBA:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Extruder vent.:"
|
||||
@ -900,11 +900,6 @@ msgstr "Regi beallitasokat talaltam. Az alap PID, Esteps, stb. lesz beallitva."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Vedd le a tesztnyomatot az acellaprol."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Targyhuto"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Felfutes betolteshez"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Felfutes kiadashoz"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Targyhuto:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Nyomd meg a gombot a fuvoka ismetelt felfutesehez."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "A nyomtato meg nem volt bekalibralva. Kerlek, kovesd az utmutato Elso lepesek fejezetenek Kalibracio menete bekezdeset."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Targyhuto"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Scuro"
|
||||
msgid "ERROR:"
|
||||
msgstr "ERRORE:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Ventola estrusore:"
|
||||
@ -900,11 +900,6 @@ msgstr "Sono state trovate impostazioni vecchie. Verranno impostati i valori pre
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Ora rimuovete la stampa di prova dalla piastra in acciaio."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Vent. estr"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Preriscald. carico"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Preriscald. scarico"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Vent.stam:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Premete la manopola per recuperare la temperatura dell'ugello."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Stampante non ancora calibrata. Si prega di seguire il manuale, capitolo Primi Passi, sezione Sequenza di Calibrazione."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Vent.stamp"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr "FOUT:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr "Oude instellingen gevonden. Standaard PID, E-steps etc. instellingen wor
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Verwijder nu de testprint van staalplaat."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Tuit fan"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Opwarmen invoeren"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Opwarmen uitwerpen"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr "Druk op de knop om de temperatuur van de tuit te hervatten."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Printer is nog niet gekalibreerd. Volg de handleiding, hoofdstuk First steps, sectie Calibration flow."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Sciemn"
|
||||
msgid "ERROR:"
|
||||
msgstr "BLAD:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "WentHotend:"
|
||||
@ -900,11 +900,6 @@ msgstr "Znaleziono stare ustawienia. Zostana przywrocone domyslne ust. PID, Este
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Teraz zdejmij wydruk testowy ze stolu."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "WentHotend"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Nagrzew.do ladowania"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Nagrzew. do rozlad."
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "WentWydruk:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Wcisnij pokretlo aby wznowic podgrzewanie dyszy."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Drukarka nie byla jeszcze kalibrowana. Kieruj sie Samouczkiem: rozdzial Pierwsze Kroki, sekcja Konfiguracja przed drukowaniem."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "WentWydruk"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Minim"
|
||||
msgid "ERROR:"
|
||||
msgstr "EROARE:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Vent. extruder:"
|
||||
@ -900,11 +900,6 @@ msgstr "Setari vechi detectate. PID, Esteps etc. de baza vor fi setate."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Acum inlaturati printul de test de pe suprafata de print."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "Vent. varf"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Preincalzire load"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Preincalzire unload"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Ventilator print:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Apasati butonul pentru a restabili temperatura extruder-ului."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Imprimanta nu a fost calibrata inca. Va rugam sa folositi manualul, capitolul First steps, sectiunea Calibration flow."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Vent.print"
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr "Temny"
|
||||
msgid "ERROR:"
|
||||
msgstr "CHYBA:"
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr "Lavy vent.:"
|
||||
@ -900,11 +900,6 @@ msgstr "Neplatne hodnoty nastavenia. Bude pouzite predvolene PID, Esteps atd."
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr "Teraz odstrante testovaci vytlacok z platne."
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr "V. trysky"
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr "Predhrev k zavedeniu"
|
||||
msgid "Preheating to unload"
|
||||
msgstr "Predhrev k vybratiu"
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr "Tlacovy vent.:"
|
||||
@ -1085,11 +1080,6 @@ msgstr "Pre pokracovanie nahrievania trysky stlacte tlacidlo."
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr "Tlaciaren nebola este skalibrovana. Postupujte prosim podla manualu, kapitola Zaciname, odstavec Postup kalibracie."
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr "Tlacovy v."
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
@ -375,7 +375,7 @@ msgstr ""
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8419
|
||||
msgid "Extruder fan:"
|
||||
msgstr ""
|
||||
@ -900,11 +900,6 @@ msgstr ""
|
||||
msgid "Now remove the test print from steel sheet."
|
||||
msgstr ""
|
||||
|
||||
# MSG_NOZZLE_FAN c=10
|
||||
#: ultralcd.cpp:1446
|
||||
msgid "Nozzle FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_PAUSE_PRINT c=18
|
||||
#: messages.c:74
|
||||
msgid "Pause print"
|
||||
@ -1055,7 +1050,7 @@ msgstr ""
|
||||
msgid "Preheating to unload"
|
||||
msgstr ""
|
||||
|
||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
# MSG_PRINT_FAN_SPEED c=16
|
||||
#: ultralcd.cpp:8422
|
||||
msgid "Print fan:"
|
||||
msgstr ""
|
||||
@ -1085,11 +1080,6 @@ msgstr ""
|
||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||
msgstr ""
|
||||
|
||||
# MSG_PRINT_FAN c=10
|
||||
#: ultralcd.cpp:1447
|
||||
msgid "Print FAN"
|
||||
msgstr ""
|
||||
|
||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||
#: ultralcd.cpp:4818
|
||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||
|
Loading…
Reference in New Issue
Block a user