MBL toggle and cleanup

This commit is contained in:
Alex Voinea 2019-11-09 20:58:56 +02:00
parent 20a59f5f40
commit 11428388c6
10 changed files with 218 additions and 567 deletions

View File

@ -125,6 +125,9 @@ const char MSG_SOUND[] PROGMEM_I1 = ISTR("Sound"); ////
const char MSG_SOUND_LOUD[] PROGMEM_I1 = ISTR("Loud"); //// const char MSG_SOUND_LOUD[] PROGMEM_I1 = ISTR("Loud"); ////
const char MSG_SOUND_ONCE[] PROGMEM_I1 = ISTR("Once"); //// const char MSG_SOUND_ONCE[] PROGMEM_I1 = ISTR("Once"); ////
const char MSG_SOUND_BLIND[] PROGMEM_I1 = ISTR("Assist"); //// const char MSG_SOUND_BLIND[] PROGMEM_I1 = ISTR("Assist"); ////
const char MSG_MESH[] PROGMEM_I1 = ISTR("Mesh"); ////
const char MSG_Z_PROBE_NR[] PROGMEM_I1 = ISTR("Z-probe nr."); ////
const char MSG_MAGNETS_COMP[] PROGMEM_I1 = ISTR("Magnets comp."); ////
//not internationalized messages //not internationalized messages
const char MSG_SD_WORKDIR_FAIL[] PROGMEM_N1 = "workDir open failed"; //// const char MSG_SD_WORKDIR_FAIL[] PROGMEM_N1 = "workDir open failed"; ////

View File

@ -125,6 +125,9 @@ extern const char MSG_SOUND[];
extern const char MSG_SOUND_LOUD[]; extern const char MSG_SOUND_LOUD[];
extern const char MSG_SOUND_ONCE[]; extern const char MSG_SOUND_ONCE[];
extern const char MSG_SOUND_BLIND[]; extern const char MSG_SOUND_BLIND[];
extern const char MSG_MESH[];
extern const char MSG_Z_PROBE_NR[];
extern const char MSG_MAGNETS_COMP[];
//not internationalized messages //not internationalized messages
extern const char MSG_BROWNOUT_RESET[]; extern const char MSG_BROWNOUT_RESET[];

View File

