Update translatable strings to match our extraction macros

Update pot and po files
This commit is contained in:
3d-gussner 2022-09-17 16:53:30 +02:00
parent ae8d1eb546
commit 068f4763e2
19 changed files with 639 additions and 350 deletions

View File

@ -200,7 +200,7 @@ static const char MSG_DESC_FSENSOR_DIDNT_GO_OFF[] PROGMEM_I1 = ISTR("Filament se
static const char MSG_DESC_PULLEY_STALLED[] PROGMEM_I1 = ISTR("Pulley motor stalled. Ensure the pulley can move and check the wiring."); ////MSG_DESC_PULLEY_STALLED c=20 r=8
static const char MSG_DESC_FSENSOR_TOO_EARLY[] PROGMEM_I1 = ISTR("Filament sensor triggered too early while loading to extruder. Check there isn't anything stuck in PTFE tube. Check that sensor reads properly."); ////MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
static const char MSG_DESC_SELECTOR_CANNOT_HOME[] PROGMEM_I1 = ISTR("The Selector cannot home properly. Check for anything blocking its movement."); ////MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
static const char MSG_DESC_CANNOT_MOVE[] PROGMEM_I1 = ISTR(""); // these errors have been disabled
static const char MSG_DESC_CANNOT_MOVE[] PROGMEM_I1 = ISTR(" "); /////MSG_DESC_CANNOT_MOVE c=20 //these errors have been disabled
//static const char MSG_DESC_SELECTOR_CANNOT_MOVE[] PROGMEM_I1 = ISTR("The Selector cannot move. Check for anything blocking its movement. Check the wiring is correct.");
static const char MSG_DESC_IDLER_CANNOT_HOME[] PROGMEM_I1 = ISTR("The Idler cannot home properly. Check for anything blocking its movement."); ////MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
//static const char MSG_DESC_IDLER_CANNOT_MOVE[] PROGMEM_I1 = ISTR("The Idler cannot move properly. Check for anything blocking its movement. Check the wiring is correct.");
@ -233,42 +233,42 @@ static const char MSG_DESC_FW_RUNTIME_ERROR[] PROGMEM_I1 = ISTR("Internal runtim
static const char MSG_DESC_UNLOAD_MANUALLY[] PROGMEM_I1 = ISTR("Unexpected FINDA reading. Ensure no filament is under FINDA and the selector is free. Check FINDA connection."); ////MSG_DESC_UNLOAD_MANUALLY c=20 r=8
static const char * const errorDescs[] PROGMEM = {
MSG_DESC_FINDA_DIDNT_TRIGGER,
MSG_DESC_FINDA_DIDNT_GO_OFF,
MSG_DESC_FSENSOR_DIDNT_TRIGGER,
MSG_DESC_FSENSOR_DIDNT_GO_OFF,
MSG_DESC_PULLEY_STALLED,
MSG_DESC_FSENSOR_TOO_EARLY,
MSG_DESC_SELECTOR_CANNOT_HOME,
MSG_DESC_CANNOT_MOVE,
MSG_DESC_IDLER_CANNOT_HOME,
MSG_DESC_CANNOT_MOVE,
MSG_DESC_TMC, // descPULLEY_WARNING_TMC_TOO_HOT,
MSG_DESC_TMC, // descSELECTOR_WARNING_TMC_TOO_HOT,
MSG_DESC_TMC, // descIDLER_WARNING_TMC_TOO_HOT,
MSG_DESC_TMC, // descPULLEY_TMC_OVERHEAT_ERROR,
MSG_DESC_TMC, // descSELECTOR_TMC_OVERHEAT_ERROR,
MSG_DESC_TMC, // descIDLER_TMC_OVERHEAT_ERROR,
MSG_DESC_TMC, // descPULLEY_TMC_DRIVER_ERROR,
MSG_DESC_TMC, // descSELECTOR_TMC_DRIVER_ERROR,
MSG_DESC_TMC, // descIDLER_TMC_DRIVER_ERROR,
MSG_DESC_TMC, // descPULLEY_TMC_DRIVER_RESET,
MSG_DESC_TMC, // descSELECTOR_TMC_DRIVER_RESET,
MSG_DESC_TMC, // descIDLER_TMC_DRIVER_RESET,
MSG_DESC_TMC, // descPULLEY_TMC_UNDERVOLTAGE_ERROR,
MSG_DESC_TMC, // descSELECTOR_TMC_UNDERVOLTAGE_ERROR,
MSG_DESC_TMC, // descIDLER_TMC_UNDERVOLTAGE_ERROR,
MSG_DESC_TMC, // descPULLEY_TMC_DRIVER_SHORTED,
MSG_DESC_TMC, // descSELECTOR_TMC_DRIVER_SHORTED,
MSG_DESC_TMC, // descIDLER_TMC_DRIVER_SHORTED,
MSG_DESC_MMU_NOT_RESPONDING,
MSG_DESC_COMMUNICATION_ERROR,
MSG_DESC_FILAMENT_ALREADY_LOADED,
MSG_DESC_INVALID_TOOL,
MSG_DESC_QUEUE_FULL,
MSG_DESC_FW_UPDATE_NEEDED,
MSG_DESC_FW_RUNTIME_ERROR,
MSG_DESC_UNLOAD_MANUALLY
_R(MSG_DESC_FINDA_DIDNT_TRIGGER),
_R(MSG_DESC_FINDA_DIDNT_GO_OFF),
_R(MSG_DESC_FSENSOR_DIDNT_TRIGGER),
_R(MSG_DESC_FSENSOR_DIDNT_GO_OFF),
_R(MSG_DESC_PULLEY_STALLED),
_R(MSG_DESC_FSENSOR_TOO_EARLY),
_R(MSG_DESC_SELECTOR_CANNOT_HOME),
_R(MSG_DESC_CANNOT_MOVE),
_R(MSG_DESC_IDLER_CANNOT_HOME),
_R(MSG_DESC_CANNOT_MOVE),
_R(MSG_DESC_TMC), // descPULLEY_WARNING_TMC_TOO_HOT
_R(MSG_DESC_TMC), // descSELECTOR_WARNING_TMC_TOO_HOT
_R(MSG_DESC_TMC), // descIDLER_WARNING_TMC_TOO_HOT
_R(MSG_DESC_TMC), // descPULLEY_TMC_OVERHEAT_ERROR
_R(MSG_DESC_TMC), // descSELECTOR_TMC_OVERHEAT_ERROR
_R(MSG_DESC_TMC), // descIDLER_TMC_OVERHEAT_ERROR
_R(MSG_DESC_TMC), // descPULLEY_TMC_DRIVER_ERROR
_R(MSG_DESC_TMC), // descSELECTOR_TMC_DRIVER_ERROR
_R(MSG_DESC_TMC), // descIDLER_TMC_DRIVER_ERROR
_R(MSG_DESC_TMC), // descPULLEY_TMC_DRIVER_RESET
_R(MSG_DESC_TMC), // descSELECTOR_TMC_DRIVER_RESET
_R(MSG_DESC_TMC), // descIDLER_TMC_DRIVER_RESET
_R(MSG_DESC_TMC), // descPULLEY_TMC_UNDERVOLTAGE_ERROR
_R(MSG_DESC_TMC), // descSELECTOR_TMC_UNDERVOLTAGE_ERROR
_R(MSG_DESC_TMC), // descIDLER_TMC_UNDERVOLTAGE_ERROR
_R(MSG_DESC_TMC), // descPULLEY_TMC_DRIVER_SHORTED
_R(MSG_DESC_TMC), // descSELECTOR_TMC_DRIVER_SHORTED
_R(MSG_DESC_TMC), // descIDLER_TMC_DRIVER_SHORTED
_R(MSG_DESC_MMU_NOT_RESPONDING),
_R(MSG_DESC_COMMUNICATION_ERROR),
_R(MSG_DESC_FILAMENT_ALREADY_LOADED),
_R(MSG_DESC_INVALID_TOOL),
_R(MSG_DESC_QUEUE_FULL),
_R(MSG_DESC_FW_UPDATE_NEEDED),
_R(MSG_DESC_FW_RUNTIME_ERROR),
_R(MSG_DESC_UNLOAD_MANUALLY)
};
// we have max 3 buttons/operations to select from

View File

@ -6,6 +6,13 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -242,7 +249,7 @@ msgid "Calibration done"
msgstr ""
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid ""
"Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -549,14 +556,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -690,21 +697,21 @@ msgid "Filament sensor"
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -920,7 +927,7 @@ msgid ""
msgstr ""
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware."
" If the issue persists, contact support."
@ -1045,7 +1052,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1077,14 +1084,14 @@ msgid "MMU load fails"
msgstr ""
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1157,7 +1164,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1618,7 +1634,7 @@ msgid ""
msgstr ""
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1659,7 +1675,7 @@ msgid "Rename"
msgstr ""
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2043,20 +2059,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2119,7 +2135,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector"
" is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -258,7 +265,7 @@ msgid "Calibration done"
msgstr "Kalibrace OK"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -570,14 +577,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -711,21 +718,21 @@ msgid "Filament sensor"
msgstr "Senzor filamentu"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -954,7 +961,7 @@ msgid ""
msgstr "Vlozte filament (nezavadejte) do extruderu a stisknete tlacitko"
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1079,7 +1086,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1111,14 +1118,14 @@ msgid "MMU load fails"
msgstr "MMU selhani zav"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1191,7 +1198,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1666,7 +1682,7 @@ msgstr ""
"Tisk zrusen."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1707,7 +1723,7 @@ msgid "Rename"
msgstr "Prejmenovat"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2099,20 +2115,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2179,7 +2195,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -251,7 +258,7 @@ msgid "Calibration done"
msgstr ""
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -557,14 +564,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -698,21 +705,21 @@ msgid "Filament sensor"
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -929,7 +936,7 @@ msgid ""
msgstr ""
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1054,7 +1061,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1086,14 +1093,14 @@ msgid "MMU load fails"
msgstr ""
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1166,7 +1173,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1627,7 +1643,7 @@ msgid ""
msgstr ""
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1668,7 +1684,7 @@ msgid "Rename"
msgstr ""
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2052,20 +2068,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2128,7 +2144,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -258,7 +265,7 @@ msgid "Calibration done"
msgstr "Kalibrierung OK"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
"Die Aktion kann nicht ausgeführt werden, das Filament ist bereits geladen. "
@ -574,7 +581,7 @@ msgid "FINDA DIDNT TRIGGER"
msgstr "FINDA N. AUSGELÖST"
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
@ -584,7 +591,7 @@ msgstr ""
"FINDA funktioniert."
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -720,7 +727,7 @@ msgid "Filament sensor"
msgstr "Filamentsensor"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
@ -729,7 +736,7 @@ msgstr ""
"sicher, dass sich das Fil. bewegen kann und der Sensor funktioniert."
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
@ -739,7 +746,7 @@ msgstr ""
"funktioniert."
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -975,7 +982,7 @@ msgstr ""
"den Knopf."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1103,7 +1110,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr "MMU FW UPDATE NÖTIG"
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr "MMU Firmware interner Fehler, bitte setzen Sie die MMU zurück."
@ -1135,7 +1142,7 @@ msgid "MMU load fails"
msgstr "MMU Ladefehler"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
@ -1145,7 +1152,7 @@ msgstr ""
"Support."
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1221,7 +1228,16 @@ msgid "Model"
msgstr "Modell"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr "Weiter Details online."
@ -1700,7 +1716,7 @@ msgstr ""
"den Wert in den Einstellungen. Druck abgebrochen."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
"Der Riemenscheiben- motor ist blockiert. Sicherstellen, dass sich die "
@ -1745,7 +1761,7 @@ msgid "Rename"
msgstr "Umbenennen"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2141,7 +2157,7 @@ msgid "Testing filament"
msgstr "Teste filament"
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2149,7 +2165,7 @@ msgstr ""
"ob irgendetwas seine Bewegung blockiert."
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
@ -2159,7 +2175,7 @@ msgstr ""
"neuesten Stand ist."
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2229,7 +2245,7 @@ msgid "UNLOAD MANUALLY"
msgstr "ENTLADE MANUELL"
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -257,7 +264,7 @@ msgid "Calibration done"
msgstr "Calibracion OK"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -570,14 +577,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -711,21 +718,21 @@ msgid "Filament sensor"
msgstr "Sensor de fil."
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -956,7 +963,7 @@ msgstr ""
"Inserte el filamento (no lo cargue) en el extrusor y luego presione el dial."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1081,7 +1088,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1113,14 +1120,14 @@ msgid "MMU load fails"
msgstr "Carga MMU falla"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1193,7 +1200,16 @@ msgid "Model"
msgstr "Modelo"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1676,7 +1692,7 @@ msgstr ""
"ajustes. Impresion cancelada."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1719,7 +1735,7 @@ msgid "Rename"
msgstr "Renombrar"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2118,20 +2134,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2199,7 +2215,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -258,7 +265,7 @@ msgid "Calibration done"
msgstr "Calibration terminee"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -573,14 +580,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -714,21 +721,21 @@ msgid "Filament sensor"
msgstr "Capteur de fil."
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -963,7 +970,7 @@ msgstr ""
"appuyez sur le bouton."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1088,7 +1095,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1120,14 +1127,14 @@ msgid "MMU load fails"
msgstr "Def. charg. MMU"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1200,7 +1207,16 @@ msgid "Model"
msgstr "Modele"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1680,7 +1696,7 @@ msgstr ""
"Code. Merci de verifier le parametre dans les reglages. Impression annulee."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1722,7 +1738,7 @@ msgid "Rename"
msgstr "Renommer"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2119,20 +2135,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2200,7 +2216,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -257,7 +264,7 @@ msgid "Calibration done"
msgstr "Kalibracija gotova"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -568,14 +575,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -709,21 +716,21 @@ msgid "Filament sensor"
msgstr "Senzor filamenta"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -954,7 +961,7 @@ msgstr ""
"Umetnite filament (nemojte ga puniti) u ekstruder i zatim pritisnite gumb."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1079,7 +1086,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1111,14 +1118,14 @@ msgid "MMU load fails"
msgstr "Neusp. MMU punj"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1191,7 +1198,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1665,7 +1681,7 @@ msgstr ""
"vrijednost u postavkama. Print je otkazan."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1708,7 +1724,7 @@ msgid "Rename"
msgstr "Preimenuj"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2106,20 +2122,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2186,7 +2202,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -257,7 +264,7 @@ msgid "Calibration done"
msgstr "Kalibracio kesz"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -571,14 +578,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -712,21 +719,21 @@ msgid "Filament sensor"
msgstr "Filament szenzor"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -958,7 +965,7 @@ msgstr ""
"gombot."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1083,7 +1090,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1115,14 +1122,14 @@ msgid "MMU load fails"
msgstr "MMU bet. hibak"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1195,7 +1202,16 @@ msgid "Model"
msgstr "Modell"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1672,7 +1688,7 @@ msgstr ""
"beallitasokban. Nyomtatas megallitva."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1715,7 +1731,7 @@ msgid "Rename"
msgstr "Atnevezes"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2110,20 +2126,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2191,7 +2207,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -257,7 +264,7 @@ msgid "Calibration done"
msgstr "Calibr. completa"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -571,14 +578,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -712,21 +719,21 @@ msgid "Filament sensor"
msgstr "Sensore filam."
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -957,7 +964,7 @@ msgstr ""
"Inserire filamento (senza caricarlo) nell'estrusore e premere la manopola."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1082,7 +1089,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1114,14 +1121,14 @@ msgid "MMU load fails"
msgstr "Car MMU falliti"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1194,7 +1201,16 @@ msgid "Model"
msgstr "Modello"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1670,7 +1686,7 @@ msgstr ""
"Stampa annullata."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1713,7 +1729,7 @@ msgid "Rename"
msgstr "Rinomina"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2110,20 +2126,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2191,7 +2207,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -251,7 +258,7 @@ msgid "Calibration done"
msgstr ""
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -557,14 +564,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -698,21 +705,21 @@ msgid "Filament sensor"
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -929,7 +936,7 @@ msgid ""
msgstr ""
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1054,7 +1061,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1086,14 +1093,14 @@ msgid "MMU load fails"
msgstr ""
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1166,7 +1173,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1627,7 +1643,7 @@ msgid ""
msgstr ""
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1668,7 +1684,7 @@ msgid "Rename"
msgstr ""
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2052,20 +2068,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2128,7 +2144,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -251,7 +258,7 @@ msgid "Calibration done"
msgstr ""
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -557,14 +564,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -698,21 +705,21 @@ msgid "Filament sensor"
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -929,7 +936,7 @@ msgid ""
msgstr ""
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1054,7 +1061,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1086,14 +1093,14 @@ msgid "MMU load fails"
msgstr ""
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1166,7 +1173,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1627,7 +1643,7 @@ msgid ""
msgstr ""
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1668,7 +1684,7 @@ msgid "Rename"
msgstr ""
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2052,20 +2068,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2128,7 +2144,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -258,10 +265,11 @@ msgid "Calibration done"
msgstr "Kalibratie klaar"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
"De actie kan niet worden uitgevoerd, de filament is al geladen. Eerst uitladen."
"De actie kan niet worden uitgevoerd, de filament is al geladen. Eerst "
"uitladen."
#. MSG_SD_REMOVED c=20
#: ../../Firmware/ultralcd.cpp:7700
@ -573,16 +581,16 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
"De FINDA schakelde niet uit bij het lossen. Probeer Fil. handmatig "
"te ontladen. Controleer of Fil. kan bewegen en of de FINDA werkt."
"De FINDA schakelde niet uit bij het lossen. Probeer Fil. handmatig te "
"ontladen. Controleer of Fil. kan bewegen en of de FINDA werkt."
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -718,7 +726,7 @@ msgid "Filament sensor"
msgstr "Filamentsensor"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
@ -727,7 +735,7 @@ msgstr ""
"Controleer of het filament kan bewegen en de sensor werkt."
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
@ -736,13 +744,13 @@ msgstr ""
"Controleer of het filament de fsensor heeft bereikt en de sensor werkt."
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
msgstr ""
"Filament sensor te vroeg geactiveerd tijdens laden naar extruder. Controleer of "
"er niets vastzit in de PTFE-buis. Controleer of de sensor goed leest."
"Filament sensor te vroeg geactiveerd tijdens laden naar extruder. Controleer "
"of er niets vastzit in de PTFE-buis. Controleer of de sensor goed leest."
#. MSG_FILAMENT_USED c=19
#: ../../Firmware/ultralcd.cpp:2363
@ -969,13 +977,13 @@ msgstr ""
"Steek a.u.b. filament (maar niet laden) in de extruder en druk op knop."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
msgstr ""
"Interne runtime fout. Probeer de MMU-eenheid te resetten of de firmware bij te "
"werken. Als het probleem aanhoudt, neem dan contact op met support."
"Interne runtime fout. Probeer de MMU-eenheid te resetten of de firmware bij "
"te werken. Als het probleem aanhoudt, neem dan contact op met support."
#. MSG_FILAMENT_LOADED c=20 r=2
#: ../../Firmware/messages.cpp:38 ../../Firmware/ultralcd.cpp:3827
@ -1096,7 +1104,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1128,7 +1136,7 @@ msgid "MMU load fails"
msgstr "MMU laadfout"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
@ -1137,7 +1145,7 @@ msgstr ""
"Als het probleem aanhoudt, neem dan contact op met support."
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1212,7 +1220,16 @@ msgid "Model"
msgstr "Model"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1690,7 +1707,7 @@ msgstr ""
"de waarde in de instellingen. Afdrukken geannuleerd."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1732,7 +1749,7 @@ msgid "Rename"
msgstr "Hernoem"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2132,20 +2149,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2213,7 +2230,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -258,7 +265,7 @@ msgid "Calibration done"
msgstr "Kalibrering ferdig"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -571,14 +578,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -712,21 +719,21 @@ msgid "Filament sensor"
msgstr "Filamentsensor"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -951,7 +958,7 @@ msgid ""
msgstr "Sett inn filamentet i ekstruderen og deretter trykk inn valghjulet."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1076,7 +1083,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1108,14 +1115,14 @@ msgid "MMU load fails"
msgstr "MMU lastefeil"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1188,7 +1195,16 @@ msgid "Model"
msgstr "Modell"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1660,7 +1676,7 @@ msgstr ""
"hva som er satt. Print avbrutt."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1701,7 +1717,7 @@ msgid "Rename"
msgstr "Gi nytt navn"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2092,20 +2108,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2173,7 +2189,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -257,7 +264,7 @@ msgid "Calibration done"
msgstr "Kalibracja OK"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -571,14 +578,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -712,21 +719,21 @@ msgid "Filament sensor"
msgstr "Czujnik filamentu"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -955,7 +962,7 @@ msgstr ""
"pokretlo."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1080,7 +1087,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1112,14 +1119,14 @@ msgid "MMU load fails"
msgstr "Bledy lad. MMU"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1192,7 +1199,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1667,7 +1683,7 @@ msgstr ""
"Srednica dyszy rozni sie od tej w G-code. Sprawdz ustawienia. Druk anulowany."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1708,7 +1724,7 @@ msgid "Rename"
msgstr "Zmien nazwe"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2105,20 +2121,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2186,7 +2202,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -259,7 +266,7 @@ msgid "Calibration done"
msgstr "Calibrare gata"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -572,14 +579,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -713,21 +720,21 @@ msgid "Filament sensor"
msgstr "Senz. de filament"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -956,7 +963,7 @@ msgid ""
msgstr "Infige filamentul (nu-l incarca) in extruder si apasa butonul."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1081,7 +1088,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1113,14 +1120,14 @@ msgid "MMU load fails"
msgstr "Err. incarc MMU"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1193,7 +1200,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1668,7 +1684,7 @@ msgstr ""
"valoarea in setari. Print anulat."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1710,7 +1726,7 @@ msgid "Rename"
msgstr "Redenumeste"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2107,20 +2123,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2187,7 +2203,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -257,7 +264,7 @@ msgid "Calibration done"
msgstr "Kalibracia OK"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -570,14 +577,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -711,21 +718,21 @@ msgid "Filament sensor"
msgstr "Senzor filamentu"
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -953,7 +960,7 @@ msgid ""
msgstr "Vlozte filament (nezavadzajte) do extruderu a stlacte tlacidlo"
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1078,7 +1085,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1110,14 +1117,14 @@ msgid "MMU load fails"
msgstr "MMU zlyhalo"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1190,7 +1197,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1666,7 +1682,7 @@ msgstr ""
"Tlac zrusena."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1707,7 +1723,7 @@ msgid "Rename"
msgstr "Premenovat"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2099,20 +2115,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2179,7 +2195,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -251,7 +258,7 @@ msgid "Calibration done"
msgstr ""
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -557,14 +564,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -698,21 +705,21 @@ msgid "Filament sensor"
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -929,7 +936,7 @@ msgid ""
msgstr ""
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1054,7 +1061,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1086,14 +1093,14 @@ msgid "MMU load fails"
msgstr ""
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1166,7 +1173,16 @@ msgid "Model"
msgstr ""
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1627,7 +1643,7 @@ msgid ""
msgstr ""
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1668,7 +1684,7 @@ msgid "Rename"
msgstr ""
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2052,20 +2068,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2128,7 +2144,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."

View File

@ -15,6 +15,13 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. MSG_DESC_CANNOT_MOVE c=20
#. these errors have been disabled
#: ../../Firmware/mmu2/errors_list.h:203 ../../Firmware/mmu2/errors_list.h:243
#: ../../Firmware/mmu2/errors_list.h:245
msgid " "
msgstr ""
#. MSG_IR_03_OR_OLDER c=18
#: ../../Firmware/Filament_sensor.cpp:287
#: ../../Firmware/Filament_sensor.cpp:362 ../../Firmware/messages.cpp:165
@ -258,7 +265,7 @@ msgid "Calibration done"
msgstr "Kalibraring utförd"
#. MSG_DESC_FILAMENT_ALREADY_LOADED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:228
#: ../../Firmware/mmu2/errors_list.h:228 ../../Firmware/mmu2/errors_list.h:266
msgid "Cannot perform the action, filament is already loaded. Unload it first."
msgstr ""
@ -571,14 +578,14 @@ msgid "FINDA DIDNT TRIGGER"
msgstr ""
#. MSG_DESC_FINDA_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:197
#: ../../Firmware/mmu2/errors_list.h:197 ../../Firmware/mmu2/errors_list.h:237
msgid ""
"FINDA didn't switch off while unloading filament. Try unloading manually. "
"Ensure filament can move and FINDA works."
msgstr ""
#. MSG_DESC_FINDA_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:196
#: ../../Firmware/mmu2/errors_list.h:196 ../../Firmware/mmu2/errors_list.h:236
msgid ""
"FINDA didn't trigger while loading the filament. Ensure the filament can "
"move and FINDA works."
@ -712,21 +719,21 @@ msgid "Filament sensor"
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_GO_OFF c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:199
#: ../../Firmware/mmu2/errors_list.h:199 ../../Firmware/mmu2/errors_list.h:239
msgid ""
"Filament sensor didn't switch off while unloading filament. Ensure filament "
"can move and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_DIDNT_TRIGGER c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:198
#: ../../Firmware/mmu2/errors_list.h:198 ../../Firmware/mmu2/errors_list.h:238
msgid ""
"Filament sensor didn't trigger while loading the filament. Ensure the "
"filament reached the fsensor and the sensor works."
msgstr ""
#. MSG_DESC_FSENSOR_TOO_EARLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:201
#: ../../Firmware/mmu2/errors_list.h:201 ../../Firmware/mmu2/errors_list.h:241
msgid ""
"Filament sensor triggered too early while loading to extruder. Check there "
"isn't anything stuck in PTFE tube. Check that sensor reads properly."
@ -958,7 +965,7 @@ msgstr ""
"Infoga filamentet (ladda inte in det) i extrudern och tryck sedan på knappen."
#. MSG_DESC_FW_RUNTIME_ERROR c=20 r=11
#: ../../Firmware/mmu2/errors_list.h:232
#: ../../Firmware/mmu2/errors_list.h:232 ../../Firmware/mmu2/errors_list.h:270
msgid ""
"Internal runtime error. Try resetting the MMU unit or updating the firmware. "
"If the issue persists, contact support."
@ -1083,7 +1090,7 @@ msgid "MMU FW UPDATE NEEDED"
msgstr ""
#. MSG_DESC_QUEUE_FULL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:230
#: ../../Firmware/mmu2/errors_list.h:230 ../../Firmware/mmu2/errors_list.h:268
msgid "MMU Firmware internal error, please reset the MMU."
msgstr ""
@ -1115,14 +1122,14 @@ msgid "MMU load fails"
msgstr "MMU-laddn felar"
#. MSG_DESC_COMMUNICATION_ERROR c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:227
#: ../../Firmware/mmu2/errors_list.h:227 ../../Firmware/mmu2/errors_list.h:265
msgid ""
"MMU unit not responding correctly. Check the wiring and connectors. If the "
"issue persists, contact support."
msgstr ""
#. MSG_DESC_MMU_NOT_RESPONDING c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:226
#: ../../Firmware/mmu2/errors_list.h:226 ../../Firmware/mmu2/errors_list.h:264
msgid ""
"MMU unit not responding. Check the wiring and connectors. If the issue "
"persists, contact support."
@ -1195,7 +1202,16 @@ msgid "Model"
msgstr "Modell"
#. MSG_DESC_TMC c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:207
#: ../../Firmware/mmu2/errors_list.h:207 ../../Firmware/mmu2/errors_list.h:246
#: ../../Firmware/mmu2/errors_list.h:247 ../../Firmware/mmu2/errors_list.h:248
#: ../../Firmware/mmu2/errors_list.h:249 ../../Firmware/mmu2/errors_list.h:250
#: ../../Firmware/mmu2/errors_list.h:251 ../../Firmware/mmu2/errors_list.h:252
#: ../../Firmware/mmu2/errors_list.h:253 ../../Firmware/mmu2/errors_list.h:254
#: ../../Firmware/mmu2/errors_list.h:255 ../../Firmware/mmu2/errors_list.h:256
#: ../../Firmware/mmu2/errors_list.h:257 ../../Firmware/mmu2/errors_list.h:258
#: ../../Firmware/mmu2/errors_list.h:259 ../../Firmware/mmu2/errors_list.h:260
#: ../../Firmware/mmu2/errors_list.h:261 ../../Firmware/mmu2/errors_list.h:262
#: ../../Firmware/mmu2/errors_list.h:263
msgid "More details online."
msgstr ""
@ -1673,7 +1689,7 @@ msgstr ""
"inställningarna. Utskriften avbröts."
#. MSG_DESC_PULLEY_STALLED c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:200
#: ../../Firmware/mmu2/errors_list.h:200 ../../Firmware/mmu2/errors_list.h:240
msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
msgstr ""
@ -1716,7 +1732,7 @@ msgid "Rename"
msgstr "Döp om"
#. MSG_DESC_INVALID_TOOL c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:229
#: ../../Firmware/mmu2/errors_list.h:229 ../../Firmware/mmu2/errors_list.h:267
msgid ""
"Requested filament tool is not available on this hardware. Check the G-code "
"for tool index out of range (T0-T4)."
@ -2110,20 +2126,20 @@ msgid "Testing filament"
msgstr ""
#. MSG_DESC_IDLER_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:205
#: ../../Firmware/mmu2/errors_list.h:205 ../../Firmware/mmu2/errors_list.h:244
msgid ""
"The Idler cannot home properly. Check for anything blocking its movement."
msgstr ""
#. MSG_DESC_FW_UPDATE_NEEDED c=20 r=9
#: ../../Firmware/mmu2/errors_list.h:231
#: ../../Firmware/mmu2/errors_list.h:231 ../../Firmware/mmu2/errors_list.h:269
msgid ""
"The MMU unit reports its FW version incompatible with the printer's "
"firmware. Make sure the MMU firmware is up to date."
msgstr ""
#. MSG_DESC_SELECTOR_CANNOT_HOME c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:202
#: ../../Firmware/mmu2/errors_list.h:202 ../../Firmware/mmu2/errors_list.h:242
msgid ""
"The Selector cannot home properly. Check for anything blocking its movement."
msgstr ""
@ -2190,7 +2206,7 @@ msgid "UNLOAD MANUALLY"
msgstr ""
#. MSG_DESC_UNLOAD_MANUALLY c=20 r=8
#: ../../Firmware/mmu2/errors_list.h:233
#: ../../Firmware/mmu2/errors_list.h:233 ../../Firmware/mmu2/errors_list.h:271
msgid ""
"Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
"is free. Check FINDA connection."