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_FIL_RUNOUTS[] PROGMEM_I1 = ISTR("Fil. runouts"); ////c=15
|
||||||
const char MSG_FILAMENT[] PROGMEM_I1 = ISTR("Filament"); ////c=17
|
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_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_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_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
|
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_FIL_RUNOUTS[];
|
||||||
extern const char MSG_FILAMENT[];
|
extern const char MSG_FILAMENT[];
|
||||||
extern const char MSG_FAN_SPEED[];
|
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_CLEAN[];
|
||||||
extern const char MSG_FILAMENT_LOADED[];
|
extern const char MSG_FILAMENT_LOADED[];
|
||||||
extern const char MSG_FILAMENT_LOADING_T0[];
|
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}
|
//! @code{.unparsed}
|
||||||
//! |01234567890123456789|
|
//! |01234567890123456789|
|
||||||
//! |Nozzle FAN: 0000 RPM| MSG_NOZZLE_FAN c=10 SPEED c=3
|
//! |Extruder fan: 0000| MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
//! |Print FAN: 0000 RPM| MSG_PRINT_FAN c=10 SPEED c=3
|
//! |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()")
|
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_timeoutToStatus.stop(); //infinite timeout
|
||||||
lcd_home();
|
lcd_home();
|
||||||
static const size_t maxChars = 12;
|
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] );
|
||||||
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] );
|
|
||||||
menu_back_if_clicked();
|
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))
|
if ((screen >= TestScreen::ExtruderFan) && (screen <= TestScreen::FansOk))
|
||||||
{
|
{
|
||||||
//SERIAL_ECHOLNPGM("Fan test");
|
//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);
|
lcd_set_cursor(18, 2);
|
||||||
(screen < TestScreen::PrintFan) ? lcd_print(_indicator) : lcd_print("OK");
|
(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);
|
lcd_set_cursor(18, 3);
|
||||||
(screen < TestScreen::FansOk) ? lcd_print(_indicator) : lcd_print("OK");
|
(screen < TestScreen::FansOk) ? lcd_print(_indicator) : lcd_print("OK");
|
||||||
}
|
}
|
||||||
|
@ -214,7 +214,7 @@
|
|||||||
#MSG_ERROR c=10
|
#MSG_ERROR c=10
|
||||||
"ERROR:"
|
"ERROR:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
|
|
||||||
#MSG_INFO_EXTRUDER c=18
|
#MSG_INFO_EXTRUDER c=18
|
||||||
@ -529,9 +529,6 @@
|
|||||||
#MSG_REMOVE_TEST_PRINT c=20 r=4
|
#MSG_REMOVE_TEST_PRINT c=20 r=4
|
||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
|
|
||||||
@ -622,7 +619,7 @@
|
|||||||
#MSG_PREHEATING_TO_UNLOAD c=20
|
#MSG_PREHEATING_TO_UNLOAD c=20
|
||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
|
|
||||||
#MSG_CARD_MENU c=18
|
#MSG_CARD_MENU c=18
|
||||||
@ -640,9 +637,6 @@
|
|||||||
#MSG_FOLLOW_CALIBRATION_FLOW c=20 r=8
|
#MSG_FOLLOW_CALIBRATION_FLOW c=20 r=8
|
||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"CHYBA:"
|
"CHYBA:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Levy vent.:"
|
"Levy vent.:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Nyni odstrante testovaci vytisk z tiskoveho platu."
|
"Nyni odstrante testovaci vytisk z tiskoveho platu."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"V. trysky"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Pozastavit tisk"
|
"Pozastavit tisk"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Predehrev k vyjmuti"
|
"Predehrev k vyjmuti"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Tiskovy vent.:"
|
"Tiskovy vent.:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"Prosim vlozte filament do extruderu a stisknete tlacitko k jeho zavedeni"
|
"Prosim vlozte filament do extruderu a stisknete tlacitko k jeho zavedeni"
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"\x00"
|
"\x00"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_PRINT_FAN c=10
|
|
||||||
"Print FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"FEHLER:"
|
"FEHLER:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Extruderl\xf5fter:"
|
"Extruderl\xf5fter:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Testdruck jetzt von Stahlblech entfernen."
|
"Testdruck jetzt von Stahlblech entfernen."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"Druckl\xf5ft."
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Druck pausieren"
|
"Druck pausieren"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Heizen zum Entladen"
|
"Heizen zum Entladen"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Druckl\xf5fter:"
|
"Druckl\xf5fter:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"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."
|
"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:"
|
"ERROR:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Vent.extrusor:"
|
"Vent.extrusor:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Ahora retira la prueba de la lamina de acero."
|
"Ahora retira la prueba de la lamina de acero."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"Vent. capa"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Pausar impresion"
|
"Pausar impresion"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Precalent. descargar"
|
"Precalent. descargar"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Vent.fusor:"
|
"Vent.fusor:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"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."
|
"Por favor, coloca el filamento en el extrusor, luego presiona el dial para cargarlo."
|
||||||
|
@ -286,9 +286,9 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"ERREUR:"
|
"ERREUR:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Ventilo extrudeur:"
|
"Vent. extrudeur:"
|
||||||
|
|
||||||
#MSG_INFO_EXTRUDER c=18
|
#MSG_INFO_EXTRUDER c=18
|
||||||
"Extruder info"
|
"Extruder info"
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Retirez maintenant l'impression de test de la plaque en acier."
|
"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
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Pause de l'impr."
|
"Pause de l'impr."
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Chauf.pour decharger"
|
"Chauf.pour decharger"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Vent. impr:"
|
"Vent. impr:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"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."
|
"Veuillez inserer le filament dans l'extrudeur, puis appuyez sur le bouton pour le charger."
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"POGRESKA:"
|
"POGRESKA:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Ekstruder vent:"
|
"Ekstruder vent:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Sada uklonite probni print sa celicne ploce."
|
"Sada uklonite probni print sa celicne ploce."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"Fan mlazn"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Pauzirajte print"
|
"Pauzirajte print"
|
||||||
@ -830,9 +826,9 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Predgr. za praznj."
|
"Predgr. za praznj."
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Ventilator printa:"
|
"Vent printa:"
|
||||||
|
|
||||||
#MSG_CARD_MENU c=18
|
#MSG_CARD_MENU c=18
|
||||||
"Print from SD"
|
"Print from SD"
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"Umetnite filament u ekstruder, a zatim pritisnite gumb za punjenje."
|
"Umetnite filament u ekstruder, a zatim pritisnite gumb za punjenje."
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"HIBA:"
|
"HIBA:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Extruder vent.:"
|
"Extruder vent.:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Vedd le a tesztnyomatot az acellaprol."
|
"Vedd le a tesztnyomatot az acellaprol."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"Targyhuto"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Nyomtatas szunet"
|
"Nyomtatas szunet"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Felfutes kiadashoz"
|
"Felfutes kiadashoz"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Targyhuto:"
|
"Targyhuto:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"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."
|
"Kerlek helyezd be a filament veget az extruderbe, majd nyomd meg a gombot a betolteshez."
|
||||||
|
@ -286,9 +286,9 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"ERRORE:"
|
"ERRORE:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Ventola estrusore:"
|
"Vent. estrusore:"
|
||||||
|
|
||||||
#MSG_INFO_EXTRUDER c=18
|
#MSG_INFO_EXTRUDER c=18
|
||||||
"Extruder info"
|
"Extruder info"
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Ora rimuovete la stampa di prova dalla piastra in acciaio."
|
"Ora rimuovete la stampa di prova dalla piastra in acciaio."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"Vent. estr"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Metti in pausa"
|
"Metti in pausa"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Preriscald. scarico"
|
"Preriscald. scarico"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Vent.stam:"
|
"Vent.stam:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"Inserisci il filamento nell'estrusore, poi premi la manopola per caricarlo."
|
"Inserisci il filamento nell'estrusore, poi premi la manopola per caricarlo."
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"\x00"
|
"\x00"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_PRINT_FAN c=10
|
|
||||||
"Print FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"\x00"
|
"\x00"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_PRINT_FAN c=10
|
|
||||||
"Print FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"FOUT:"
|
"FOUT:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Verwijder nu de testprint van staalplaat."
|
"Verwijder nu de testprint van staalplaat."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"Tuit fan"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Print pauzeren"
|
"Print pauzeren"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Opwarmen uitwerpen"
|
"Opwarmen uitwerpen"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"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."
|
"Steek a.u.b. filament in de extruder en druk op de knop om het te laden."
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"BLAD:"
|
"BLAD:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"WentHotend:"
|
"WentHotend:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Teraz zdejmij wydruk testowy ze stolu."
|
"Teraz zdejmij wydruk testowy ze stolu."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"WentHotend"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Wstrzym. wydruku"
|
"Wstrzym. wydruku"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Nagrzew. do rozlad."
|
"Nagrzew. do rozlad."
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"WentWydruk:"
|
"WentWydruk:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"Wsun filament do ekstrudera i nacisnij pokretlo, aby go zaladowac."
|
"Wsun filament do ekstrudera i nacisnij pokretlo, aby go zaladowac."
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"EROARE:"
|
"EROARE:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Vent. extruder:"
|
"Vent. extruder:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Acum inlaturati printul de test de pe suprafata de print."
|
"Acum inlaturati printul de test de pe suprafata de print."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"Vent. varf"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Pauza print"
|
"Pauza print"
|
||||||
@ -830,9 +826,9 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Preincalzire unload"
|
"Preincalzire unload"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Ventilator print:"
|
"Vent. print:"
|
||||||
|
|
||||||
#MSG_CARD_MENU c=18
|
#MSG_CARD_MENU c=18
|
||||||
"Print from SD"
|
"Print from SD"
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"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."
|
"Va rugam introduceti filamentul in extruder apoi apasati butonul pentru a-l incarca."
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"CHYBA:"
|
"CHYBA:"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"Lavy vent.:"
|
"Lavy vent.:"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"Teraz odstrante testovaci vytlacok z platne."
|
"Teraz odstrante testovaci vytlacok z platne."
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"V. trysky"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"Pozastavit tlac"
|
"Pozastavit tlac"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"Predhrev k vybratiu"
|
"Predhrev k vybratiu"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"Tlacovy vent.:"
|
"Tlacovy vent.:"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"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."
|
"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
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"Prosim vlozte filament do extruderu a stlacte tlacidlo k jeho zavedeniu"
|
"Prosim vlozte filament do extruderu a stlacte tlacidlo k jeho zavedeniu"
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"\x00"
|
"\x00"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_PRINT_FAN c=10
|
|
||||||
"Print FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
@ -286,7 +286,7 @@
|
|||||||
"ERROR:"
|
"ERROR:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
#MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
"Extruder fan:"
|
"Extruder fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -706,10 +706,6 @@
|
|||||||
"Now remove the test print from steel sheet."
|
"Now remove the test print from steel sheet."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_NOZZLE_FAN c=10
|
|
||||||
"Nozzle FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_PAUSE_PRINT c=18
|
#MSG_PAUSE_PRINT c=18
|
||||||
"Pause print"
|
"Pause print"
|
||||||
"\x00"
|
"\x00"
|
||||||
@ -830,7 +826,7 @@
|
|||||||
"Preheating to unload"
|
"Preheating to unload"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
#MSG_PRINT_FAN_SPEED c=16
|
||||||
"Print fan:"
|
"Print fan:"
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
@ -854,10 +850,6 @@
|
|||||||
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
"Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
"\x00"
|
"\x00"
|
||||||
|
|
||||||
#MSG_PRINT_FAN c=10
|
|
||||||
"Print FAN"
|
|
||||||
"\x00"
|
|
||||||
|
|
||||||
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
#MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
"Please insert filament into the extruder, then press the knob to load it."
|
"Please insert filament into the extruder, then press the knob to load it."
|
||||||
"\x00"
|
"\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:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
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:"
|
msgid "ERROR:"
|
||||||
msgstr "POGRESKA:"
|
msgstr "POGRESKA:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Ekstruder vent:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Sada uklonite probni print sa celicne ploce."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Predgr. za punjenje"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Predgr. za praznj."
|
msgstr "Predgr. za praznj."
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Ventilator printa:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Sotet"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "HIBA:"
|
msgstr "HIBA:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Extruder vent.:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Vedd le a tesztnyomatot az acellaprol."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Felfutes betolteshez"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Felfutes kiadashoz"
|
msgstr "Felfutes kiadashoz"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Targyhuto:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
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:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "FOUT:"
|
msgstr "FOUT:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Verwijder nu de testprint van staalplaat."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Opwarmen invoeren"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Opwarmen uitwerpen"
|
msgstr "Opwarmen uitwerpen"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
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:"
|
msgid "ERROR:"
|
||||||
msgstr "EROARE:"
|
msgstr "EROARE:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Vent. extruder:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Acum inlaturati printul de test de pe suprafata de print."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Preincalzire load"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Preincalzire unload"
|
msgstr "Preincalzire unload"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Ventilator print:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Temny"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "CHYBA:"
|
msgstr "CHYBA:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Lavy vent.:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Teraz odstrante testovaci vytlacok z platne."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Predhrev k zavedeniu"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Predhrev k vybratiu"
|
msgstr "Predhrev k vybratiu"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Tlacovy vent.:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Temny"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "CHYBA:"
|
msgstr "CHYBA:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Levy vent.:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Nyni odstrante testovaci vytisk z tiskoveho platu."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Predehrev k zavedeni"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Predehrev k vyjmuti"
|
msgstr "Predehrev k vyjmuti"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Tiskovy vent.:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Dimm"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "FEHLER:"
|
msgstr "FEHLER:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Extruderlüfter:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Testdruck jetzt von Stahlblech entfernen."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Heizen zum Laden"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Heizen zum Entladen"
|
msgstr "Heizen zum Entladen"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Drucklüfter:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Oscuro"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Vent.extrusor:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Ahora retira la prueba de la lamina de acero."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Precalent. cargar"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Precalent. descargar"
|
msgstr "Precalent. descargar"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Vent.fusor:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Sombre"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "ERREUR:"
|
msgstr "ERREUR:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Ventilo extrudeur:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Retirez maintenant l'impression de test de la plaque en acier."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Chauffe pour charger"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Chauf.pour decharger"
|
msgstr "Chauf.pour decharger"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Vent. impr:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Tamno"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "POGRESKA:"
|
msgstr "POGRESKA:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Ekstruder vent:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Sada uklonite probni print sa celicne ploce."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Predgr. za punjenje"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Predgr. za praznj."
|
msgstr "Predgr. za praznj."
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Ventilator printa:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Sotet"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "HIBA:"
|
msgstr "HIBA:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Extruder vent.:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Vedd le a tesztnyomatot az acellaprol."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Felfutes betolteshez"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Felfutes kiadashoz"
|
msgstr "Felfutes kiadashoz"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Targyhuto:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Scuro"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "ERRORE:"
|
msgstr "ERRORE:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Ventola estrusore:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Ora rimuovete la stampa di prova dalla piastra in acciaio."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Preriscald. carico"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Preriscald. scarico"
|
msgstr "Preriscald. scarico"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Vent.stam:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "FOUT:"
|
msgstr "FOUT:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Verwijder nu de testprint van staalplaat."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Opwarmen invoeren"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Opwarmen uitwerpen"
|
msgstr "Opwarmen uitwerpen"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Sciemn"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "BLAD:"
|
msgstr "BLAD:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "WentHotend:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Teraz zdejmij wydruk testowy ze stolu."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Nagrzew.do ladowania"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Nagrzew. do rozlad."
|
msgstr "Nagrzew. do rozlad."
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "WentWydruk:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Minim"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "EROARE:"
|
msgstr "EROARE:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Vent. extruder:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Acum inlaturati printul de test de pe suprafata de print."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Preincalzire load"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Preincalzire unload"
|
msgstr "Preincalzire unload"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Ventilator print:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr "Temny"
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr "CHYBA:"
|
msgstr "CHYBA:"
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr "Lavy vent.:"
|
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."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr "Teraz odstrante testovaci vytlacok z platne."
|
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
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr "Predhrev k zavedeniu"
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr "Predhrev k vybratiu"
|
msgstr "Predhrev k vybratiu"
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr "Tlacovy vent.:"
|
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."
|
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."
|
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
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
@ -375,7 +375,7 @@ msgstr ""
|
|||||||
msgid "ERROR:"
|
msgid "ERROR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
# MSG_EXTRUDER_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8419
|
#: ultralcd.cpp:8419
|
||||||
msgid "Extruder fan:"
|
msgid "Extruder fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -900,11 +900,6 @@ msgstr ""
|
|||||||
msgid "Now remove the test print from steel sheet."
|
msgid "Now remove the test print from steel sheet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_NOZZLE_FAN c=10
|
|
||||||
#: ultralcd.cpp:1446
|
|
||||||
msgid "Nozzle FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_PAUSE_PRINT c=18
|
# MSG_PAUSE_PRINT c=18
|
||||||
#: messages.c:74
|
#: messages.c:74
|
||||||
msgid "Pause print"
|
msgid "Pause print"
|
||||||
@ -1055,7 +1050,7 @@ msgstr ""
|
|||||||
msgid "Preheating to unload"
|
msgid "Preheating to unload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
# MSG_PRINT_FAN_SPEED c=16
|
||||||
#: ultralcd.cpp:8422
|
#: ultralcd.cpp:8422
|
||||||
msgid "Print fan:"
|
msgid "Print fan:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1085,11 +1080,6 @@ msgstr ""
|
|||||||
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
msgid "Printer has not been calibrated yet. Please follow the manual, chapter First steps, section Calibration flow."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# MSG_PRINT_FAN c=10
|
|
||||||
#: ultralcd.cpp:1447
|
|
||||||
msgid "Print FAN"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
# MSG_WIZARD_LOAD_FILAMENT c=20 r=6
|
||||||
#: ultralcd.cpp:4818
|
#: ultralcd.cpp:4818
|
||||||
msgid "Please insert filament into the extruder, then press the knob to load it."
|
msgid "Please insert filament into the extruder, then press the knob to load it."
|
||||||
|
Loading…
Reference in New Issue
Block a user