@ -5530,7 +5530,6 @@ eeprom_update_word((uint16_t*)EEPROM_NOZZLE_DIAMETER_uM,nDiameter);
#define SETTINGS_NOZZLE \ #define SETTINGS_NOZZLE \
do\ do\
{\ {\
char sNozzleDiam[5];/*enough for two decimals*/\
float fNozzleDiam;\ float fNozzleDiam;\
switch(oNozzleDiameter)\ switch(oNozzleDiameter)\
{\ {\
@ -5539,8 +5538,7 @@ do\
case ClNozzleDiameter::_Diameter_600: fNozzleDiam = 0.6f; break;\ case ClNozzleDiameter::_Diameter_600: fNozzleDiam = 0.6f; break;\
default: fNozzleDiam = 0.4f; break;\ default: fNozzleDiam = 0.4f; break;\
}\ }\
sprintf_P(sNozzleDiam, PSTR("%.2f"), fNozzleDiam);\ MENU_ITEM_TOGGLE(_T(MSG_NOZZLE_DIAMETER), ftostr12ns(fNozzleDiam), lcd_nozzle_diameter_set);\
MENU_ITEM_TOGGLE(_T(MSG_NOZZLE_DIAMETER), sNozzleDiam, lcd_nozzle_diameter_set);\
}\ }\
while (0) while (0)
@ -7105,21 +7103,19 @@ static void lcd_mesh_bed_leveling_settings()
bool magnet_elimination = (eeprom_read_byte((uint8_t*)EEPROM_MBL_MAGNET_ELIMINATION) > 0); bool magnet_elimination = (eeprom_read_byte((uint8_t*)EEPROM_MBL_MAGNET_ELIMINATION) > 0);
uint8_t points_nr = eeprom_read_byte((uint8_t*)EEPROM_MBL_POINTS_NR); uint8_t points_nr = eeprom_read_byte((uint8_t*)EEPROM_MBL_POINTS_NR);
char sToggle[4]; //enough for nxn format
MENU_BEGIN(); MENU_BEGIN();
MENU_ITEM_BACK_P(_T(MSG_SETTINGS)); MENU_ITEM_BACK_P(_T(MSG_SETTINGS));
if(points_nr == 3) MENU_ITEM_FUNCTION_P(_i("Mesh [3x3]"), mbl_mesh_toggle); ////MSG_MESH_3x3 c=18 sToggle[0] = points_nr + '0';
else MENU_ITEM_FUNCTION_P(_i("Mesh [7x7]"), mbl_mesh_toggle); ////MSG_MESH_7x7 c=18 sToggle[1] = 'x';
switch (mbl_z_probe_nr) { sToggle[2] = points_nr + '0';
case 1: MENU_ITEM_FUNCTION_P(_i("Z-probe nr. [1]"), mbl_probe_nr_toggle); break; ////MSG_Z_PROBE_NR_1 c=18 sToggle[3] = 0;
case 5: MENU_ITEM_FUNCTION_P(_i("Z-probe nr. [5]"), mbl_probe_nr_toggle); break; ////MSG_Z_PROBE_NR_1 c=18 MENU_ITEM_TOGGLE(_T(MSG_MESH), sToggle, mbl_mesh_toggle);
default: MENU_ITEM_FUNCTION_P(_i("Z-probe nr. [3]"), mbl_probe_nr_toggle); break; ////MSG_Z_PROBE_NR_1 c=18 sToggle[0] = mbl_z_probe_nr + '0';
} sToggle[1] = 0;
if (points_nr == 7) { MENU_ITEM_TOGGLE(_T(MSG_Z_PROBE_NR), sToggle, mbl_probe_nr_toggle);
if (magnet_elimination) MENU_ITEM_FUNCTION_P(_i("Magnets comp. [On]"), mbl_magnets_elimination_toggle); ////MSG_MAGNETS_COMP_ON c=18 MENU_ITEM_TOGGLE_P(_T(MSG_MAGNETS_COMP), (points_nr == 7) ? (magnet_elimination ? _T(MSG_ON): _T(MSG_OFF)) : _T(MSG_NA), mbl_magnets_elimination_toggle);
else MENU_ITEM_FUNCTION_P(_i("Magnets comp.[Off]"), mbl_magnets_elimination_toggle); ////MSG_MAGNETS_COMP_OFF c=18
}
else menu_item_text_P(_i("Magnets comp.[N/A]")); ////MSG_MAGNETS_COMP_NA c=18
MENU_END(); MENU_END();
//SETTINGS_MBL_MODE; //SETTINGS_MBL_MODE;
} }

View File

@ -912,14 +912,14 @@
# #
"FINDA:" "FINDA:"
# #MSG_FIRMWARE
"Firmware [none]" "Firmware"
# #MSG_STRICT
"Firmware [strict]" "Strict"
# #MSG_WARN
"Firmware [warn]" "Warn"
# #
"HW Setup" "HW Setup"
@ -927,20 +927,11 @@
# #
"IR:" "IR:"
# #MSG_MAGNETS_COMP
"Magnets comp.[N/A]" "Magnets comp."
# #MSG_MESH
"Magnets comp.[Off]" "Mesh"
#
"Magnets comp. [On]"
#
"Mesh [3x3]"
#
"Mesh [7x7]"
# #
"Mesh bed leveling" "Mesh bed leveling"
@ -948,41 +939,17 @@
# #
"MK3S firmware detected on MK3 printer" "MK3S firmware detected on MK3 printer"
# #MSG_MMU_MODE
"MMU Mode [Normal]" "MMU Mode"
#
"MMU Mode[Stealth]"
# #
"Mode change in progress ..." "Mode change in progress ..."
# #MSG_MODEL
"Model [none]" "Model"
# #MSG_NOZZLE_DIAMETER
"Model [strict]" "Nozzle d."
#
"Model [warn]"
#
"Nozzle d. [0.25]"
#
"Nozzle d. [0.40]"
#
"Nozzle d. [0.60]"
#
"Nozzle [none]"
#
"Nozzle [strict]"
#
"Nozzle [warn]"
# #
"G-code sliced for a different level. Continue?" "G-code sliced for a different level. Continue?"
@ -1029,8 +996,8 @@
# #
"Sheet" "Sheet"
# #MSG_SOUND_BLIND
"Sound [assist]" "Assist"
# #
"Steel sheets" "Steel sheets"
@ -1038,11 +1005,5 @@
# #
"Z-correct:" "Z-correct:"
# #MSG_Z_PROBE_NR
"Z-probe nr. [1]" "Z-probe nr."
#
"Z-probe nr. [3]"
#
"Z-probe nr. [5]"

View File

@ -1218,17 +1218,17 @@
"FINDA:" "FINDA:"
"\x00" "\x00"
# #MSG_FIRMWARE
"Firmware [none]" "Firmware"
"Firmware [Zadne]" "\x00"
# #MSG_STRICT
"Firmware [strict]" "Strict"
"Firmware [Prisne]" "Prisne"
# #MSG_WARN
"Firmware [warn]" "Warn"
"Firmware[Varovat]" "Varovat"
# #
"HW Setup" "HW Setup"
@ -1238,25 +1238,13 @@
"IR:" "IR:"
"\x00" "\x00"
# #MSG_MAGNETS_COMP
"Magnets comp.[N/A]" "Magnets comp."
"Komp. magnetu[N/A]" "Komp. magnetu"
# #MSG_MESH
"Magnets comp.[Off]" "Mesh"
"Komp. magnetu[Vyp]" "\x00"
#
"Magnets comp. [On]"
"Komp. magnetu[Zap]"
#
"Mesh [3x3]"
"Mesh [3x3]"
#
"Mesh [7x7]"
"Mesh [7x7]"
# #
"Mesh bed leveling" "Mesh bed leveling"
@ -1266,53 +1254,21 @@
"MK3S firmware detected on MK3 printer" "MK3S firmware detected on MK3 printer"
"MK3S firmware detekovan na tiskarne MK3" "MK3S firmware detekovan na tiskarne MK3"
# #MSG_MMU_MODE
"MMU Mode [Normal]" "MMU Mode"
"MMU mod [Normal]" "MMU mod"
#
"MMU Mode[Stealth]"
"MMU Mod [Tichy]"
# #
"Mode change in progress ..." "Mode change in progress ..."
"Probiha zmena modu..." "Probiha zmena modu..."
# #MSG_MODEL
"Model [none]" "Model"
"Model [Zadne]" "\x00"
# #MSG_NOZZLE_DIAMETER
"Model [strict]" "Nozzle d."
"Model [Prisne]" "Tryska"
#
"Model [warn]"
"Model [Varovat]"
#
"Nozzle d. [0.25]"
"Tryska [0.25]"
#
"Nozzle d. [0.40]"
"Tryska [0.40]"
#
"Nozzle d. [0.60]"
"Tryska [0.60]"
#
"Nozzle [none]"
"Tryska [Zadne]"
#
"Nozzle [strict]"
"Tryska [Prisne]"
#
"Nozzle [warn]"
"Tryska [Varovat]"
# #
"G-code sliced for a different level. Continue?" "G-code sliced for a different level. Continue?"
@ -1374,9 +1330,9 @@
"Sheet" "Sheet"
"Plat" "Plat"
# #MSG_SOUND_BLIND
"Sound [assist]" "Assist"
"Zvuk [Asist.]" "Asist."
# #
"Steel sheets" "Steel sheets"
@ -1386,14 +1342,6 @@
"Z-correct:" "Z-correct:"
"Korekce Z:" "Korekce Z:"
# #MSG_Z_PROBE_NR
"Z-probe nr. [1]" "Z-probe nr."
"Pocet mereni Z [1]" "Pocet mereni Z"
#
"Z-probe nr. [3]"
"Pocet mereni Z [3]"
#
"Z-probe nr. [5]"
"Pocet mereni Z [5]"

View File

@ -1218,17 +1218,17 @@
"FINDA:" "FINDA:"
"\x00" "\x00"
# #MSG_FIRMWARE
"Firmware [none]" "Firmware"
"Firmware [ohne]" "\x00"
# #MSG_STRICT
"Firmware [strict]" "Strict"
"Firmware [strikt]" "Strikt"
# #MSG_WARN
"Firmware [warn]" "Warn"
"Firmware [warnen]" "Warnen"
# #
"HW Setup" "HW Setup"
@ -1238,25 +1238,13 @@
"IR:" "IR:"
"\x00" "\x00"
# #MSG_MAGNETS_COMP
"Magnets comp.[N/A]" "Magnets comp."
"Magnet Komp. [nv]" "Magnet Komp."
# #MSG_MESH
"Magnets comp.[Off]" "Mesh"
"Magnet Komp. [Aus]" "Gitter"
#
"Magnets comp. [On]"
"Magnet Komp. [An]"
#
"Mesh [3x3]"
"Gitter [3x3]"
#
"Mesh [7x7]"
"Gitter [7x7]"
# #
"Mesh bed leveling" "Mesh bed leveling"
@ -1266,53 +1254,21 @@
"MK3S firmware detected on MK3 printer" "MK3S firmware detected on MK3 printer"
"MK3S-Firmware auf MK3-Drucker erkannt" "MK3S-Firmware auf MK3-Drucker erkannt"
# #MSG_MMU_MODE
"MMU Mode [Normal]" "MMU Mode"
"MMU Modus[Normal]" "MMU Modus"
#
"MMU Mode[Stealth]"
"MMU Mod.[Stealth]"
# #
"Mode change in progress ..." "Mode change in progress ..."
"Moduswechsel erfolgt..." "Moduswechsel erfolgt..."
# #MSG_MODEL
"Model [none]" "Model"
"Modell [ohne]" "Modell"
# #MSG_NOZZLE_DIAMETER
"Model [strict]" "Nozzle d."
"Modell [strikt]" "Duese D."
#
"Model [warn]"
"Modell [warnen]"
#
"Nozzle d. [0.25]"
"Duese D. [0.25]"
#
"Nozzle d. [0.40]"
"Duese D. [0.40]"
#
"Nozzle d. [0.60]"
"Duese D. [0.60]"
#
"Nozzle [none]"
"Duese [ohne]"
#
"Nozzle [strict]"
"Duese [strikt]"
#
"Nozzle [warn]"
"Duese [warnen]"
# #
"G-code sliced for a different level. Continue?" "G-code sliced for a different level. Continue?"
@ -1374,9 +1330,9 @@
"Sheet" "Sheet"
"Blech" "Blech"
# #MSG_SOUND_BLIND
"Sound [assist]" "Assist"
"Sound [Assist]" "\x00"
# #
"Steel sheets" "Steel sheets"
@ -1386,14 +1342,6 @@
"Z-correct:" "Z-correct:"
"Z-Korrektur:" "Z-Korrektur:"
# #MSG_Z_PROBE_NR
"Z-probe nr. [1]" "Z-probe nr."
"Z-Probe Nr. [1]" "\x00"
#
"Z-probe nr. [3]"
"Z-Probe Nr. [3]"
#
"Z-probe nr. [5]"
"Z-Probe Nr. [5]"

View File

@ -1218,17 +1218,17 @@
"FINDA:" "FINDA:"
"FINDA:" "FINDA:"
# #MSG_FIRMWARE
"Firmware [none]" "Firmware"
"Firmware[ninguno]" "\x00"
# #MSG_STRICT
"Firmware [strict]" "Strict"
"Firmware[estrict]" "Estrict"
# #MSG_WARN
"Firmware [warn]" "Warn"
"Firmware [aviso]" "Aviso"
# #
"HW Setup" "HW Setup"
@ -1238,25 +1238,13 @@
"IR:" "IR:"
"\x00" "\x00"
# #MSG_MAGNETS_COMP
"Magnets comp.[N/A]" "Magnets comp."
"Comp. imanes [N/A]" "Comp. imanes"
# #MSG_MESH
"Magnets comp.[Off]" "Mesh"
"Comp. imanes [Off]" "Malla"
#
"Magnets comp. [On]"
"Comp. imanes [On]"
#
"Mesh [3x3]"
"Malla [3x3]"
#
"Mesh [7x7]"
"Malla [7x7]"
# #
"Mesh bed leveling" "Mesh bed leveling"
@ -1266,53 +1254,21 @@
"MK3S firmware detected on MK3 printer" "MK3S firmware detected on MK3 printer"
"Firmware MK3S detectado en impresora MK3" "Firmware MK3S detectado en impresora MK3"
# #MSG_MMU_MODE
"MMU Mode [Normal]" "MMU Mode"
"Modo MMU [Normal]" "Modo MMU"
#
"MMU Mode[Stealth]"
"Modo MMU[Silenci]"
# #
"Mode change in progress ..." "Mode change in progress ..."
"Cambio de modo progresando ..." "Cambio de modo progresando ..."
# #MSG_MODEL
"Model [none]" "Model"
"Modelo [ninguno]" "Modelo"
# #MSG_NOZZLE_DIAMETER
"Model [strict]" "Nozzle d."
"Modelo [estricto]" "Diam. nozzl"
#
"Model [warn]"
"Modelo [aviso]"
#
"Nozzle d. [0.25]"
"Diam. nozzl[0.25]"
#
"Nozzle d. [0.40]"
"Diam. nozzl[0.40]"
#
"Nozzle d. [0.60]"
"Diam. nozzl[0.60]"
#
"Nozzle [none]"
"Nozzle [ninguno]"
#
"Nozzle [strict]"
"Nozzle [estricto]"
#
"Nozzle [warn]"
"Nozzle [aviso]"
# #
"G-code sliced for a different level. Continue?" "G-code sliced for a different level. Continue?"
@ -1374,9 +1330,9 @@
"Sheet" "Sheet"
"Lamina" "Lamina"
# #MSG_SOUND_BLIND
"Sound [assist]" "Assist"
"Sonido [asistido]" "Asistido"
# #
"Steel sheets" "Steel sheets"
@ -1386,14 +1342,6 @@
"Z-correct:" "Z-correct:"
"Corregir-Z:" "Corregir-Z:"
# #MSG_Z_PROBE_NR
"Z-probe nr. [1]" "Z-probe nr."
"Z-sensor nr. [1]" "Z-sensor nr."
#
"Z-probe nr. [3]"
"Z-sensor nr. [3]"
#
"Z-probe nr. [5]"
"Z-sensor nr. [5]"

View File

@ -1215,17 +1215,17 @@
"FINDA:" "FINDA:"
"FINDA:" "FINDA:"
# #MSG_FIRMWARE
"Firmware [none]" "Firmware"
"Firmware [aucune]" "\x00"
# #MSG_STRICT
"Firmware [strict]" "Strict"
"Firmware[stricte]" "Stricte"
# #MSG_WARN
"Firmware [warn]" "Warn"
"Firmware [avert]" "Avert"
# #
"HW Setup" "HW Setup"
@ -1235,24 +1235,12 @@
"IR:" "IR:"
"IR:" "IR:"
# #MSG_MAGNETS_COMP
"Magnets comp.[N/A]" "Magnets comp."
"Compens. aim.[N/A]" "Compens. aim."
# #MSG_MESH
"Magnets comp.[Off]" "Mesh"
"Compens. aim.[off]"
#
"Magnets comp. [On]"
"Compens. aim. [on]"
#
"Mesh [3x3]"
"\x00"
#
"Mesh [7x7]"
"\x00" "\x00"
# #
@ -1263,53 +1251,21 @@
"MK3S firmware detected on MK3 printer" "MK3S firmware detected on MK3 printer"
"Firmware MK3S detecte sur imprimante MK3" "Firmware MK3S detecte sur imprimante MK3"
# #MSG_MMU_MODE
"MMU Mode [Normal]" "MMU Mode"
"Mode MMU [normal]" "Mode MMU"
#
"MMU Mode[Stealth]"
"Mode MMU [feutre]"
# #
"Mode change in progress ..." "Mode change in progress ..."
"Changement de mode en cours..." "Changement de mode en cours..."
# #MSG_MODEL
"Model [none]" "Model"
"Modele [aucune]" "Modele"
# #MSG_NOZZLE_DIAMETER
"Model [strict]" "Nozzle d."
"Modele [stricte]" "Diam. buse"
#
"Model [warn]"
"Modele [avert]"
#
"Nozzle d. [0.25]"
"Diam. buse [0.25]"
#
"Nozzle d. [0.40]"
"Diam. buse [0.40]"
#
"Nozzle d. [0.60]"
"Diam. buse [0.60]"
#
"Nozzle [none]"
"Buse [aucune]"
#
"Nozzle [strict]"
"Buse [stricte]"
#
"Nozzle [warn]"
"Buse [avert]"
# #
"G-code sliced for a different level. Continue?" "G-code sliced for a different level. Continue?"
@ -1371,9 +1327,9 @@
"Sheet" "Sheet"
"Plaque" "Plaque"
# #MSG_SOUND_BLIND
"Sound [assist]" "Assist"
"Son [assist]" "\x00"
# #
"Steel sheets" "Steel sheets"
@ -1383,15 +1339,6 @@
"Z-correct:" "Z-correct:"
"Correct-Z:" "Correct-Z:"
# #MSG_Z_PROBE_NR
"Z-probe nr. [1]" "Z-probe nr."
"Mesurer x-fois [1]" "Mesurer x-fois"
#
"Z-probe nr. [3]"
"Mesurer x-fois [3]"
#
"Z-probe nr. [5]"
"Mesurer x-fois [5]"

View File

@ -1217,17 +1217,17 @@
"FINDA:" "FINDA:"
"\x00" "\x00"
# #MSG_FIRMWARE
"Firmware [none]" "Firmware"
"Firmware[nessuno]" "\x00"
# #MSG_STRICT
"Firmware [strict]" "Strict"
"Firmware [esatto]" "Esatto"
# #MSG_WARN
"Firmware [warn]" "Warn"
"Firmware [avviso]" "Avviso"
# #
"HW Setup" "HW Setup"
@ -1237,25 +1237,13 @@
"IR:" "IR:"
"\x00" "\x00"
# #MSG_MAGNETS_COMP
"Magnets comp.[N/A]" "Magnets comp."
"Comp. Magneti[N/A]" "Comp. Magneti"
# #MSG_MESH
"Magnets comp.[Off]" "Mesh"
"Comp. Magneti[off]" "Griglia"
#
"Magnets comp. [On]"
"Comp. Magneti [on]"
#
"Mesh [3x3]"
"Griglia [3x3]"
#
"Mesh [7x7]"
"Griglia [7x7]"
# #
"Mesh bed leveling" "Mesh bed leveling"
@ -1265,53 +1253,21 @@
"MK3S firmware detected on MK3 printer" "MK3S firmware detected on MK3 printer"
"Firmware MK3S rilevato su stampante MK3" "Firmware MK3S rilevato su stampante MK3"
# #MSG_MMU_MODE
"MMU Mode [Normal]" "MMU Mode"
"Modalita MMU [Normale]" "Mod. MMU"
#
"MMU Mode[Stealth]"
"Modalita MMU [Silenziosa]"
# #
"Mode change in progress ..." "Mode change in progress ..."
"Cambio modalita in corso ..." "Cambio modalita in corso ..."
# #MSG_MODEL
"Model [none]" "Model"
"Modello [nessuno]" "Modello"
# #MSG_NOZZLE_DIAMETER
"Model [strict]" "Nozzle d."
"Modello [esatto]" "Diam.Ugello"
#
"Model [warn]"
"Modello [avviso]"
#
"Nozzle d. [0.25]"
"Diam.Ugello[0.25]"
#
"Nozzle d. [0.40]"
"Diam.Ugello[0.40]"
#
"Nozzle d. [0.60]"
"Diam.Ugello[0.60]"
#
"Nozzle [none]"
"Ugello [nessuno]"
#
"Nozzle [strict]"
"Ugello [esatto]"
#
"Nozzle [warn]"
"Ugello [avviso]"
# #
"G-code sliced for a different level. Continue?" "G-code sliced for a different level. Continue?"
@ -1373,9 +1329,9 @@
"Sheet" "Sheet"
"Piano" "Piano"
# #MSG_SOUND_BLIND
"Sound [assist]" "Assist"
"Suono [assist.]" "Assist."
# #
"Steel sheets" "Steel sheets"
@ -1385,14 +1341,6 @@
"Z-correct:" "Z-correct:"
"Correzione-Z:" "Correzione-Z:"
# #MSG_Z_PROBE_NR
"Z-probe nr. [1]" "Z-probe nr."
"Z-probe nr. [1]" "\x00"
#
"Z-probe nr. [3]"
"Z-probe nr. [3]"
#
"Z-probe nr. [5]"
"Z-probe nr. [5]"

View File

@ -53,6 +53,7 @@
#MSG_AUTO_DEPLETE c=17 r=1 #MSG_AUTO_DEPLETE c=17 r=1
"SpoolJoin" "SpoolJoin"
"\x00" "\x00"
#MSG_AUTO_HOME #MSG_AUTO_HOME
"Auto home" "Auto home"
"Auto zerowanie" "Auto zerowanie"
@ -1216,17 +1217,17 @@
"FINDA:" "FINDA:"
"\x00" "\x00"
# #MSG_FIRMWARE
"Firmware [none]" "Firmware"
"Firmware [brak]" "\x00"
# #MSG_STRICT
"Firmware [strict]" "Strict"
"Firmware [restr.]" "Restr."
# #MSG_WARN
"Firmware [warn]" "Warn"
"Firmware[ostrzez]" "Ostrzez"
# #
"HW Setup" "HW Setup"
@ -1236,25 +1237,13 @@
"IR:" "IR:"
"\x00" "\x00"
# #MSG_MAGNETS_COMP
"Magnets comp.[N/A]" "Magnets comp."
"Kor. magnesow[N/D]" "Kor. magnesow"
# #MSG_MESH
"Magnets comp.[Off]" "Mesh"
"Kor. magnesow[wyl]" "Siatka"
#
"Magnets comp. [On]"
"Kor. magnesow [wl]"
#
"Mesh [3x3]"
"Siatka [3x3]"
#
"Mesh [7x7]"
"Siatka [7x7]"
# #
"Mesh bed leveling" "Mesh bed leveling"
@ -1264,53 +1253,21 @@
"MK3S firmware detected on MK3 printer" "MK3S firmware detected on MK3 printer"
"Wykryto firmware MK3S w drukarce MK3" "Wykryto firmware MK3S w drukarce MK3"
# #MSG_MMU_MODE
"MMU Mode [Normal]" "MMU Mode"
"Tryb MMU[Normaln]" "Tryb MMU"
#
"MMU Mode[Stealth]"
"Tryb MMU[Stealth]"
# #
"Mode change in progress ..." "Mode change in progress ..."
"Trwa zmiana trybu..." "Trwa zmiana trybu..."
# #MSG_MODEL
"Model [none]" "Model"
"Model [brak]" "\x00"
# #MSG_NOZZLE_DIAMETER
"Model [strict]" "Nozzle d."
"Model [restrykc.]" "Sr. dyszy"
#
"Model [warn]"
"Model [ostrzez.]"
#
"Nozzle d. [0.25]"
"Sr. dyszy [0,25]"
#
"Nozzle d. [0.40]"
"Sr. dyszy [0,40]"
#
"Nozzle d. [0.60]"
"Sr. dyszy [0,60]"
#
"Nozzle [none]"
"Dysza [brak]"
#
"Nozzle [strict]"
"Dysza [restrykc.]"
#
"Nozzle [warn]"
"Dysza [ostrzez.]"
# #
"G-code sliced for a different level. Continue?" "G-code sliced for a different level. Continue?"
@ -1372,9 +1329,9 @@
"Sheet" "Sheet"
"Plyta" "Plyta"
# #MSG_SOUND_BLIND
"Sound [assist]" "Assist"
"Dzwiek [asyst.]" "Asyst."
# #
"Steel sheets" "Steel sheets"
@ -1384,14 +1341,6 @@
"Z-correct:" "Z-correct:"
"Korekcja-Z:" "Korekcja-Z:"
# #MSG_Z_PROBE_NR
"Z-probe nr. [1]" "Z-probe nr."
"Ilosc Pomiarow [1]" "Ilosc Pomiarow"
#
"Z-probe nr. [3]"
"Ilosc Pomiarow [3]"
#
"Z-probe nr. [5]"
"Ilosc Pomiarow [5]"