From aa209903d588531d6359daed6af4f596ae7fc39f Mon Sep 17 00:00:00 2001 From: Fredrik Date: Tue, 30 Apr 2024 01:58:30 +0200 Subject: [PATCH 01/14] Adjusted start g-code for Qidi X-Max/X-Plus 1 and 2. (#5108) * Adjusted start g-code for Qidi X-Max/X-Plus 1 and 2. * Aligned more with Qidi slicer default start code.\nWill raise the bed during warming up and park nozzle in default possition. --- resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json | 2 +- resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json index 0a04225405..92284f4157 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json @@ -100,7 +100,7 @@ "default_filament_profile": [ "Qidi Generic PLA" ], - "machine_start_gcode": "G28\nG92 E0\nG0 X5 Y5 Z0.3 F3600\n", + "machine_start_gcode": "G28\nG92 E0\nG0 X300 Y5 Z50 F3600\nM190 S[bed_temperature_initial_layer_single]\nM109 S[first_layer_temperature]\nG92 E-19\n", "machine_end_gcode": "M104 S0\nM140 S0\n;Retract the filament\nG92 E0\nG1 E-3 F300\nG28\nM84\n", "scan_first_layer": "0" } \ No newline at end of file diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json index ce361e8f2c..5ef98e7853 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json @@ -100,7 +100,7 @@ "default_filament_profile": [ "Qidi Generic PLA" ], - "machine_start_gcode": "G28\nG92 E0\nG0 X5 Y5 Z0.3 F3600\n", + "machine_start_gcode": "G28\nG92 E0\nG0 X270 Y5 Z50 F3600\nM190 S[bed_temperature_initial_layer_single]\nM109 S[first_layer_temperature]\nG92 E-16\n", "machine_end_gcode": "M104 S0\nM140 S0\n;Retract the filament\nG92 E0\nG1 E-3 F300\nG28\nM84\n", "scan_first_layer": "0" -} \ No newline at end of file +} From 423f557c34ad823684e5a626810ae4f07601589f Mon Sep 17 00:00:00 2001 From: JayKim Date: Tue, 30 Apr 2024 07:05:59 -0600 Subject: [PATCH 02/14] Fixup docker build/run (#5139) * Fix MPFR dep build on docker * Clean up after docker run --- DockerRun.sh | 2 ++ Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/DockerRun.sh b/DockerRun.sh index da49bd3e61..c06628e6be 100755 --- a/DockerRun.sh +++ b/DockerRun.sh @@ -20,6 +20,8 @@ docker run \ --privileged=true \ `# Attach tty for running orca slicer with command line things` \ -ti \ + `# Clean up after yourself` \ + --rm \ `# Pass all parameters from this script to the orca slicer ENTRYPOINT binary` \ orcaslicer $* diff --git a/Dockerfile b/Dockerfile index befcc33de4..868779b0af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,7 @@ RUN apt-get update && apt-get install -y \ libsoup2.4-dev \ libssl3 \ libssl-dev \ + libtool \ libudev-dev \ libwayland-dev \ libwebkit2gtk-4.0-dev \ @@ -67,9 +68,8 @@ WORKDIR OrcaSlicer RUN ./BuildLinux.sh -u # Build dependencies in ./deps -RUN ./BuildLinux.sh -d; exit 0 +RUN ./BuildLinux.sh -d -RUN apt-get install -y libcgal-dev # Build slic3r RUN ./BuildLinux.sh -s From 872f729d7506954580f1bfdcf969e3084cc4a13e Mon Sep 17 00:00:00 2001 From: yw4z Date: Tue, 30 Apr 2024 16:40:30 +0300 Subject: [PATCH 03/14] Tab improvements (#5210) * Update selected tab underline color * Disable using bold font for Selected tab * Revert changes * Calculate tab width from bold font to fix tab position changes --- src/slic3r/GUI/Widgets/TabCtrl.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Widgets/TabCtrl.cpp b/src/slic3r/GUI/Widgets/TabCtrl.cpp index 36778f6816..25835c8858 100644 --- a/src/slic3r/GUI/Widgets/TabCtrl.cpp +++ b/src/slic3r/GUI/Widgets/TabCtrl.cpp @@ -106,6 +106,10 @@ int TabCtrl::AppendItem(const wxString &item, btn->SetBackgroundColor(StateColor()); btn->SetCornerRadius(0); btn->SetPaddingSize({TAB_BUTTON_PADDING}); + wxClientDC dc(this); // ORCA calculate tab width from bold font to prevent tab movements on tab change + dc.SetFont(this->bold); + btn->SetMinSize(wxSize(dc.GetTextExtent(item).x + TAB_BUTTON_PADDING_X * 2, btn->GetSize().GetHeight())); + dc.Clear(); btns.push_back(btn); if (btns.size() > 1) sizer->GetItem(sizer->GetItemCount() - 1)->SetMinSize({0, 0}); @@ -304,7 +308,7 @@ void TabCtrl::doRender(wxDC& dc) #else dc.SetPen(wxPen(border_color.colorForStates(states), border_width)); dc.DrawLine(0, size.y - BS2, size.x, size.y - BS2); - wxColour c(0xf2, 0x75, 0x4e, 0xff); + wxColour c = wxColour("#009688"); // ORCA: Controls under line color on selected tab dc.SetPen(wxPen(c, 1)); dc.SetBrush(c); dc.DrawRoundedRectangle(x1 - radius, size.y - BS2 - border_width * 3, x2 + radius * 2 - x1, border_width * 3, radius); From 6d19e2d29cb49aaa7ac3884d3adbca29db9e1ce7 Mon Sep 17 00:00:00 2001 From: chshkhr Date: Tue, 30 Apr 2024 16:55:23 +0300 Subject: [PATCH 04/14] Reload All and Project Path (#4903) * Reload All and Project Path * Revert Reload All logic to original --------- Co-authored-by: SoftFever --- src/slic3r/GUI/GUI_Factories.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/slic3r/GUI/GUI_Factories.cpp b/src/slic3r/GUI/GUI_Factories.cpp index 14fa20763b..e3cec4e55e 100644 --- a/src/slic3r/GUI/GUI_Factories.cpp +++ b/src/slic3r/GUI/GUI_Factories.cpp @@ -1490,6 +1490,17 @@ void MenuFactory::create_plate_menu() }, m_parent); + // reload all objects on current plate + append_menu_item( + menu, wxID_ANY, _L("Reload All"), _L("reload all from disk"), + [](wxCommandEvent&) { + PartPlate* plate = plater()->get_partplate_list().get_selected_plate(); + assert(plate); + plater()->set_prepare_state(Job::PREPARE_STATE_MENU); + plater()->reload_all_from_disk(); + }, + "", nullptr, []() { return !plater()->get_partplate_list().get_selected_plate()->get_objects().empty(); }, m_parent); + // orient objects on current plate append_menu_item(menu, wxID_ANY, _L("Auto Rotate"), _L("auto rotate current plate"), [](wxCommandEvent&) { From ddc0ec5b7930f0369991fb15ff85f6cae01fb44e Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 1 May 2024 00:43:46 +0800 Subject: [PATCH 05/14] Tweak unsaved changes message --- localization/i18n/OrcaSlicer.pot | 81 +++++--- localization/i18n/ca/OrcaSlicer_ca.po | 103 +++++---- localization/i18n/cs/OrcaSlicer_cs.po | 103 +++++---- localization/i18n/de/OrcaSlicer_de.po | 172 ++++++++++----- localization/i18n/en/OrcaSlicer_en.po | 103 +++++---- localization/i18n/es/OrcaSlicer_es.po | 103 +++++---- localization/i18n/fr/OrcaSlicer_fr.po | 172 ++++++++++----- localization/i18n/hu/OrcaSlicer_hu.po | 103 +++++---- localization/i18n/it/OrcaSlicer_it.po | 103 +++++---- localization/i18n/ja/OrcaSlicer_ja.po | 103 +++++---- localization/i18n/ko/OrcaSlicer_ko.po | 103 +++++---- localization/i18n/nl/OrcaSlicer_nl.po | 103 +++++---- localization/i18n/pl/OrcaSlicer_pl.po | 219 +++++++++++++------- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 160 ++++++++++---- localization/i18n/ru/OrcaSlicer_ru.po | 103 +++++---- localization/i18n/sv/OrcaSlicer_sv.po | 103 +++++---- localization/i18n/tr/OrcaSlicer_tr.po | 172 ++++++++++----- localization/i18n/uk/OrcaSlicer_uk.po | 103 +++++---- localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 103 +++++---- localization/i18n/zh_TW/OrcaSlicer_zh_TW.po | 103 +++++---- src/slic3r/GUI/UnsavedChangesDialog.cpp | 26 +-- 21 files changed, 1557 insertions(+), 887 deletions(-) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 870f89f130..bed88115d4 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1885,6 +1885,12 @@ msgstr "" msgid "arrange current plate" msgstr "" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "" @@ -3016,6 +3022,45 @@ msgstr "" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, possible-boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, possible-boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, possible-boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, possible-boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, possible-boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, possible-boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "" @@ -7200,25 +7245,22 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -msgid "Actions For Unsaved Changes" +msgid "Transfer or discard changes" msgstr "" -msgid "Preset Value" +msgid "Old Value" msgstr "" -msgid "Modified Value" +msgid "New Value" msgstr "" -msgid "Transfer Modified Value" +msgid "Transfer" msgstr "" msgid "Don't save" msgstr "" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" +msgid "Discard" msgstr "" msgid "Click the right mouse button to display the full text." @@ -7273,28 +7315,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7312,9 +7348,6 @@ msgstr "" msgid "Select presets to compare" msgstr "" -msgid "Transfer" -msgstr "" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 8fcb6ede72..0275058262 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2024-03-17 22:08+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -1964,6 +1964,12 @@ msgstr "Ordenar" msgid "arrange current plate" msgstr "organitza la placa actual" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Rota automàticament" @@ -3200,6 +3206,45 @@ msgstr "Executant scripts de postprocessament" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Error desconegut en exportar el Codi-G." @@ -7761,26 +7806,23 @@ msgstr "No definit" msgid "Unsaved Changes" msgstr "Canvis no desats" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Transferir o descartar canvis" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Valor antic" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Valor nou" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Transferir" msgid "Don't save" msgstr "No desar" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Descartar" msgid "Click the right mouse button to display the full text." msgstr "Feu clic amb el botó dret del ratolí per mostrar el text complet." @@ -7842,28 +7884,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7881,9 +7917,6 @@ msgstr "Mostra tots els perfils ( inclosos els incompatibles )" msgid "Select presets to compare" msgstr "Seleccioneu els perfils a comparar" -msgid "Transfer" -msgstr "Transferir" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "Només es pot transferir al perfil actiu actual perquè s'ha modificat." @@ -16298,18 +16331,6 @@ msgstr "" #~ "No s'ha pogut realitzar l'operació booleana a les malles del model. Només " #~ "s'exportaran les parts positives." -#~ msgid "Transfer or discard changes" -#~ msgstr "Transferir o descartar canvis" - -#~ msgid "Old Value" -#~ msgstr "Valor antic" - -#~ msgid "New Value" -#~ msgstr "Valor nou" - -#~ msgid "Discard" -#~ msgstr "Descartar" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index 839359384c..cb3c5ce17a 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2023-09-30 15:15+0200\n" "Last-Translator: René Mošner \n" "Language-Team: \n" @@ -1918,6 +1918,12 @@ msgstr "Uspořádat" msgid "arrange current plate" msgstr "uspořádat aktuální podložku" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Automatické otáčení" @@ -3140,6 +3146,45 @@ msgstr "Vykonávají se postprodukční skripty" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Neznámá chyba při exportu G-kódu." @@ -7623,26 +7668,23 @@ msgstr "Nedefinováno" msgid "Unsaved Changes" msgstr "Neuložené změny" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Zahodit nebo ponechat změny" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Stará hodnota" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Nová hodnota" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Přenést" msgid "Don't save" msgstr "Neukládat" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Zahodit" msgid "Click the right mouse button to display the full text." msgstr "Kliknutím pravým tlačítkem myši zobrazíte celý text." @@ -7704,28 +7746,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7743,9 +7779,6 @@ msgstr "Zobrazit všechna přednastavení (včetně nekompatibilních)" msgid "Select presets to compare" msgstr "Zvolte přednastavení k porovnání" -msgid "Transfer" -msgstr "Přenést" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -15508,18 +15541,6 @@ msgstr "" #~ "Nelze provést logickou operaci nad mashí modelů. Budou exportovány pouze " #~ "kladné části." -#~ msgid "Transfer or discard changes" -#~ msgstr "Zahodit nebo ponechat změny" - -#~ msgid "Old Value" -#~ msgstr "Stará hodnota" - -#~ msgid "New Value" -#~ msgstr "Nová hodnota" - -#~ msgid "Discard" -#~ msgstr "Zahodit" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index e2276b8ae1..985d3be062 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -1963,6 +1963,12 @@ msgstr "Anordnen" msgid "arrange current plate" msgstr "Aktuelle Druckplatte anordnen" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Automatisch rotieren" @@ -3232,6 +3238,45 @@ msgstr "Ausführen von Nachbearbeitungsskripten" msgid "Successfully executed post-processing script" msgstr "Nachbearbeitungsskript erfolgreich ausgeführt" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Unbekannter Fehler beim exportieren des G-Code." @@ -7904,26 +7949,23 @@ msgstr "Undefiniert" msgid "Unsaved Changes" msgstr "Nicht gespeicherte Änderungen" -msgid "Actions For Unsaved Changes" -msgstr "Aktivitäten für nicht gespeicherte Änderungen" +msgid "Transfer or discard changes" +msgstr "Änderungen verwerfen oder beibehalten" -msgid "Preset Value" -msgstr "voreingestellter Wert" +msgid "Old Value" +msgstr "Alter Wert" -msgid "Modified Value" -msgstr "geänderter Wert" +msgid "New Value" +msgstr "Neuer Wert" -msgid "Transfer Modified Value" -msgstr "geänderten Wert übertragen" +msgid "Transfer" +msgstr "Übertragen" msgid "Don't save" msgstr "Nicht speichern" -msgid "Use Preset Value" -msgstr "voreingestellten Wert verwenden" - -msgid "Save Modified Value" -msgstr "geänderten Wert speichern" +msgid "Discard" +msgstr "Verwerfen" msgid "Click the right mouse button to display the full text." msgstr "" @@ -7987,41 +8029,23 @@ msgstr "Sie haben einige Einstellungen des Profils \"%1%\" geändert. " msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" -"\n" -"Möchten Sie diese geänderten Einstellungen (geänderter Wert) speichern?" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -"\n" -"Möchten Sie diese geänderten Einstellungen (geänderter Wert) nach dem " -"Wechsel des Profils beibehalten?" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" -"Sie haben Ihre Einstellungen zuvor geändert und sind dabei, sie durch neue " -"zu überschreiben." msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" -"\n" -"Möchten Sie Ihre aktuellen geänderten Einstellungen beibehalten oder die " -"voreingestellten Einstellungen verwenden?" - -msgid "" -"\n" -"Do you want to save your current modified settings?" -msgstr "" -"\n" -"Möchten Sie Ihre aktuellen geänderten Einstellungen speichern?" msgid "Extruders count" msgstr "Anzahl der Extruder" @@ -8038,9 +8062,6 @@ msgstr "Alle Profile anzeigen (auch inkompatible)" msgid "Select presets to compare" msgstr "Wähle Voreinstellungen zum Vergleich aus" -msgid "Transfer" -msgstr "Übertragen" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -16364,6 +16385,63 @@ msgstr "" "wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die " "Wahrscheinlichkeit von Verwerfungen verringert werden kann." +#~ msgid "Actions For Unsaved Changes" +#~ msgstr "Aktivitäten für nicht gespeicherte Änderungen" + +#~ msgid "Preset Value" +#~ msgstr "voreingestellter Wert" + +#~ msgid "Modified Value" +#~ msgstr "geänderter Wert" + +#~ msgid "Transfer Modified Value" +#~ msgstr "geänderten Wert übertragen" + +#~ msgid "Use Preset Value" +#~ msgstr "voreingestellten Wert verwenden" + +#~ msgid "Save Modified Value" +#~ msgstr "geänderten Wert speichern" + +#~ msgid "" +#~ "\n" +#~ "Would you like to save these changed settings(modified value)?" +#~ msgstr "" +#~ "\n" +#~ "Möchten Sie diese geänderten Einstellungen (geänderter Wert) speichern?" + +#~ msgid "" +#~ "\n" +#~ "Would you like to keep these changed settings(modified value) after " +#~ "switching preset?" +#~ msgstr "" +#~ "\n" +#~ "Möchten Sie diese geänderten Einstellungen (geänderter Wert) nach dem " +#~ "Wechsel des Profils beibehalten?" + +#~ msgid "" +#~ "You have previously modified your settings and are about to overwrite " +#~ "them with new ones." +#~ msgstr "" +#~ "Sie haben Ihre Einstellungen zuvor geändert und sind dabei, sie durch " +#~ "neue zu überschreiben." + +#~ msgid "" +#~ "\n" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" +#~ msgstr "" +#~ "\n" +#~ "Möchten Sie Ihre aktuellen geänderten Einstellungen beibehalten oder die " +#~ "voreingestellten Einstellungen verwenden?" + +#~ msgid "" +#~ "\n" +#~ "Do you want to save your current modified settings?" +#~ msgstr "" +#~ "\n" +#~ "Möchten Sie Ihre aktuellen geänderten Einstellungen speichern?" + #~ msgid "Unload Filament" #~ msgstr "Entladen" @@ -16525,18 +16603,6 @@ msgstr "" #~ "Eine boolesche Operation kann für Modellnetze nicht ausgeführt werden. Es " #~ "werden nur positive Teile exportiert." -#~ msgid "Transfer or discard changes" -#~ msgstr "Änderungen verwerfen oder beibehalten" - -#~ msgid "Old Value" -#~ msgstr "Alter Wert" - -#~ msgid "New Value" -#~ msgstr "Neuer Wert" - -#~ msgid "Discard" -#~ msgstr "Verwerfen" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index ecc46ba4e3..0e8af19aea 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -1893,6 +1893,12 @@ msgstr "Arrange" msgid "arrange current plate" msgstr "Arrange current plate" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Auto Rotate" @@ -3100,6 +3106,45 @@ msgstr "Running post-processing scripts" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Unknown error with G-code export" @@ -7500,26 +7545,23 @@ msgstr "Undefined" msgid "Unsaved Changes" msgstr "unsaved changes" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Transfer or discard changes" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Old value" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "New Value" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Transfer" msgid "Don't save" msgstr "Don't save" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Discard" msgid "Click the right mouse button to display the full text." msgstr "Click the right mouse button to display the full text." @@ -7581,28 +7623,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7620,9 +7656,6 @@ msgstr "Show all presets (including incompatible)" msgid "Select presets to compare" msgstr "Select presets to compare" -msgid "Transfer" -msgstr "Transfer" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -14920,18 +14953,6 @@ msgstr "" #~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "will be exported." -#~ msgid "Transfer or discard changes" -#~ msgstr "Transfer or discard changes" - -#~ msgid "Old Value" -#~ msgstr "Old value" - -#~ msgid "New Value" -#~ msgstr "New Value" - -#~ msgid "Discard" -#~ msgstr "Discard" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 5e7e22aba2..dcfac06c88 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: \n" "Last-Translator: Carlos Fco. Caruncho Serrano \n" "Language-Team: \n" @@ -1970,6 +1970,12 @@ msgstr "Organizar" msgid "arrange current plate" msgstr "posicionar la bandeja actual" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Rotación Automática" @@ -3213,6 +3219,45 @@ msgstr "Ejecutando scripts de post-procesado" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Error desconocido al exportar el G-Code." @@ -7801,26 +7846,23 @@ msgstr "No definido" msgid "Unsaved Changes" msgstr "Cambios No guardados" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Descartar o mantener los cambios" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Valor Antiguo" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Nuevo Valor" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Transferir" msgid "Don't save" msgstr "No guardar" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Descartar" msgid "Click the right mouse button to display the full text." msgstr "Pulse el botón derecho del ratón para mostrar el texto completo." @@ -7883,28 +7925,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7922,9 +7958,6 @@ msgstr "Mostrar todos los perfiles (incluyendo los compatibles)" msgid "Select presets to compare" msgstr "Seleccionar perfiles para comparar" -msgid "Transfer" -msgstr "Transferir" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -16364,18 +16397,6 @@ msgstr "" #~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "will be exported." -#~ msgid "Transfer or discard changes" -#~ msgstr "Descartar o mantener los cambios" - -#~ msgid "Old Value" -#~ msgstr "Valor Antiguo" - -#~ msgid "New Value" -#~ msgstr "Nuevo Valor" - -#~ msgid "Discard" -#~ msgstr "Descartar" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 5f8f7f5c08..e68bc4b18c 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -1978,6 +1978,12 @@ msgstr "Organiser" msgid "arrange current plate" msgstr "organiser la plaque actuelle" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Rotation automatique" @@ -3236,6 +3242,45 @@ msgstr "Exécution de scripts de post-traitement" msgid "Successfully executed post-processing script" msgstr "Le script de post-traitement a été exécuté avec succès" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Erreur inconnue lors de l'exportation du G-code." @@ -7932,26 +7977,23 @@ msgstr "Undef" msgid "Unsaved Changes" msgstr "Modifications non enregistrées" -msgid "Actions For Unsaved Changes" -msgstr "Actions pour les changements non enregistrés" +msgid "Transfer or discard changes" +msgstr "Ignorer ou conserver les modifications" -msgid "Preset Value" -msgstr "Valeur prédéfinie" +msgid "Old Value" +msgstr "Ancienne valeur" -msgid "Modified Value" -msgstr "Valeur modifiée" +msgid "New Value" +msgstr "Nouvelle Valeur" -msgid "Transfer Modified Value" -msgstr "Transfert de la valeur modifiée" +msgid "Transfer" +msgstr "Transférer" msgid "Don't save" msgstr "Ne pas enregistrer" -msgid "Use Preset Value" -msgstr "Utiliser la valeur prédéfinie" - -msgid "Save Modified Value" -msgstr "Enregistrer la valeur modifiée" +msgid "Discard" +msgstr "Ignorer" msgid "Click the right mouse button to display the full text." msgstr "" @@ -8015,41 +8057,23 @@ msgstr "Vous avez modifié certains paramètres du réglage prédéfini « %1% msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" -"\n" -"Souhaitez-vous enregistrer les paramètres modifiés (valeur modifiée) ?" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -"\n" -"Souhaitez-vous conserver ces paramètres modifiés (valeur modifiée) après " -"avoir changé de préréglage ?" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" -"Vous avez précédemment modifié vos paramètres et vous êtes sur le point de " -"les remplacer par de nouveaux." msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" -"\n" -"Souhaitez-vous conserver vos paramètres modifiés actuels ou utiliser des " -"paramètres prédéfinis ?" - -msgid "" -"\n" -"Do you want to save your current modified settings?" -msgstr "" -"\n" -"Souhaitez-vous sauvegarder vos paramètres modifiés actuels ?" msgid "Extruders count" msgstr "Nombre d'extrudeurs" @@ -8066,9 +8090,6 @@ msgstr "Afficher tous les préréglages (y compris incompatibles)" msgid "Select presets to compare" msgstr "Sélectionnez les préréglages à comparer" -msgid "Transfer" -msgstr "Transférer" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -16498,6 +16519,63 @@ msgstr "" "déformer, tels que l’ABS, une augmentation appropriée de la température du " "plateau chauffant peut réduire la probabilité de déformation." +#~ msgid "Actions For Unsaved Changes" +#~ msgstr "Actions pour les changements non enregistrés" + +#~ msgid "Preset Value" +#~ msgstr "Valeur prédéfinie" + +#~ msgid "Modified Value" +#~ msgstr "Valeur modifiée" + +#~ msgid "Transfer Modified Value" +#~ msgstr "Transfert de la valeur modifiée" + +#~ msgid "Use Preset Value" +#~ msgstr "Utiliser la valeur prédéfinie" + +#~ msgid "Save Modified Value" +#~ msgstr "Enregistrer la valeur modifiée" + +#~ msgid "" +#~ "\n" +#~ "Would you like to save these changed settings(modified value)?" +#~ msgstr "" +#~ "\n" +#~ "Souhaitez-vous enregistrer les paramètres modifiés (valeur modifiée) ?" + +#~ msgid "" +#~ "\n" +#~ "Would you like to keep these changed settings(modified value) after " +#~ "switching preset?" +#~ msgstr "" +#~ "\n" +#~ "Souhaitez-vous conserver ces paramètres modifiés (valeur modifiée) après " +#~ "avoir changé de préréglage ?" + +#~ msgid "" +#~ "You have previously modified your settings and are about to overwrite " +#~ "them with new ones." +#~ msgstr "" +#~ "Vous avez précédemment modifié vos paramètres et vous êtes sur le point " +#~ "de les remplacer par de nouveaux." + +#~ msgid "" +#~ "\n" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" +#~ msgstr "" +#~ "\n" +#~ "Souhaitez-vous conserver vos paramètres modifiés actuels ou utiliser des " +#~ "paramètres prédéfinis ?" + +#~ msgid "" +#~ "\n" +#~ "Do you want to save your current modified settings?" +#~ msgstr "" +#~ "\n" +#~ "Souhaitez-vous sauvegarder vos paramètres modifiés actuels ?" + #~ msgid "Unload Filament" #~ msgstr "Déchargement" @@ -16659,18 +16737,6 @@ msgstr "" #~ "Impossible d'effectuer une opération booléenne sur les maillages du " #~ "modèle. Seules les parties positives seront exportées." -#~ msgid "Transfer or discard changes" -#~ msgstr "Ignorer ou conserver les modifications" - -#~ msgid "Old Value" -#~ msgstr "Ancienne valeur" - -#~ msgid "New Value" -#~ msgstr "Nouvelle Valeur" - -#~ msgid "Discard" -#~ msgstr "Ignorer" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index a664257664..2d4d4cd89b 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1897,6 +1897,12 @@ msgstr "Elrendezés" msgid "arrange current plate" msgstr "aktuális tálca elrendezése" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Automatikus forgatás" @@ -3122,6 +3128,45 @@ msgstr "Utófeldolgozási szkriptek futtatása" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Ismeretlen hiba a G-kód exportálásakor." @@ -7546,26 +7591,23 @@ msgstr "Nincs meghatározva" msgid "Unsaved Changes" msgstr "mentetlen változások" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Változások elvetése vagy megtartása" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Régi érték" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Új érték" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Átvitel" msgid "Don't save" msgstr "Ne mentsd" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Elvetés" msgid "Click the right mouse button to display the full text." msgstr "Kattints a jobb egérgombbal a teljes szöveg megjelenítéséhez." @@ -7628,28 +7670,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7667,9 +7703,6 @@ msgstr "Minden beállítás megjelenítése (beleértve az inkompatibiliseket is msgid "Select presets to compare" msgstr "Select presets to compare" -msgid "Transfer" -msgstr "Átvitel" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -15012,18 +15045,6 @@ msgstr "" #~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "will be exported." -#~ msgid "Transfer or discard changes" -#~ msgstr "Változások elvetése vagy megtartása" - -#~ msgid "Old Value" -#~ msgstr "Régi érték" - -#~ msgid "New Value" -#~ msgstr "Új érték" - -#~ msgid "Discard" -#~ msgstr "Elvetés" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index 40036ff6ef..55c5d23e32 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -1962,6 +1962,12 @@ msgstr "Disponi" msgid "arrange current plate" msgstr "Disponi sul piatto corrente" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Rotazione automatica" @@ -3212,6 +3218,45 @@ msgstr "Esecuzione script di post-elaborazione" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Errore sconosciuto nell'esportazione del G-code." @@ -7782,26 +7827,23 @@ msgstr "Indefinito" msgid "Unsaved Changes" msgstr "Modifiche non salvate" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Scarta o mantieni le modifiche" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Valore precedente" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Nuovo valore" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Trasferisci" msgid "Don't save" msgstr "Non salvare" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Cancella" msgid "Click the right mouse button to display the full text." msgstr "" @@ -7864,28 +7906,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7903,9 +7939,6 @@ msgstr "Mostra tutti i preset (compresi non compatibili)" msgid "Select presets to compare" msgstr "Seleziona i preset da confrontare" -msgid "Transfer" -msgstr "Trasferisci" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -16383,18 +16416,6 @@ msgstr "" #~ "Impossibile eseguire operazioni booleane sulle mesh del modello. Verranno " #~ "esportate solo le parti positive." -#~ msgid "Transfer or discard changes" -#~ msgstr "Scarta o mantieni le modifiche" - -#~ msgid "Old Value" -#~ msgstr "Valore precedente" - -#~ msgid "New Value" -#~ msgstr "Nuovo valore" - -#~ msgid "Discard" -#~ msgstr "Cancella" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 413509eb33..eeb821b872 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -1885,6 +1885,12 @@ msgstr "レイアウト" msgid "arrange current plate" msgstr "現在のプレートをレイアウト" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "自動回転" @@ -3063,6 +3069,45 @@ msgstr "後処理スクリプトを実行" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "不明なエラー: G-codeエクスポート" @@ -7385,26 +7430,23 @@ msgstr "未定義" msgid "Unsaved Changes" msgstr "未保存の変更" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "変更を破棄または保持" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "古い値" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "新しい値" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "流用" msgid "Don't save" msgstr "保存しない" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "破棄" msgid "Click the right mouse button to display the full text." msgstr "マウスを右クリックして全文を表示します" @@ -7462,28 +7504,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7501,9 +7537,6 @@ msgstr "全てのプリセットを表示" msgid "Select presets to compare" msgstr "Select presets to compare" -msgid "Transfer" -msgstr "流用" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -14619,18 +14652,6 @@ msgstr "" #~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "will be exported." -#~ msgid "Transfer or discard changes" -#~ msgstr "変更を破棄または保持" - -#~ msgid "Old Value" -#~ msgstr "古い値" - -#~ msgid "New Value" -#~ msgstr "新しい値" - -#~ msgid "Discard" -#~ msgstr "破棄" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index 13eb863830..04020c93fc 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2024-04-11 18:46+0900\n" "Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply." "github.com>, crwusiz \n" @@ -1933,6 +1933,12 @@ msgstr "정렬" msgid "arrange current plate" msgstr "현재 플레이트 정렬" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "자동 회전" @@ -3125,6 +3131,45 @@ msgstr "사후 처리 스크립트 실행중" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "G코드를 내보낼 때 알 수 없는 오류가 발생했습니다." @@ -7558,26 +7603,23 @@ msgstr "정의되지 않음" msgid "Unsaved Changes" msgstr "저장되지 않은 변경 사항" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "변경 사항 폐기 또는 유지" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "이전 값" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "새로운 값" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "이전" msgid "Don't save" msgstr "저장하지 않음" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "폐기" msgid "Click the right mouse button to display the full text." msgstr "마우스 오른쪽 버튼을 클릭하여 전체 텍스트를 표시합니다." @@ -7639,28 +7681,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7678,9 +7714,6 @@ msgstr "모든 사전 설정 표시(미 호환 포함)" msgid "Select presets to compare" msgstr "비교할 사전 설정 선택" -msgid "Transfer" -msgstr "이전" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -15646,18 +15679,6 @@ msgstr "" #~ msgstr "" #~ "모델 메쉬에 부울 연산을 수행할 수 없습니다. 오직 양수 부품만 내보내집니다." -#~ msgid "Transfer or discard changes" -#~ msgstr "변경 사항 폐기 또는 유지" - -#~ msgid "Old Value" -#~ msgstr "이전 값" - -#~ msgid "New Value" -#~ msgstr "새로운 값" - -#~ msgid "Discard" -#~ msgstr "폐기" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index f589c3343c..a483824300 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1906,6 +1906,12 @@ msgstr "Rangschikken" msgid "arrange current plate" msgstr "Huidig printbed rangschikken" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Automatisch roteren" @@ -3144,6 +3150,45 @@ msgstr "Het uitvoeren van post-processing scripts" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Onbekende fout tijdens het exporteren van de G-code" @@ -7614,26 +7659,23 @@ msgstr "Niet gedefinieerd" msgid "Unsaved Changes" msgstr "niet-opgeslagen wijzigingen" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Verwerp of bewaar aanpassingen" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Oude waarde" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Nieuwe waarde" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Overdracht" msgid "Don't save" msgstr "Niet opslaan" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Verwerpen" msgid "Click the right mouse button to display the full text." msgstr "Klik op de rechtermuisknop om de volledige tekst weer te geven." @@ -7699,28 +7741,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7738,9 +7774,6 @@ msgstr "Toon alle presets (inclusief incompatibele)" msgid "Select presets to compare" msgstr "Select presets to compare" -msgid "Transfer" -msgstr "Overdracht" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -15126,18 +15159,6 @@ msgstr "" #~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "will be exported." -#~ msgid "Transfer or discard changes" -#~ msgstr "Verwerp of bewaar aanpassingen" - -#~ msgid "Old Value" -#~ msgstr "Oude waarde" - -#~ msgid "New Value" -#~ msgstr "Nieuwe waarde" - -#~ msgid "Discard" -#~ msgstr "Verwerpen" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index f55e47ab4f..fb4f19c32b 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga \n" "Language-Team: \n" @@ -1950,6 +1950,12 @@ msgstr "Ustaw" msgid "arrange current plate" msgstr "ustaw bieżącą płytę" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Automatyczna rotacja" @@ -3211,6 +3217,45 @@ msgstr "Uruchamianie skryptu post-procesingu" msgid "Successfully executed post-processing script" msgstr "Pomyślnie wykonano skrypt post-processingu" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Nieznany błąd podczas eksportowania kodu G." @@ -7416,8 +7461,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add " -"Primitive\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." msgstr "" "Podczas nagrywania timelapse'a bez głowicy narzędziowej zaleca się dodanie " "\"Timelaps - Wieża Czyszcząca\" \n" @@ -7841,26 +7886,23 @@ msgstr "Niezdefiniowany" msgid "Unsaved Changes" msgstr "Niezapisane zmiany" -msgid "Actions For Unsaved Changes" -msgstr "Działania dotyczące niezapisanych zmian" +msgid "Transfer or discard changes" +msgstr "Przenieść lub odrzucić zmiany" -msgid "Preset Value" -msgstr "Wartość domyślna" +msgid "Old Value" +msgstr "Stara wartość" -msgid "Modified Value" -msgstr "Zmieniona wartość" +msgid "New Value" +msgstr "Nowa wartość" -msgid "Transfer Modified Value" -msgstr "Przenieś zmienioną wartość" +msgid "Transfer" +msgstr "Przenieś" msgid "Don't save" msgstr "Nie zapisuj" -msgid "Use Preset Value" -msgstr "Użyj wartości domyślnej" - -msgid "Save Modified Value" -msgstr "Zapisz zmienione wartości" +msgid "Discard" +msgstr "Odrzuć" msgid "Click the right mouse button to display the full text." msgstr "Kliknij prawym przyciskiem myszy, aby wyświetlić pełny tekst." @@ -7922,41 +7964,23 @@ msgstr "Zmieniono niektóre ustawienia profilu \"%1%\"." msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" -"\n" -"Czy chciałbyś zapisać te zmienione ustawienia (zmodyfikowaną wartość)?" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -"\n" -"\n" -"Czy chciałbyś zachować te zmienione ustawienia (zmodyfikowaną wartość) po " -"przełączeniu profilu?" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" -"Wcześniej zmodyfikowałeś swoje ustawienia i masz zamiar nadpisać je nowymi." msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" -"\n" -"Czy chcesz zachować obecnie zmienione ustawienia, czy może chcesz użyć " -"ustawień domyślnych?" - -msgid "" -"\n" -"Do you want to save your current modified settings?" -msgstr "" -"\n" -"Czy chcesz zapisać obecnie zmodyfikowane ustawienia?" msgid "Extruders count" msgstr "Liczba extruderów" @@ -7973,9 +7997,6 @@ msgstr "Pokaż wszystkie profile (łącznie z niekompatybilnymi)" msgid "Select presets to compare" msgstr "Wybierz profile do porównania" -msgid "Transfer" -msgstr "Przenieś" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -9329,10 +9350,10 @@ msgid "" msgstr "" "Unikaj ruchów nad obrysami-\n" "Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli " -"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad " -"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można " -"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z " -"długości ruchu bezpośredniego." +"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami" +"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować " +"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu " +"bezpośredniego." msgid "mm or %" msgstr "mm lub %" @@ -9901,9 +9922,9 @@ msgid "" "quality for needle and small details" msgstr "" "Włącz tę opcję, aby zwolnić prędkość druku, aby czas końcowej warstwy nie " -"był krótszy niż próg czasu warstwy w \"Próg maksymalnej prędkości " -"wentylatora\", tak aby warstwa mogła być chłodzona przez dłuższy czas. Może " -"to poprawić jakość chłodzenia dla igieł i małych detali" +"był krótszy niż próg czasu warstwy w \"Próg maksymalnej prędkości wentylatora" +"\", tak aby warstwa mogła być chłodzona przez dłuższy czas. Może to poprawić " +"jakość chłodzenia dla igieł i małych detali" msgid "Normal printing" msgstr "Normalne drukowanie" @@ -11039,10 +11060,10 @@ msgstr "Pełna prędkość wentylatora na warstwie" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " -"than \"close_fan_the_first_x_layers\", in which case the fan will be running " -"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie " "\"close_fan_the_first_x_layers\" do maksymalnej na warstwie " @@ -12572,8 +12593,8 @@ msgstr "" "poklatkowy po zakończeniu drukowania. Jeśli wybrany jest tryb \"Wygładź\", " "głowica narzędziowa przesunie się nad wieżę po wydrukowaniu każdej warstwy, " "a następnie zrobi zdjęcie. Ponieważ stopiony filament może wyciekać z dyszy " -"podczas robienia zdjęcia, wieża czyszcząca jest wymagana w trybie " -"\"Wygładź\" do czyszczenia dyszy." +"podczas robienia zdjęcia, wieża czyszcząca jest wymagana w trybie \"Wygładź" +"\" do czyszczenia dyszy." msgid "Traditional" msgstr "Tradycyjny" @@ -12653,10 +12674,10 @@ msgid "" "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania " -"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może " -"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej " -"wartości na rozsądnie niskim poziomie." +"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar" +"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć " +"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na " +"rozsądnie niskim poziomie." msgid "Slicing Mode" msgstr "Tryb cięcia" @@ -15006,8 +15027,8 @@ msgstr "" "Czy chcesz go zastąpić?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nazwa profilu zostanie zmieniona na \"Producent Typ Rodzaj @nazwa drukarki, " @@ -16338,6 +16359,64 @@ msgstr "" "takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może " "zmniejszyć prawdopodobieństwo odkształceń." +#~ msgid "Actions For Unsaved Changes" +#~ msgstr "Działania dotyczące niezapisanych zmian" + +#~ msgid "Preset Value" +#~ msgstr "Wartość domyślna" + +#~ msgid "Modified Value" +#~ msgstr "Zmieniona wartość" + +#~ msgid "Transfer Modified Value" +#~ msgstr "Przenieś zmienioną wartość" + +#~ msgid "Use Preset Value" +#~ msgstr "Użyj wartości domyślnej" + +#~ msgid "Save Modified Value" +#~ msgstr "Zapisz zmienione wartości" + +#~ msgid "" +#~ "\n" +#~ "Would you like to save these changed settings(modified value)?" +#~ msgstr "" +#~ "\n" +#~ "Czy chciałbyś zapisać te zmienione ustawienia (zmodyfikowaną wartość)?" + +#~ msgid "" +#~ "\n" +#~ "Would you like to keep these changed settings(modified value) after " +#~ "switching preset?" +#~ msgstr "" +#~ "\n" +#~ "\n" +#~ "Czy chciałbyś zachować te zmienione ustawienia (zmodyfikowaną wartość) po " +#~ "przełączeniu profilu?" + +#~ msgid "" +#~ "You have previously modified your settings and are about to overwrite " +#~ "them with new ones." +#~ msgstr "" +#~ "Wcześniej zmodyfikowałeś swoje ustawienia i masz zamiar nadpisać je " +#~ "nowymi." + +#~ msgid "" +#~ "\n" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" +#~ msgstr "" +#~ "\n" +#~ "Czy chcesz zachować obecnie zmienione ustawienia, czy może chcesz użyć " +#~ "ustawień domyślnych?" + +#~ msgid "" +#~ "\n" +#~ "Do you want to save your current modified settings?" +#~ msgstr "" +#~ "\n" +#~ "Czy chcesz zapisać obecnie zmodyfikowane ustawienia?" + #~ msgid "Unload Filament" #~ msgstr "Wyładuj" @@ -16477,18 +16556,6 @@ msgstr "" #~ "Nie można wykonywać operacji boolowskich na siatkach modeli. Eksportowane " #~ "będą tylko części dodatnie." -#~ msgid "Transfer or discard changes" -#~ msgstr "Przenieść lub odrzucić zmiany" - -#~ msgid "Old Value" -#~ msgstr "Stara wartość" - -#~ msgid "New Value" -#~ msgstr "Nowa wartość" - -#~ msgid "Discard" -#~ msgstr "Odrzuć" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" @@ -17411,8 +17478,8 @@ msgstr "" #~ "Elevation is too low for object. Use the \"Pad around object\" feature to " #~ "print the object without elevation." #~ msgstr "" -#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół " -#~ "modelu\", aby wydrukować model bez podniesienia." +#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu" +#~ "\", aby wydrukować model bez podniesienia." #~ msgid "" #~ "The endings of the support pillars will be deployed on the gap between " diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 71a7e201de..f84e1d99c5 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2024-04-16 11:17-0300\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" @@ -1958,6 +1958,12 @@ msgstr "Organizar" msgid "arrange current plate" msgstr "organizar mesa atual" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Auto-orientação" @@ -3205,6 +3211,45 @@ msgstr "Executando scripts de pós-processamento" msgid "Successfully executed post-processing script" msgstr "Script de pós-processamento executado com êxito" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Erro desconhecido ao exportar G-Code." @@ -7816,26 +7861,23 @@ msgstr "Indefinido" msgid "Unsaved Changes" msgstr "Alterações não salvas" -msgid "Actions For Unsaved Changes" -msgstr "Ações para Alterações Não Salvas" +msgid "Transfer or discard changes" +msgstr "" -msgid "Preset Value" -msgstr "Valor Predefinido" +msgid "Old Value" +msgstr "" -msgid "Modified Value" -msgstr "Valor Modificado" +msgid "New Value" +msgstr "" -msgid "Transfer Modified Value" -msgstr "Transferir Valor Modificado" +msgid "Transfer" +msgstr "Transferir" msgid "Don't save" msgstr "Não salvar" -msgid "Use Preset Value" -msgstr "Usar Valor Predefinido" - -msgid "Save Modified Value" -msgstr "Salvar Valor Modificado" +msgid "Discard" +msgstr "" msgid "Click the right mouse button to display the full text." msgstr "Clique com o botão direito do mouse para exibir o texto completo." @@ -7897,41 +7939,23 @@ msgstr "Você alterou algumas configurações do preset \"%1%\". " msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" -"\n" -"Você gostaria de salvar estas configurações alteradas (valor modificado)?" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -"\n" -"Você gostaria de manter estas configurações alteradas (valores modificados) " -"após mudar o preset?" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" -"Você modificou suas configurações anteriormente e está prestes a substituí-" -"las por novas." msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" -"\n" -"Você quer manter suas configurações atuais modificadas ou usar as " -"configurações predefinidas?" - -msgid "" -"\n" -"Do you want to save your current modified settings?" -msgstr "" -"\n" -"Você quer salvar suas configurações atuais modificadas?" msgid "Extruders count" msgstr "Número de extrusoras" @@ -7948,9 +7972,6 @@ msgstr "Mostrar todos os perfis (incluindo os incompatíveis)" msgid "Select presets to compare" msgstr "Selecione os perfis para comparar" -msgid "Transfer" -msgstr "Transferir" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -16195,6 +16216,63 @@ msgstr "" "aumentar adequadamente a temperatura da mesa aquecida pode reduzir a " "probabilidade de empenamento?" +#~ msgid "Actions For Unsaved Changes" +#~ msgstr "Ações para Alterações Não Salvas" + +#~ msgid "Preset Value" +#~ msgstr "Valor Predefinido" + +#~ msgid "Modified Value" +#~ msgstr "Valor Modificado" + +#~ msgid "Transfer Modified Value" +#~ msgstr "Transferir Valor Modificado" + +#~ msgid "Use Preset Value" +#~ msgstr "Usar Valor Predefinido" + +#~ msgid "Save Modified Value" +#~ msgstr "Salvar Valor Modificado" + +#~ msgid "" +#~ "\n" +#~ "Would you like to save these changed settings(modified value)?" +#~ msgstr "" +#~ "\n" +#~ "Você gostaria de salvar estas configurações alteradas (valor modificado)?" + +#~ msgid "" +#~ "\n" +#~ "Would you like to keep these changed settings(modified value) after " +#~ "switching preset?" +#~ msgstr "" +#~ "\n" +#~ "Você gostaria de manter estas configurações alteradas (valores " +#~ "modificados) após mudar o preset?" + +#~ msgid "" +#~ "You have previously modified your settings and are about to overwrite " +#~ "them with new ones." +#~ msgstr "" +#~ "Você modificou suas configurações anteriormente e está prestes a " +#~ "substituí-las por novas." + +#~ msgid "" +#~ "\n" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" +#~ msgstr "" +#~ "\n" +#~ "Você quer manter suas configurações atuais modificadas ou usar as " +#~ "configurações predefinidas?" + +#~ msgid "" +#~ "\n" +#~ "Do you want to save your current modified settings?" +#~ msgstr "" +#~ "\n" +#~ "Você quer salvar suas configurações atuais modificadas?" + #~ msgid "Unload Filament" #~ msgstr "Descarregar Filamento" diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index fc84a34c0e..ea2a0c0088 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer V2.0.0 Official Release\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2024-04-12 13:49+0700\n" "Last-Translator: \n" "Language-Team: andylg@yandex.ru\n" @@ -1957,6 +1957,12 @@ msgstr "Расставить" msgid "arrange current plate" msgstr "Расстановка моделей на текущем столе" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Автоповорот" @@ -3209,6 +3215,45 @@ msgstr "Запуск скриптов постобработки" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Неизвестная ошибка при экспорте G-кода." @@ -7808,26 +7853,23 @@ msgstr "Не задано" msgid "Unsaved Changes" msgstr "Несохранённые изменения" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Отклонить или сохранить изменения" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Старое значение" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Новое значение" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Перенести" msgid "Don't save" msgstr "Не сохранять" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Не сохранять" msgid "Click the right mouse button to display the full text." msgstr "Нажмите правой кнопкой мыши, чтобы отобразить полный текст." @@ -7889,28 +7931,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7928,9 +7964,6 @@ msgstr "Показать все профили (включая несовмес msgid "Select presets to compare" msgstr "Выберите профили для сравнения" -msgid "Transfer" -msgstr "Перенести" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -16334,18 +16367,6 @@ msgstr "" #~ "Невозможно выполнить булевы операции над сетками модели. Будут " #~ "экспортированы только положительные части." -#~ msgid "Transfer or discard changes" -#~ msgstr "Отклонить или сохранить изменения" - -#~ msgid "Old Value" -#~ msgstr "Старое значение" - -#~ msgid "New Value" -#~ msgstr "Новое значение" - -#~ msgid "Discard" -#~ msgstr "Не сохранять" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index 4598ec5a19..edc30815c7 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1892,6 +1892,12 @@ msgstr "Arrangera" msgid "arrange current plate" msgstr "Arrangera plattan" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Auto Rotera" @@ -3110,6 +3116,45 @@ msgstr "Kör efterbearbetnings skript" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Okänt fel vid exportering av G-code." @@ -7527,26 +7572,23 @@ msgstr "Oidentifierad" msgid "Unsaved Changes" msgstr "Ej sparade ändringar" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Överge eller Behåll ändringar" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Gammalt värde" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Nytt värde" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Överför" msgid "Don't save" msgstr "Spara inte" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Överge" msgid "Click the right mouse button to display the full text." msgstr "Högerklicka för att se hela texten." @@ -7608,28 +7650,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7647,9 +7683,6 @@ msgstr "Visa alla inställningar (inklusive inkompatibla)" msgid "Select presets to compare" msgstr "Välj förinställningar att jämföra" -msgid "Transfer" -msgstr "Överför" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -14938,18 +14971,6 @@ msgstr "" #~ "Det går inte att utföra booleska operationer på modell mesh. Endast " #~ "positiva delar kommer att exporteras." -#~ msgid "Transfer or discard changes" -#~ msgstr "Överge eller Behåll ändringar" - -#~ msgid "Old Value" -#~ msgstr "Gammalt värde" - -#~ msgid "New Value" -#~ msgstr "Nytt värde" - -#~ msgid "Discard" -#~ msgstr "Överge" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index d1c387a3af..529332d172 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2024-04-16 03:39+0300\n" "Last-Translator: Olcay ÖREN\n" "Language-Team: \n" @@ -1942,6 +1942,12 @@ msgstr "Hizala" msgid "arrange current plate" msgstr "mevcut plakayı hizala" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Otomatik döndürme" @@ -3172,6 +3178,45 @@ msgstr "İşlem sonrası komut dosyalarını çalıştırma" msgid "Successfully executed post-processing script" msgstr "İşlem sonrası komut dosyası başarıyla çalıştırıldı" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "G kodunu dışa aktarırken bilinmeyen hata." @@ -7738,26 +7783,23 @@ msgstr "Tanımsız" msgid "Unsaved Changes" msgstr "Kaydedilmemiş Değişiklikler" -msgid "Actions For Unsaved Changes" -msgstr "Kaydedilmemiş Değişikliklere İlişkin İşlemler" +msgid "Transfer or discard changes" +msgstr "Değişiklikleri Çıkart veya Sakla" -msgid "Preset Value" -msgstr "Ön ayar değeri" +msgid "Old Value" +msgstr "Eski Değer" -msgid "Modified Value" -msgstr "Değiştirilmiş Değer" +msgid "New Value" +msgstr "Yeni değer" -msgid "Transfer Modified Value" -msgstr "Değiştirilen Değeri Aktar" +msgid "Transfer" +msgstr "Aktar" msgid "Don't save" msgstr "Kaydetme" -msgid "Use Preset Value" -msgstr "Ön Ayar Değerini Kullan" - -msgid "Save Modified Value" -msgstr "Değiştirilen Değeri Kaydet" +msgid "Discard" +msgstr "Çıkart" msgid "Click the right mouse button to display the full text." msgstr "Tam metni görüntülemek için farenin sağ tuşuna tıklayın." @@ -7819,41 +7861,23 @@ msgstr "“%1%” ön ayarının bazı ayarlarını değiştirdiniz." msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" -"\n" -"Bu değişiklik ayarlarını (değiştirilen değer) kaydetmek ister misiniz?" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -"\n" -"Ön ayarı değiştirdikten sonra bu değiştirilen ayarları (değiştirilen değer) " -"korumak ister misiniz?" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" -"Ayarlarınızı daha önce değiştirdiniz ve bunların üzerine yenilerini yazmak " -"üzeresiniz." msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" -"\n" -"Geçerli değiştirilen ayarlarınızı korumak mı yoksa önceden ayarlanmış " -"ayarları mı kullanmak istiyorsunuz?" - -msgid "" -"\n" -"Do you want to save your current modified settings?" -msgstr "" -"\n" -"Geçerli değiştirilen ayarlarınızı kaydetmek istiyor musunuz?" msgid "Extruders count" msgstr "Ekstruder sayısı" @@ -7870,9 +7894,6 @@ msgstr "Tüm ön ayarları göster (uyumsuz olanlar dahil)" msgid "Select presets to compare" msgstr "Karşılaştırılacak ön ayarları seçin" -msgid "Transfer" -msgstr "Aktar" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -16004,6 +16025,63 @@ msgstr "" "sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını " "azaltabileceğini biliyor muydunuz?" +#~ msgid "Actions For Unsaved Changes" +#~ msgstr "Kaydedilmemiş Değişikliklere İlişkin İşlemler" + +#~ msgid "Preset Value" +#~ msgstr "Ön ayar değeri" + +#~ msgid "Modified Value" +#~ msgstr "Değiştirilmiş Değer" + +#~ msgid "Transfer Modified Value" +#~ msgstr "Değiştirilen Değeri Aktar" + +#~ msgid "Use Preset Value" +#~ msgstr "Ön Ayar Değerini Kullan" + +#~ msgid "Save Modified Value" +#~ msgstr "Değiştirilen Değeri Kaydet" + +#~ msgid "" +#~ "\n" +#~ "Would you like to save these changed settings(modified value)?" +#~ msgstr "" +#~ "\n" +#~ "Bu değişiklik ayarlarını (değiştirilen değer) kaydetmek ister misiniz?" + +#~ msgid "" +#~ "\n" +#~ "Would you like to keep these changed settings(modified value) after " +#~ "switching preset?" +#~ msgstr "" +#~ "\n" +#~ "Ön ayarı değiştirdikten sonra bu değiştirilen ayarları (değiştirilen " +#~ "değer) korumak ister misiniz?" + +#~ msgid "" +#~ "You have previously modified your settings and are about to overwrite " +#~ "them with new ones." +#~ msgstr "" +#~ "Ayarlarınızı daha önce değiştirdiniz ve bunların üzerine yenilerini " +#~ "yazmak üzeresiniz." + +#~ msgid "" +#~ "\n" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" +#~ msgstr "" +#~ "\n" +#~ "Geçerli değiştirilen ayarlarınızı korumak mı yoksa önceden ayarlanmış " +#~ "ayarları mı kullanmak istiyorsunuz?" + +#~ msgid "" +#~ "\n" +#~ "Do you want to save your current modified settings?" +#~ msgstr "" +#~ "\n" +#~ "Geçerli değiştirilen ayarlarınızı kaydetmek istiyor musunuz?" + #~ msgid "Unload Filament" #~ msgstr "Filamenti Çıkarın" @@ -16179,18 +16257,6 @@ msgstr "" #~ "Model ağlarında boole işlemi gerçekleştirilemiyor. Yalnızca pozitif " #~ "parçalar ihraç edilecektir." -#~ msgid "Transfer or discard changes" -#~ msgstr "Değişiklikleri Çıkart veya Sakla" - -#~ msgid "Old Value" -#~ msgstr "Eski Değer" - -#~ msgid "New Value" -#~ msgstr "Yeni değer" - -#~ msgid "Discard" -#~ msgstr "Çıkart" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 1effee350d..4e60a4526c 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2023-08-10 20:25-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -1904,6 +1904,12 @@ msgstr "Організувати" msgid "arrange current plate" msgstr "упорядкувати поточну табличку" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "Авто-поворот" @@ -3135,6 +3141,45 @@ msgstr "Запуск скриптів постобробки" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "Невідома помилка під час експорту G-коду." @@ -7567,26 +7612,23 @@ msgstr "Undef" msgid "Unsaved Changes" msgstr "Незбережені зміни" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "Відкинути або зберегти зміни" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "Старе значення" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "Нове значення" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "Передача" msgid "Don't save" msgstr "Не зберігати" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "Не зберігати" msgid "Click the right mouse button to display the full text." msgstr "Натисніть праву кнопку миші, щоб відобразити повний текст." @@ -7648,28 +7690,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7687,9 +7723,6 @@ msgstr "Показати всі налаштування (включаючи н msgid "Select presets to compare" msgstr "Виберіть налаштування для порівняння" -msgid "Transfer" -msgstr "Передача" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -15094,18 +15127,6 @@ msgstr "" #~ msgid "Load failed [%d]!" #~ msgstr "Завантаження не вдалося [%d]!" -#~ msgid "Transfer or discard changes" -#~ msgstr "Відкинути або зберегти зміни" - -#~ msgid "Old Value" -#~ msgstr "Старе значення" - -#~ msgid "New Value" -#~ msgstr "Нове значення" - -#~ msgid "Discard" -#~ msgstr "Не зберігати" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 30f61de27e..64e4251179 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2023-04-01 13:21+0800\n" "Last-Translator: SoftFever \n" "Language-Team: \n" @@ -1887,6 +1887,12 @@ msgstr "自动摆放" msgid "arrange current plate" msgstr "在当前盘执行自动摆放" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "自动朝向" @@ -3039,6 +3045,45 @@ msgstr "运行后处理脚本" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "导出G-code文件发生未知错误。" @@ -7364,26 +7409,23 @@ msgstr "未定义" msgid "Unsaved Changes" msgstr "未保存的更改" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "放弃或保留更改" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "旧值" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "新值" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "迁移" msgid "Don't save" msgstr "不保存" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "放弃" msgid "Click the right mouse button to display the full text." msgstr "单击鼠标右键显示全文。" @@ -7441,28 +7483,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7480,9 +7516,6 @@ msgstr "显示所有预设(包括不兼容的)" msgid "Select presets to compare" msgstr "选择要比较的预设" -msgid "Transfer" -msgstr "迁移" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -14910,18 +14943,6 @@ msgstr "" #~ "will be exported." #~ msgstr "无法对模型网格执行布尔运算。只有正面部分将被导出。" -#~ msgid "Transfer or discard changes" -#~ msgstr "放弃或保留更改" - -#~ msgid "Old Value" -#~ msgstr "旧值" - -#~ msgid "New Value" -#~ msgstr "新值" - -#~ msgid "Discard" -#~ msgstr "放弃" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index d8c100ce4a..2ddad8f7fa 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-28 18:11+0800\n" +"POT-Creation-Date: 2024-05-01 00:42+0800\n" "PO-Revision-Date: 2023-11-06 14:37+0800\n" "Last-Translator: ablegods \n" "Language-Team: \n" @@ -1947,6 +1947,12 @@ msgstr "自動擺放" msgid "arrange current plate" msgstr "在列印板執行自動擺放" +msgid "Reload All" +msgstr "" + +msgid "reload all from disk" +msgstr "" + msgid "Auto Rotate" msgstr "自動旋轉方向" @@ -3161,6 +3167,45 @@ msgstr "執行後處理腳本" msgid "Successfully executed post-processing script" msgstr "" +msgid "Unknown error occured during exporting G-code." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "" + msgid "Unknown error when export G-code." msgstr "匯出 G-code 檔案發生未知錯誤。" @@ -7710,26 +7755,23 @@ msgstr "未定義" msgid "Unsaved Changes" msgstr "未儲存的更改" -msgid "Actions For Unsaved Changes" -msgstr "" +msgid "Transfer or discard changes" +msgstr "放棄或保留更改" -msgid "Preset Value" -msgstr "" +msgid "Old Value" +msgstr "舊值" -msgid "Modified Value" -msgstr "" +msgid "New Value" +msgstr "新值" -msgid "Transfer Modified Value" -msgstr "" +msgid "Transfer" +msgstr "遷移" msgid "Don't save" msgstr "不儲存" -msgid "Use Preset Value" -msgstr "" - -msgid "Save Modified Value" -msgstr "" +msgid "Discard" +msgstr "放棄" msgid "Click the right mouse button to display the full text." msgstr "單擊滑鼠右鍵顯示全文。" @@ -7787,28 +7829,22 @@ msgstr "" msgid "" "\n" -"Would you like to save these changed settings(modified value)?" +"You can save or discard the preset values you have modified." msgstr "" msgid "" "\n" -"Would you like to keep these changed settings(modified value) after " -"switching preset?" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" -msgid "" -"You have previously modified your settings and are about to overwrite them " -"with new ones." +msgid "You have previously modified your settings." msgstr "" msgid "" "\n" -"Do you want to keep your current modified settings, or use preset settings?" -msgstr "" - -msgid "" -"\n" -"Do you want to save your current modified settings?" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" msgid "Extruders count" @@ -7828,9 +7864,6 @@ msgstr "顯示所有預設(包括不相容的)" msgid "Select presets to compare" msgstr "選擇要比較的預設" -msgid "Transfer" -msgstr "遷移" - msgid "" "You can only transfer to current active profile because it has been modified." msgstr "" @@ -15366,18 +15399,6 @@ msgstr "" #~ "will be exported." #~ msgstr "無法對模型網格執行布林運算。只有正面部分將被導出。" -#~ msgid "Transfer or discard changes" -#~ msgstr "放棄或保留更改" - -#~ msgid "Old Value" -#~ msgstr "舊值" - -#~ msgid "New Value" -#~ msgstr "新值" - -#~ msgid "Discard" -#~ msgstr "放棄" - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" diff --git a/src/slic3r/GUI/UnsavedChangesDialog.cpp b/src/slic3r/GUI/UnsavedChangesDialog.cpp index 221d8db9df..a0ca677065 100644 --- a/src/slic3r/GUI/UnsavedChangesDialog.cpp +++ b/src/slic3r/GUI/UnsavedChangesDialog.cpp @@ -810,7 +810,7 @@ UnsavedChangesDialog::UnsavedChangesDialog(Preset::Type type, PresetCollection * : m_new_selected_preset_name(new_selected_preset) , DPIDialog(static_cast(wxGetApp().mainframe), wxID_ANY, - _L("Actions For Unsaved Changes"), + _L("Transfer or discard changes"), wxDefaultPosition, wxDefaultSize, wxCAPTION | wxCLOSE_BOX) @@ -896,7 +896,7 @@ void UnsavedChangesDialog::build(Preset::Type type, PresetCollection *dependent_ wxBoxSizer *top_title_oldv = new wxBoxSizer(wxVERTICAL); wxBoxSizer *top_title_oldv_h = new wxBoxSizer(wxHORIZONTAL); - static_oldv_title = new wxStaticText(m_panel_oldv, wxID_ANY, _L("Preset Value"), wxDefaultPosition, wxDefaultSize, 0); + static_oldv_title = new wxStaticText(m_panel_oldv, wxID_ANY, _L("Old Value"), wxDefaultPosition, wxDefaultSize, 0); static_oldv_title->SetFont(::Label::Body_13); static_oldv_title->Wrap(-1); static_oldv_title->SetForegroundColour(*wxWHITE); @@ -915,7 +915,7 @@ void UnsavedChangesDialog::build(Preset::Type type, PresetCollection *dependent_ wxBoxSizer *top_title_newv = new wxBoxSizer(wxVERTICAL); wxBoxSizer *top_title_newv_h = new wxBoxSizer(wxHORIZONTAL); - static_newv_title = new wxStaticText(m_panel_newv, wxID_ANY, _L("Modified Value"), wxDefaultPosition, wxDefaultSize, 0); + static_newv_title = new wxStaticText(m_panel_newv, wxID_ANY, _L("New Value"), wxDefaultPosition, wxDefaultSize, 0); static_newv_title->SetFont(::Label::Body_13); static_newv_title->Wrap(-1); static_newv_title->SetForegroundColour(*wxWHITE); @@ -1011,19 +1011,19 @@ void UnsavedChangesDialog::build(Preset::Type type, PresetCollection *dependent_ if (dependent_presets && switched_presets && (type == dependent_presets->type() ? dependent_presets->get_edited_preset().printer_technology() == dependent_presets->find_preset(new_selected_preset)->printer_technology() : switched_presets->get_edited_preset().printer_technology() == switched_presets->find_preset(new_selected_preset)->printer_technology())) - add_btn(&m_transfer_btn, m_move_btn_id, "menu_paste", Action::Transfer, /*switched_presets->get_edited_preset().name == new_selected_preset ? */_L("Transfer Modified Value"), true); + add_btn(&m_transfer_btn, m_move_btn_id, "menu_paste", Action::Transfer, switched_presets->get_edited_preset().name == new_selected_preset ? _L("Transfer") : _L("Transfer"), true); } if (!m_transfer_btn && (ActionButtons::KEEP & m_buttons)) - add_btn(&m_transfer_btn, m_move_btn_id, "menu_paste", Action::Transfer, _L("Transfer Modified Value"), true); + add_btn(&m_transfer_btn, m_move_btn_id, "menu_paste", Action::Transfer, _L("Transfer"), true); { // "Don't save" / "Discard" button std::string btn_icon = (ActionButtons::DONT_SAVE & m_buttons) ? "" : (dependent_presets || (ActionButtons::KEEP & m_buttons)) ? "blank_16" : "exit"; - wxString btn_label = (ActionButtons::DONT_SAVE & m_buttons) ? _L("Don't save") : _L("Use Preset Value"); + wxString btn_label = (ActionButtons::DONT_SAVE & m_buttons) ? _L("Don't save") : _L("Discard"); add_btn(&m_discard_btn, m_continue_btn_id, btn_icon, Action::Discard, btn_label, false); } // "Save" button - if (ActionButtons::SAVE & m_buttons) add_btn(&m_save_btn, m_save_btn_id, "save", Action::Save, _L("Save Modified Value"), false); + if (ActionButtons::SAVE & m_buttons) add_btn(&m_save_btn, m_save_btn_id, "save", Action::Save, _L("Save"), false); /* ScalableButton *cancel_btn = new ScalableButton(this, wxID_CANCEL, "cross", _L("Cancel"), wxDefaultSize, wxDefaultPosition, wxBORDER_DEFAULT, true, 24); buttons->Add(cancel_btn, 1, wxLEFT | wxRIGHT, 5); @@ -1429,18 +1429,18 @@ void UnsavedChangesDialog::update(Preset::Type type, PresetCollection* dependent if (dependent_presets) { action_msg = format_wxstr(_L("You have changed some settings of preset \"%1%\". "), dependent_presets->get_edited_preset().name); if (!m_transfer_btn) { - action_msg += _L("\nWould you like to save these changed settings(modified value)?"); + action_msg += _L("\nYou can save or discard the preset values you have modified."); } else { - action_msg += _L("\nWould you like to keep these changed settings(modified value) after switching preset?"); + action_msg += _L("\nYou can save or discard the preset values you have modified, or choose to transfer the values you have modified to the new preset."); } } else { - action_msg = _L("You have previously modified your settings and are about to overwrite them with new ones."); + action_msg = _L("You have previously modified your settings."); if (m_transfer_btn) - action_msg += _L("\nDo you want to keep your current modified settings, or use preset settings?"); + action_msg += _L("\nYou can discard the preset values you have modified, or choose to transfer the modified values to the new project"); else - action_msg += _L("\nDo you want to save your current modified settings?"); + action_msg += _L("\nYou can save or discard the preset values you have modified."); } - + m_action_line->SetLabel(action_msg); update_tree(type, presets); From 5d20ecc756455d9dcee714c50d1dfbaa81eb0446 Mon Sep 17 00:00:00 2001 From: yw4z Date: Wed, 1 May 2024 10:05:43 +0300 Subject: [PATCH 06/14] Redesign of all icons / UI improvements (#4368) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Changed Most of Icons * Updated Tab Bar icons Replaced with wider and a bit bigger ones • Used a bigger toolhead for printer icon on device tab * Tab Bar • Device icon > slightly increased nozzle size * Bed Plate images • Bed plate > Lock Enabled (Dark & Light Mode) > Hover > Used brighter background color • Bed plate > Settings (Changed status) (Dark & Light Mode) > Hover > Used brighter background color * Modifiers & Notification icons • Redesigned modifier icons • Added some of notification icons * Mixed imrovements • Added Sidebar collapse button with simpler design • Sidebar Printing Preset Section > Added "Advanced" Icon with atom like design • Sidebar Printing Preset Section > Improved "Support Filament" Icon .filaments tip supports an object now • Notifications > Corrected image sizes • Notifications > Corrected icon placements * Mixed improvements • Updated warning dialog icon • added plate stats images for multiple plate slicing • added icon for info dialog * Mixed improvements • updated volumetric speed icon • improved readability of preset compare button * Mixed improvements • Updated paint height range icon • Added paint triangle icon • Added multi material paint icon for toolbar * Mixed Improvements • updated titlebar file icon as square to increase similarity with other icons • redesigned toolbaar icons for painting (support, seam, color) they are sharing same design language now • updated sidebar icons wall, top/bottom shell, seam, support • added icons for compare window. (equal, not equal, spool, undefined, node_dot,cog,support) • Added confirm button icon for search boxes for toolbar popups * Mixed Improvements • Added new icons for project page • Added a loading icon to all sliced plates stats icon while slicing process continues • Updated lock and plate setting icons for plate buttons • Added new icons for cut modifier (cut_ / cut_connector) * Mixed • Updated notification icons (notification_preferences, notification_right, notification_eject_sd, notification_documentation) • Added missing original resources from my folder * Mixed improvements • Reworked network / wifi icon • Reworked bed adhension icon • Reworked raft icon • Reworked layer height and width icons • Added new icons to replace generic / missing icons on sidebar (param_overhang, param_bridge, param_wall_surface, param_overhang_speed, param_jerk) • Updated Edit, Save, Delete, Search icons on sidebar • Used a brighter color for all icons. they are more visible now on dark mode. #949494() color has better balance between dark / light theme • Sidebar > Improved readability of Support Material icon • Sidebar > Improved readability of compare icon. again * Mixed improvements • Added height_range_modifier.svg for context menu • Edited Placeholder > Lock icons. just increased heights to match with other icons • Edited slowdown for overhangs • Edited Object sinking icon • Reworked Add copies button • Updated add button * Mixed • Updated placeholder tempeture icon • Added new image for placeholder time icon - custom-gcode_time.svg . Added new one because i dont want to mess with other time icons • Restored original file model_time.svg * Mixed improvements • Updated Sidebar > Temperature icon • Reworked image of about page * Reworked about page • Updated orca slicer logo with custom made font * Readded Optimizsed PNG files Branch has not in sync with original branch. so i added manually Original commit https://github.com/SoftFever/OrcaSlicer/pull/4294 * Mixed Improvements • Updated Sidebar > Flush volumes icon • Updated Toolbar > Emboss & Measure icon (Shifted them 1 px to fixing minor placement mistake) * About Page • Minor change on L letter on logo • Slightly changed proportions on text * Mixed • Updated Tab bar > Device icon with added a tiny pixel for presenting fan. • Updated Sidebar > Device icon with bigger toolhead. added a tiny pixel for presenting fan. it matches with tab icon now • Updated Sidebar > Overhangs icon • Added new icons for missing placeholder items. Quality, Strenght, Other, Setting Overrides, Multi Material and many others. added them to tasklist * Mixed • Added new icons for missing filament setting items. Toolchange added to tasklist • Added new icons for missing printer setting items. Toolchange, Printable Space, Extruder Clearence, Adaptive Bed Mesh, Accesory, Multi Material, Size, Position, Lift Z Enforcement * Mixed • Reworked support enforcer and blocker icons. they are much better now • Slightly changed modifier icons • Updated Object sinking icon. added a wave intead of straight line. Will try too add waves more places to improve aqua effect • Used same revert icon for lock_normal.svg to increase UI constinency. added an cube icon as badge to indicate its spesific to object. Icon used in object list • Toolbar > Popup windows > Keyboard cheet sheet icon > Updated icon. changed resolution. tried many resolution but i couldnt fix blur on icon. So added it to task list for coding side fixes • Updated Sidebar > Compare icon • Updated Sidebar > Nozzle size icon * Removed misnamed files • Removed some unnecessary files caused by misnamed on illustrator * Mixed • Updated design of Context Menu > Reinforce support and Block support again • Updated design of Toolbar > Emboss > now it shares same design language with add object. Also using 3D shape for letter presents better emboss function • Updated design of Toolbar > Color paint > Added some waves and bubbles :) • Updated design of Toolbar > Paint > Brush types • Updated design of Toolbar > Auto Orient / Lay on Surface > Moved asteriks to middle of object and added an target icon for lay on surface. I choose target because lay on surface is selective function • Updated design of Toolbar > Auto Arrange > All shapes highlighted instead of one while hovering. this makes sense because it arranges all objects. Added different shapes to increase indication of works with multiple different objects / shapes. • Updated design of Toolbar > Add Plate > Added few plates to back to make it looks like a bit smaller. its now fit better with other icons • Updated design of Sidebar > Overhang Speed > Changes snail to turtle. its much more related with ocean • Updated design of Sidebar > Prime Tower > Used a light house to present tower • Updated design of Modifiers > Height range • Updated notification and dialog type icons. Added a wave and orca to improve branding • Updated Plate icons with new auto arrange and auto orient icons • Added 2 new images for object list to support lower resolutions. objlist_support_painting and objlist_seam_painting. added this change in tasklist • Many minor fixes * Updated object list icons • Updated object list icons for painting functions * Updated object list icons • Improved readability object list icons for painting functions * Mixed • Updated design of Toolbar > Emboss > Removed 3D design because its makes it hard to identify. Used a simplified 3D effect to present emboss function • Updated design of Toolbar > Add Plate > Removed + badge because it makes design a bit complicated and second/third plate on back already presents button related with multiple plates • Updated design of Toolbar > Auto Orient & Lay on Face > Changed bed shape to a single line. Icon fits better with other designs now • Updated design of Toolbar > Variable Layer Height > Used lines to present layer instead of rectangles. Icon fits better with other designs now. Also this change will improve design consistency with height range menu item icon • Updated design of Toolbar > Split to objects / parts > Increased gap between object to increase visibility of dashed line • Reduced opacity of edit, delete preset, search icon fot reducing contrast on sidebar • Updated icon of return icon (assemble_return.svg) • Updated all lock / Unlock icons • Updated Plate name edit icons. Used same line width with other plate icons and used same icon on other edit buttons • Found new icons to redesign in svg import popup. Updated files & designs > Refresh (refresh.svg) > Mirror on X (reflection_x.svg) > Mirror on Y (reflection_y) > Dropdown Menu > Bake / Forget the File Path (burn.svg) > Dropdown Menu > Change File (open.svg) • Found new icons to redesign in create printer. Updated files & designs > step_1.svg > step_2.svg > step_2_ready.svg > step_is_ok.svg > create_success.svg * Mixed • Updated Plate icons > Lock / Unlock > icon now shows opposite state while hover • Updated Plate icons > Auto orient > Changed bed shape to 1px line. now matches with toolbar icon • Fixed some opacity related issues on edit, delete, search buttons * Mixed • Found new icons to redesign on slided object > layer slider > im_slider_delete.svg > Used red color on this to reduce accidental usage > im_gcode_custom.svg > Changed backround to turquoise. Made icon pixel perfect and now easier to identify > im_gcode_pause.svg > Changed backround to turquoise. Made icon pixel perfect and now easier to identify • Reworked all plate normal and hover colors. Their background color not changes on hover. Only border and icon changes on hover now. Now it feel more naturally • Updated design of all preferences icons • Found new icon to redesign on SVG popup window. it appears when shape has not filled path > exclamation.svg > Made icon pixel perfect and now easier to identify. used filled shape like other dialog icons. Used orange color as warning color • Changed colors of object sinking to orange because its a warning * Mixed Logo Usages • Updated icons on dialogs. i will update all icons if design approved > OrcaSlicer.svg (Used on Most dialogs) > OrcaSlicer_192px_grayscale.png (Used on file not found error. connection error etc..) Bamboo Lab Related icons • Sidebar > Filament Titlebar > AMS Filament sync (ams_fila_sync.svg) > Made pixel perfect with minor changes • Bamboo Lap Printer > Print Plate > > print-time.svg > Made pixel perfect > print-weight.svg > Made pixel perfect and used a scale which fish are weighed. Orcas need fish not ingots :) > ams_editable.svg > Made pixel perfect and used same pen icon on other edit icons > ams_editable_light.svg > Made pixel perfect and used same pen icon on other edit icons > ams_arrow > Made pixel perfect > enable_ams.svg > Made pixel perfect and used same question mark on other related icons • Added Calibration Tab icon for Bamboo Lab printer. Thanks @KrisMorr for coding fixes * Mixed • Updated design of printer_in_lan.svg • Placeholders > Quality > Improved readability • Plate Icons > Used slightly lighter color for dark theme. It improves readability of preferences and lock button while they are at active status • Titlebar > Undo / Redo > Used slightly shorter arrow. This will make difference between revert icon and presents better function 1 step forward / backward. Revert icon is much more "Put back to original place" * Mixed • Preview > Layer Slider > Custom Code Icon > Used a / instead of G letter. Its easier to read now • Preview > Layer Mode Icon > Changed background color and changed single layer icon shape * Mixed • Re exported all images with better precision • Updated design of SVG modifiers • Notifications > Corrected preferences and next button resolution • Notifications > Expand / Collapse buttons > Fixed color usages between dark/light theme • Sidebar > Parameters > Minor change on speed / initial layer speed • Sidebar > Parameters > Minor change on bridging • Plate Setting > Filament order > Arrow > Made pixel perfect • Object List > Minor changes on Paint icons • Menubar > Increased size of all icons • Tab bar > Added icon for Debug tab • Added many icons related with bamboo lab monitor > Mostly corrected their resolution made them pixel perfect. This problem caused by they created an artboard on illustrator at 0,5px then it spreads to most of other artboards. Artboards exported as 17x17 intead of 16x16 while this problem exist in project > Matched design of some icons with designed ones to improve consistency on UI but keeped designs of Bamboo Lab spesific ones > Mostly used pictures that shared by people to identify correct resolutions but need a dummy account for further testing * Mixed • Removed delete/remove/export/import related icons on Context menu • Added new icon for printer settings > Extruder > Retraction when switching material • Added new icon for filament settings > Filament > Print Temperature • Added new icon for filament settings > Filament > Bed Temperature • Added new icon for filament settings > Cooling > Cooling specific layer • Added new icon for filament settings > Cooling > Part Cooling Fan • Added new icon for filament settings > Cooling > Auxiliary part cooling fan • Added new icon for filament settings > Cooling > Exhaust Fan • Added new icon for process settings > Quality > Wall Generator • Added new icon for question dialogs and used orange color for that because it mostly used critical dialogs (preset delete etc). Just found undefined icon on placeholder list uses this and added new icon for that • Changed info dialog icon fill color to turquase. because its mostly positive information • Updated design of Sidebar > Parameters > Overhangs and Overhang Speed • Fixed warning icon usage • Added new image for placeholders > undefined. this was sharing same icon with dialogs previously * Update ObjectDataViewModel.cpp Added new color and support painting icons for object list * Added new icons for Sidebar, Filament and Printer Settings • Added new icon for Sidebar > Process > Support > Tree Supports • Updated /src/slic3r/GUI/Tab.cpp > Process > Added new / missing icons • Updated /src/slic3r/GUI/Tab.cpp > Filament Settings > Added new / missing icons • Updated /src/slic3r/GUI/Tab.cpp > Printer Settings > Added new / missing icons Compiled from source and checked all changes * Updated Placeholder icons • Added new icons to placeholders window • Updated slic3r\GUI\EditGCodeDialog.cpp • Updated slic3r\GUI\Tab.cpp • Changed copy code icon to add.svg instead of add_copy.svg • Added new icon for Placeholders > Setting overrides * Update AboutDialog.cpp • Removed "Orca slicer" string to cleanup • Removed "Based on". already writes on bottom • Changed background color of version text to transparent • Changed github link color to turquoise • Aligned link text with other texts * Compare window - Update GUI\UnsavedChangesDialog.cpp • Updated icon for undefined category. question.svg is used for dialogs and not compatible with low res. used new icon undefined.svg • Also updated process > tab icons started to show up in compare window. blank images was used for tabs in original files * Added Height Range icons on Object List / Context Menu • Added new icon for Object list > Layers > Layer • Object list > Layers > Added Hight Range icon • Context menu > Height Range icon • Object list > Layers > Replaced icons of add / delete Height range buttons * Update imconfig.h • Fixes toolbar > measure > copy to clipboard icon uses "notification_arrow_right.svg" on dark theme instead of "copy_menu_dark.svg" * Context Menu Icons • Updated \GUI\GUI_Factories.cpp • Updated icons of split sub menu • Added new icons for modifier objects submenus. load, cube, cylinder, sphere, disc, torus, text, svg • Added new icons for mirror sub menu items * Fixed wrong warning icon usage on Emboss / SVG widgets • Emboss and SVG popups uses exclamation.svg instead of obj_warning.svg . exclamation.svg used for dialogs and not supports low resolution • Updated \GUI\Gizmos\GLGizmoEmboss.cpp • Updated \GUI\Gizmos\GLGizmoSVG.cpp * Toolbar > Emboss and Cut Emboss \GUI\Gizmos\GLGizmoEmboss.cpp • Added a small gap between vertical related and horizontal related text aligment buttons • Used style dropdown and its title in same line to reduce vertical usage. This will also improves visual consistency with other dropdowns • Used operation radio buttons and its title in same line \GUI\IconManager.cpp • Fixed blurry icons > Emboss > buttons near Style dropdown menu , bold / italic buttons and Text alignment buttons \GUI\ImGuiWrapper.cpp • Changed color of active radio button to turquoise. This will also improves visual consistency * Update GLGizmoEmboss.cpp * Fixed blurry tooltip icon on toolbar popup windows • Updated icon design on hover state. It looks like its pressed now • updated show_tooltip_information function in this. Set icon size as 30x22 intead of relative to font size and removed padding on icons \GUI\Gizmos\GLGizmoCut.cpp \GUI\Gizmos\GLGizmoFdmSupports.cpp \GUI\Gizmos\GLGizmoMeasure.cpp \GUI\Gizmos\GLGizmoMmuSegmentation.cpp \GUI\Gizmos\GLGizmoSeam.cpp \GUI\GLCanvas3D.cpp * Mixed Painting Tool / Brush icons • Made Dark mode icons a bit more darker \GUI\Gizmos\GLGizmoSeam.cpp \GUI\Gizmos\GLGizmoMmuSegmentation.cpp \GUI\Gizmos\GLGizmoFdmSupports.cpp • Updated button shapes of brush type icons (used square shape with more radius) • Updated margin between brush type buttons • Updated paddings of brush type buttons • Updated border color of brush type icons • Used brush / tool buttons bigger to make them easier to select • Fixed icons not uses colors on SVG files while using Light theme \GUI\Gizmos\GLGizmoMmuSegmentation.cpp • Fixed green border color on selected filament. now uses orca color • Used radio buttons for free / vertical / horizontal. Works better for options, reduces vertical height, Easier to understand \imgui\imgui_widgets.cpp > ImGui::ColorButton • Updated function for making sure drawing pixel perfect rectangles. It draws filament colors / borders on color painting gizmo \GUI\Gizmos\GLGizmoSeam.cpp • Used radio buttons for free / vertical / horizontal. Works better for options, reduces vertical height, Easier to understand \GUI\Gizmos\GLGizmoPainterBase.hpp • Added m_free_only variable for new radio buttons \GUI\ImGuiWrapper.cpp • Added darker and lighter versions of orca color as variable • Updated push_confirm_button_style for replacing BBS colors • Slightly reduced horizontal window padding for gizmos \GUI\IMSlider.cpp • Slice > Layer and move slider text is now using turquoise color • Fixed wrong resolution on some states of layer mode icon \GUI\Gizmos\GLGizmoSimplify.cpp • Object > Simplify model > Detail level slider is now using orca color • Object > Simplify model > Hover state of apply button is now using orca color \GUI\GLCanvas3D.cpp • Sliced Plates Toolbar > All Plate Stats > Changed color of "All plate stats" text to orca • Sliced Plates Toolbar > Changed button border color to Orca • Sliced Plates Toolbar > Changed position of plate number text to closer to edges so it will not overlaps with thumbnails * Mixed - Titlebar & Tabs & Search box \GUI\BBLTopbar.cpp > Titlebar • Updated icon background colors while hover / active states • Used same color on border and fill color for more modern look \GUI\Widgets\TabCtrl.cpp > Tabs on parameters / filament & machine window • Updated line color under selected tab to orca color \GUI\Tab.cpp • Fixed > Sidebar > Global > Delete button visible while using search box • Fixed > Sidebar > Global > Revert button visible while using search box • Tabs > Disabled using bold font for active tab. Advantages; tabs always stays at same position, makes switching between tabs a bit faster * \GUI\GUI_App.cpp > Splash Logo * Reworked Emboss Gizmo Reworked Icons • Simplified them as much as possible to give modernish look Reworked layout • Moved style to top. Fitted to window width. Used title and imput box on same line to reduce window height • Used height and depth at same line. Used icons for Height and Depth text to save some place • Moved alignment to top and used at same line with bold / italic icons • Used operation and its radio buttons on same line to recude window height • Made many changes how it scales on different languages Improvements • Surface related values only visible if embos used as modifier • Reworked stepper buttons. Looks more modern now • Reworked advanced expansion. Simplified and removed text • Hidden surface related settings if there is no relations with objects to save some vertical space UI consistency improvements • Used text > revert > input order for components line on sidebar • Revert icon and title used orange color if values edited like on sidebar • Used orca color on sliders, radio buttons • Removed border and other decorations on edit buttons of sliders Fixes • Moved warning icon a bit up to prevent overlapping with text preview box border Effects on other all widgets • Updated selected text background to orca color * Mixed Overall • All gizmos uses same paddings now. it will improve consistency between them. All uses padding value from push_toolbar_style Combobox • Removed paddings from combo box menu • Fixed frame background highlighting on hover • Used border for highlighting menu items instead of background color Combo Box with Filter • Now its shares very similar code with normal combo box. Used ImGui:ButtonBehavior in it to get hover effects properly • Added support for border highlighting on hover • Used border for highlighting menu items instead of background color Combo boxes • Made easier to manage styles for combo boxes Input box with step controls • Added support for border highlighting on hover or active Sliders • Added support for border highlighting on hover or active • Used fully rounded grab and frame. now it looks much more like slider Checkboxes • Made them a bit smaller. Old one is looks like giant and not matches with sidebar style • Updated hover effect to match with other components • Updated icons of checkboxes to match style Radio Buttons • Made them a bit smaller. Old one is looks like giant and not matches with sidebar style Gizmo > Painting tools • Updated all sliders with new one to improve UI consistency • Calculated slider start offset from maximum width of title of sliders to solve window width change between tool changes Gizmo > Simplify • Updated code for new radio buttons Gizmo > Measure • Used selection values with multiline. Window size highly reduced with this layout • Moved restart selection to bottom. like on other gizmos mostly at bottom. this will also reduce vertical spacing • Aligned measure type texts vertically to "copy to clipboard" button • Updated style of copy to clipboard button • Updated dimension value edit box on viewport. Values are much more readable now Color Fixes • Viewport > Plate Name / Number text colors > Updated them to orca color Icons • Updated keyboard cheat sheet icon on gizmos * Titlebar Remove icon from File and Dropdown menu * Sidebar and UI component improvements New Feature • Sidebar > Delete filament button only visible only if there is multi filaments Sidebar • Corrected most of aligment and spacing related problems. all icons has equal space between them and all elements has equal margin to frame • Updated style of Global/objects toggle to match style • Updated style of Advanced toggle. Updated SwitchButton.cpp and its not using vector images now • All combo boxes uses same height now • Slightly reduced vertical spaces on printer and filament sections. more vertical space for process section available now • Process > Global > Search Bar > added search icon UI component style updates • Updated style of most of UI components. All uses 4px corner rounding instead fully rounded • Updated some of old wxButtons with new buttons. still need too much work Added new icons for • param_default-pattern > Used for Support > Base Pattern Fixes • Converted these to step boxes ---- Sidebar > Support > Advanced > Top interface layers > this should not use drop down ---- Sidebar > Support > Advanced > Bottom interface layers > this should not use drop down Color Fixes • Dropdown focus / hold background color • Disabled element background color * Add missing side text for parameters * Gizmo Improvements All Gizmos • Updated button styles on all gizmos Arrange gizmo • Updated slider style Cut gizmo • Removed hexagon shapes for upper / lower part. Used colored text instead • Matched style of mode combo box Move & Rotate gizmo • Removed World axis text like on scale gizmo to reduce window size Variable Layer Height • Moved adaptive and smooth buttons to bottom • Changed name of smooth to smooth radius to improve relation with slider • Updated sliders style • Fixed gizmo not closing when other toolbar buttons clicked Assemble view • Updated slider and button styles • Used Assembly info window with vertical layout to reduce its size. This will also prevents overlapping with slider bar Mesh Boolean • Added new icons • Updated style of elements * Fix conflict * Update splash screen * Updated About Page * Mixed Sidebar • Updated style of Object list search bar • Updated Search list item background hover color Keyboard shortcuts window • Changed active tab color to orca color Color fixes • Disabled text color for UI components • "Slice" button disabled background and foreground color UI Component Styles • Matched style of more buttons --Progress dialog --Release Notes window * Update Toolbar icons * Update style of single choose dialog * Gizmo Improvements Cut Gizmo • Matched elements order with sidebar. Title > Revert button > Controller • Moved "Cut to Parts" checkbox to same line with "After Cut". This reduces vertical height and seems logical • Used slider for cut height controller • Used regular text color for build volume, groove, connector • Revert buttons only visible if value changed like on other UI sections • Removed shapes for "Upper Part" and "Lower Part". Used colored text instead • Matched radio button styles • Matched slider styles • Moved "Add Connector" and "Reset Cut" buttons to bottom to reduce vertical height • Connectors > Used icons for shapes • Connectors > Used regular button for "Remove connectors" • Connectors > Used radio buttons for connector style instead combo box SVG Gizmo • Matched elements order with sidebar. Title > Revert button > Controller • Slightly decreased preview size • Used Combo box for filename related dropdown • Surface related features will not show if there is no surface relation • Matched radio button styles • Matched slider styles Gizmos Combo Box • Fixed rendered with wrong width • Fixed drowpdown menu paddings * fix build with gcc13 Fix compilation error produced by GCC 13: /home/dbuzdyk/packages/3d/OrcaSlicer/src/slic3r/GUI/Gizmos/GLGizmoMeshBoolean.cpp:306: error: no match for call to ‘(Slic3r::GUI::GLGizmoMeshBoolean::on_render_input_window(float, float, float)::) (const wchar_t&, bool, ImVec2&, ImVec2&, std::string)’ 306 | if (tab_button( | ~~~~~~~~~~~~~~~ 307 | m_is_dark_mode ? ImGui::MeshBooleanUnionDark : ImGui::MeshBooleanUnion, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 308 | m_operation_mode == MeshBooleanOperation::Union, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 309 | tab_size, | ~~~~~~~~~ 310 | tab_padding, | ~~~~~~~~~~~~ 311 | _u8L("Union") | ~~~~~~~~~~~~~ 312 | )){ | /home/dbuzdyk/packages/3d/OrcaSlicer/src/slic3r/GUI/Gizmos/GLGizmoMeshBoolean.cpp:214: note: candidate: ‘Slic3r::GUI::GLGizmoMeshBoolean::on_render_input_window(float, float, float)::’ (near match) 214 | auto tab_button = [this](const wchar_t icon, bool selected, ImVec2 size, ImVec2 tab_padding, std::string& tooltip) { | /home/dbuzdyk/packages/3d/OrcaSlicer/src/slic3r/GUI/Gizmos/GLGizmoMeshBoolean.cpp:214: note: conversion of argument 5 would be ill-formed: In file included from /home/dbuzdyk/packages/3d/OrcaSlicer/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp:11, from /home/dbuzdyk/packages/3d/OrcaSlicer/src/slic3r/GUI/Gizmos/GLGizmoMeshBoolean.hpp:4: /home/dbuzdyk/packages/3d/OrcaSlicer/src/slic3r/GUI/I18N.hpp:7:54: error: cannot bind non-const lvalue reference of type ‘std::string&’ {aka ‘std::__cxx11::basic_string&’} to an rvalue of type ‘std::string’ {aka ‘std::__cxx11::basic_string’} 7 | #define _u8L(s) Slic3r::GUI::I18N::translate_utf8((s)) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~ /home/dbuzdyk/packages/3d/OrcaSlicer/src/slic3r/GUI/Gizmos/GLGizmoMeshBoolean.cpp:311: note: in expansion of macro ‘_u8L’ 311 | _u8L("Union") | * revert some icon changes * Add back missing menu icons --------- Co-authored-by: SoftFever Co-authored-by: Dima Buzdyk --- resources/images/OrcaSlicer.svg | 138 +----------------- .../images/OrcaSlicer_192px_grayscale.png | Bin 5224 -> 5137 bytes resources/images/add.svg | 23 +-- resources/images/add_copies.svg | 20 +-- resources/images/add_filament.svg | 5 +- resources/images/add_text_modifier.svg | 5 +- resources/images/add_text_negative.svg | 5 +- resources/images/add_text_part.svg | 5 +- resources/images/advanced.svg | 14 +- resources/images/align_horizontal_center.svg | 8 +- resources/images/align_horizontal_left.svg | 8 +- resources/images/align_horizontal_right.svg | 8 +- resources/images/align_vertical_bottom.svg | 61 +------- resources/images/align_vertical_center.svg | 61 +------- resources/images/align_vertical_top.svg | 61 +------- resources/images/ams_arrow.svg | 4 +- resources/images/ams_editable.svg | 9 +- resources/images/ams_editable_light.svg | 5 +- resources/images/ams_fila_sync.svg | 4 +- resources/images/ams_humidity_0.svg | 12 +- resources/images/ams_humidity_1.svg | 13 +- resources/images/ams_humidity_2.svg | 13 +- resources/images/ams_humidity_3.svg | 13 +- resources/images/ams_humidity_4.svg | 13 +- resources/images/ams_humidity_tips.svg | 17 +-- resources/images/ams_setting_hover.svg | 9 +- resources/images/ams_setting_normal.svg | 4 +- resources/images/ams_setting_press.svg | 9 +- resources/images/assemble_return.svg | 4 +- .../images/automatic_material_renewal.svg | 6 +- resources/images/auxiliary_cover.svg | 8 +- resources/images/auxiliary_delete.svg | 10 +- resources/images/bar_publish.svg | 4 +- resources/images/bind_machine.svg | 9 +- resources/images/block_notification_close.svg | 5 +- .../images/block_notification_close_hover.svg | 5 +- resources/images/block_notification_error.svg | 4 +- resources/images/browse.svg | 12 +- resources/images/burn.svg | 5 +- resources/images/cali_page_caption_help.svg | 5 +- .../images/cali_page_caption_help_hover.svg | 5 +- resources/images/calib_sf.svg | 16 +- resources/images/calib_sf_inactive.svg | 18 +-- resources/images/camera_setting.svg | 5 +- resources/images/camera_setting_hover.svg | 5 +- resources/images/camera_switch.svg | 77 +--------- resources/images/camera_switch_dark.svg | 77 +--------- resources/images/check_half.svg | 5 +- resources/images/check_half_disabled.svg | 5 +- resources/images/check_half_focused.svg | 5 +- resources/images/check_off.svg | 4 +- resources/images/check_off_disabled.svg | 4 +- resources/images/check_off_focused.svg | 4 +- resources/images/check_on.svg | 5 +- resources/images/check_on_disabled.svg | 5 +- resources/images/check_on_focused.svg | 5 +- resources/images/checked.svg | 5 +- resources/images/circle_paint.svg | 2 +- resources/images/circle_paint_dark.svg | 4 +- resources/images/cog.svg | 13 +- resources/images/collapse.svg | 17 +-- resources/images/compare.svg | 7 +- resources/images/completed.svg | 9 +- resources/images/confirm.svg | 4 +- resources/images/confirm_dark.svg | 4 +- resources/images/copy_menu.svg | 38 +---- resources/images/copy_menu_dark.svg | 38 +---- resources/images/create_success.svg | 11 +- resources/images/cross.svg | 9 +- resources/images/cross_focus.svg | 5 +- resources/images/cross_focus_large.svg | 12 +- resources/images/custom-gcode_advanced.svg | 1 + resources/images/custom-gcode_cooling_fan.svg | 1 + resources/images/custom-gcode_extruder.svg | 1 + resources/images/custom-gcode_filament.svg | 1 + resources/images/custom-gcode_gcode.svg | 3 +- resources/images/custom-gcode_measure.svg | 2 +- resources/images/custom-gcode_motion.svg | 1 + .../images/custom-gcode_multi_material.svg | 1 + resources/images/custom-gcode_note.svg | 1 + resources/images/custom-gcode_object-info.svg | 2 +- resources/images/custom-gcode_other.svg | 1 + resources/images/custom-gcode_quality.svg | 1 + .../images/custom-gcode_setting_override.svg | 1 + resources/images/custom-gcode_single.svg | 2 +- .../images/custom-gcode_slicing-state.svg | 2 +- .../custom-gcode_slicing-state_global.svg | 4 +- resources/images/custom-gcode_speed.svg | 1 + resources/images/custom-gcode_stats.svg | 2 +- resources/images/custom-gcode_strength.svg | 1 + resources/images/custom-gcode_support.svg | 1 + resources/images/custom-gcode_temperature.svg | 15 +- resources/images/custom-gcode_time.svg | 1 + .../images/custom-gcode_vector-index.svg | 2 +- resources/images/custom-gcode_vector.svg | 2 +- resources/images/cut_.svg | 5 +- resources/images/cut_circle.svg | 1 + resources/images/cut_circle_dark.svg | 1 + resources/images/cut_connectors.svg | 5 +- resources/images/cut_hexagon.svg | 1 + resources/images/cut_hexagon_dark.svg | 1 + resources/images/cut_square.svg | 1 + resources/images/cut_square_dark.svg | 1 + resources/images/cut_triangle.svg | 1 + resources/images/cut_triangle_dark.svg | 1 + resources/images/debugtool.svg | 2 +- resources/images/degree.svg | 8 +- resources/images/delete.svg | 23 +-- resources/images/delete_filament.svg | 4 +- resources/images/drop_down.svg | 4 +- resources/images/edit.svg | 4 +- resources/images/edit_button.svg | 5 +- resources/images/enable_ams.svg | 5 +- resources/images/equal.svg | 16 +- resources/images/exclamation.svg | 18 +-- resources/images/fan_control_add.svg | 5 +- resources/images/fan_control_decrease.svg | 4 +- resources/images/fan_icon.svg | 7 +- resources/images/filament.svg | 7 +- resources/images/fill_paint.svg | 2 +- resources/images/fill_paint_dark.svg | 8 +- resources/images/flush_volumes.svg | 11 +- resources/images/gap_fill.svg | 10 +- resources/images/gap_fill_dark.svg | 15 +- resources/images/height_range.svg | 2 +- resources/images/height_range_dark.svg | 5 +- resources/images/height_range_layer.svg | 1 + resources/images/height_range_modifier.svg | 1 + resources/images/hms_notify_lv1.svg | 5 +- resources/images/hms_notify_lv2.svg | 5 +- resources/images/hms_notify_lv3.svg | 6 +- resources/images/im_all_plates_stats.svg | 9 +- .../im_all_plates_stats_transparent.svg | 9 +- resources/images/im_fold.svg | 5 +- resources/images/im_gcode_custom.svg | 5 +- resources/images/im_gcode_pause.svg | 6 +- resources/images/im_slider_delete.svg | 6 +- resources/images/im_text_search.svg | 4 +- resources/images/im_text_search_close.svg | 5 +- resources/images/im_unfold.svg | 5 +- resources/images/info.svg | 72 +-------- resources/images/link_wiki_img.svg | 5 +- resources/images/lock_closed.svg | 11 +- resources/images/lock_closed_f.svg | 11 +- resources/images/lock_hover.svg | 5 +- resources/images/lock_normal.svg | 4 +- resources/images/lock_open.svg | 12 +- resources/images/lock_open_f.svg | 12 +- resources/images/machine_obejct_type.svg | 4 +- resources/images/machine_object_owner.svg | 5 +- resources/images/machine_object_printing.svg | 6 +- resources/images/make_bold.svg | 5 +- resources/images/make_italic.svg | 5 +- resources/images/make_unbold.svg | 5 +- resources/images/make_unitalic.svg | 5 +- resources/images/measure_edit.svg | 1 + resources/images/media_empty.svg | 19 +-- resources/images/media_failed.svg | 12 +- resources/images/media_play.svg | 6 +- resources/images/media_stop.svg | 4 +- resources/images/menu_add_modifier.svg | 5 +- resources/images/menu_add_negative.svg | 5 +- resources/images/menu_add_part.svg | 6 +- resources/images/menu_copy.svg | 4 +- resources/images/menu_cut.svg | 4 +- resources/images/menu_delete.svg | 4 +- resources/images/menu_edit_preset.svg | 4 +- resources/images/menu_exit.svg | 4 +- resources/images/menu_export_config.svg | 4 +- resources/images/menu_export_gcode.svg | 4 +- resources/images/menu_export_sliced_file.svg | 4 +- resources/images/menu_export_stl.svg | 4 +- resources/images/menu_fuzzy_skin.svg | 4 +- resources/images/menu_import.svg | 4 +- resources/images/menu_load.svg | 1 + resources/images/menu_mirror_x.svg | 1 + resources/images/menu_mirror_y.svg | 1 + resources/images/menu_mirror_z.svg | 1 + resources/images/menu_obj_cone.svg | 1 + resources/images/menu_obj_cube.svg | 1 + resources/images/menu_obj_cylinder.svg | 1 + resources/images/menu_obj_disc.svg | 1 + resources/images/menu_obj_sphere.svg | 1 + resources/images/menu_obj_svg.svg | 1 + resources/images/menu_obj_text.svg | 1 + resources/images/menu_obj_torus.svg | 1 + resources/images/menu_open.svg | 4 +- resources/images/menu_paste.svg | 4 +- resources/images/menu_redo.svg | 4 +- resources/images/menu_remove.svg | 4 +- resources/images/menu_save.svg | 4 +- resources/images/menu_split_objects.svg | 1 + resources/images/menu_split_parts.svg | 1 + resources/images/menu_support_blocker.svg | 23 +-- resources/images/menu_support_enforcer.svg | 5 +- resources/images/menu_undo.svg | 4 +- resources/images/mesh_boolean_a.svg | 1 + resources/images/mesh_boolean_b.svg | 1 + resources/images/mesh_boolean_difference.svg | 1 + .../images/mesh_boolean_difference_dark.svg | 1 + .../images/mesh_boolean_intersection.svg | 1 + .../images/mesh_boolean_intersection_dark.svg | 1 + resources/images/mesh_boolean_keep.svg | 1 + resources/images/mesh_boolean_subtract.svg | 1 + resources/images/mesh_boolean_union.svg | 1 + resources/images/mesh_boolean_union_dark.svg | 1 + resources/images/mmu_segmentation.svg | 8 +- resources/images/mmu_segmentation_dark.svg | 7 +- resources/images/model_time.svg | 5 +- resources/images/model_weight.svg | 7 +- resources/images/monitor_axis_home.svg | 4 +- resources/images/monitor_axis_home_icon.svg | 4 +- resources/images/monitor_bed_down.svg | 5 +- resources/images/monitor_bed_down_disable.svg | 5 +- resources/images/monitor_bed_temp.svg | 7 +- resources/images/monitor_bed_temp_active.svg | 7 +- resources/images/monitor_bed_up.svg | 5 +- resources/images/monitor_bed_up_disable.svg | 5 +- resources/images/monitor_camera.svg | 6 +- resources/images/monitor_extrduer_down.svg | 4 +- .../images/monitor_extrduer_down_disable.svg | 4 +- resources/images/monitor_extruder_up.svg | 4 +- .../images/monitor_extruder_up_disable.svg | 4 +- resources/images/monitor_fan.svg | 7 +- resources/images/monitor_fan_off.svg | 7 +- resources/images/monitor_fan_on.svg | 11 +- resources/images/monitor_frame_temp.svg | 6 +- .../images/monitor_frame_temp_active.svg | 6 +- resources/images/monitor_item_cost.svg | 10 +- resources/images/monitor_item_prediction.svg | 5 +- resources/images/monitor_item_print.svg | 4 +- resources/images/monitor_lamp_off.svg | 5 +- resources/images/monitor_lamp_on.svg | 5 +- resources/images/monitor_none_add.svg | 9 +- resources/images/monitor_none_arrow.svg | 8 +- resources/images/monitor_none_printer.svg | 8 +- resources/images/monitor_nozzle_temp.svg | 7 +- .../images/monitor_nozzle_temp_active.svg | 7 +- resources/images/monitor_play.svg | 5 +- resources/images/monitor_printer.svg | 4 +- resources/images/monitor_recording_off.svg | 7 +- .../images/monitor_recording_off_dark.svg | 7 +- resources/images/monitor_recording_on.svg | 8 +- .../images/monitor_recording_on_dark.svg | 8 +- resources/images/monitor_signal_middle.svg | 6 +- resources/images/monitor_signal_no.svg | 8 +- resources/images/monitor_signal_strong.svg | 6 +- resources/images/monitor_signal_weak.svg | 6 +- resources/images/monitor_speed.svg | 7 +- resources/images/monitor_speed_active.svg | 7 +- resources/images/monitor_state_on.svg | 11 +- resources/images/monitor_tasklist_print.svg | 4 +- resources/images/monitor_tasklist_time.svg | 5 +- resources/images/monitor_tasklist_weight.svg | 10 +- resources/images/monitor_timelapse_off.svg | 16 +- .../images/monitor_timelapse_off_dark.svg | 9 +- resources/images/monitor_timelapse_on.svg | 17 +-- .../images/monitor_timelapse_on_dark.svg | 10 +- resources/images/monitor_upgrade_busy.svg | 4 +- resources/images/monitor_upgrade_offline.svg | 4 +- resources/images/monitor_upgrade_online.svg | 4 +- resources/images/monitor_vcamera_off.svg | 8 +- resources/images/monitor_vcamera_off_dark.svg | 8 +- resources/images/monitor_vcamera_on.svg | 9 +- resources/images/monitor_vcamera_on_dark.svg | 9 +- resources/images/node_dot.svg | 9 +- resources/images/not_equal.svg | 17 +-- resources/images/note.svg | 10 +- resources/images/notification_arrow_left.svg | 4 +- resources/images/notification_arrow_open.svg | 11 +- resources/images/notification_arrow_right.svg | 4 +- resources/images/notification_cancel.svg | 20 +-- .../images/notification_cancel_hover.svg | 17 +-- resources/images/notification_close.svg | 15 +- resources/images/notification_close_dark.svg | 15 +- resources/images/notification_close_hover.svg | 14 +- .../images/notification_close_hover_dark.svg | 14 +- resources/images/notification_collapse.svg | 4 +- .../images/notification_documentation.svg | 43 +----- .../notification_documentation_dark.svg | 11 +- .../notification_documentation_hover.svg | 41 +----- .../notification_documentation_hover_dark.svg | 11 +- resources/images/notification_eject_sd.svg | 2 +- .../images/notification_eject_sd_hover.svg | 2 +- resources/images/notification_expand.svg | 4 +- resources/images/notification_minimalize.svg | 10 +- .../images/notification_minimalize_dark.svg | 5 +- .../images/notification_minimalize_hover.svg | 11 +- .../notification_minimalize_hover_dark.svg | 5 +- resources/images/notification_preferences.svg | 16 +- .../images/notification_preferences_dark.svg | 5 +- .../images/notification_preferences_hover.svg | 16 +- .../notification_preferences_hover_dark.svg | 5 +- resources/images/notification_right.svg | 2 +- resources/images/notification_right_dark.svg | 5 +- resources/images/notification_right_hover.svg | 2 +- .../images/notification_right_hover_dark.svg | 5 +- .../images/notification_slicing_complete.svg | 11 +- resources/images/obj_warning.svg | 5 +- resources/images/objlist_color_painting.svg | 1 + resources/images/objlist_seam_painting.svg | 1 + resources/images/objlist_sinking.svg | 6 +- resources/images/objlist_support_painting.svg | 1 + resources/images/one_layer_off.svg | 9 +- resources/images/one_layer_off_dark.svg | 9 +- resources/images/one_layer_off_hover.svg | 9 +- resources/images/one_layer_off_hover_dark.svg | 9 +- resources/images/one_layer_on.svg | 9 +- resources/images/one_layer_on_dark.svg | 13 +- resources/images/one_layer_on_hover.svg | 9 +- resources/images/one_layer_on_hover_dark.svg | 13 +- resources/images/open.svg | 12 +- resources/images/param_3dhoneycomb.svg | 12 +- resources/images/param_acceleration.svg | 15 +- resources/images/param_accessory.svg | 1 + resources/images/param_adaptive_mesh.svg | 1 + resources/images/param_adaptivecubic.svg | 31 +--- resources/images/param_adhension.svg | 6 +- resources/images/param_advanced.svg | 14 +- resources/images/param_alignedrectilinear.svg | 16 +- resources/images/param_archimedeanchords.svg | 12 +- resources/images/param_bed_temp.svg | 1 + resources/images/param_bridge.svg | 1 + resources/images/param_chamber_temp.svg | 7 +- resources/images/param_concentric.svg | 13 +- resources/images/param_cooling.svg | 18 +-- resources/images/param_cooling_aux_fan.svg | 1 + resources/images/param_cooling_exhaust.svg | 1 + resources/images/param_cooling_fan.svg | 15 +- resources/images/param_cooling_part_fan.svg | 1 + .../images/param_cooling_specific_layer.svg | 1 + resources/images/param_cubic.svg | 31 +--- resources/images/param_default-pattern.svg | 1 + resources/images/param_extruder_clearence.svg | 1 + .../param_extruder_lift_enforcement.svg | 1 + resources/images/param_extruder_size.svg | 1 + resources/images/param_extruder_temp.svg | 1 + resources/images/param_flush.svg | 14 +- resources/images/param_gcode.svg | 13 +- resources/images/param_grid.svg | 17 +-- resources/images/param_gyroid.svg | 17 +-- resources/images/param_hilbertcurve.svg | 14 +- resources/images/param_hollow.svg | 11 +- resources/images/param_honeycomb.svg | 12 +- resources/images/param_infill.svg | 30 +--- resources/images/param_information.svg | 11 +- resources/images/param_ironing.svg | 15 +- resources/images/param_jerk.svg | 1 + resources/images/param_layer_height.svg | 16 +- resources/images/param_lightning.svg | 14 +- resources/images/param_line.svg | 23 +-- resources/images/param_line_width.svg | 15 +- resources/images/param_monotonic.svg | 22 +-- resources/images/param_monotonicline.svg | 16 +- resources/images/param_multi_material.svg | 1 + resources/images/param_octagramspiral.svg | 13 +- resources/images/param_overhang.svg | 1 + resources/images/param_overhang_speed.svg | 1 + resources/images/param_position.svg | 1 + resources/images/param_precision.svg | 16 +- resources/images/param_printable_space.svg | 1 + resources/images/param_raft.svg | 6 +- resources/images/param_rectilinear-grid.svg | 21 +-- resources/images/param_rectilinear.svg | 16 +- .../images/param_rectilinear_interlaced.svg | 17 +-- resources/images/param_retraction.svg | 7 +- .../param_retraction_material_change.svg | 1 + resources/images/param_seam.svg | 6 +- resources/images/param_search.svg | 1 + resources/images/param_settings.svg | 1 + resources/images/param_shell.svg | 16 +- resources/images/param_special.svg | 16 +- resources/images/param_speed.svg | 14 +- resources/images/param_speed_first.svg | 15 +- resources/images/param_support.svg | 16 +- resources/images/param_support_filament.svg | 7 +- resources/images/param_support_tree.svg | 1 + resources/images/param_supportcubic.svg | 31 +--- resources/images/param_temperature.svg | 15 +- resources/images/param_toolchange.svg | 1 + resources/images/param_tower.svg | 13 +- resources/images/param_travel_speed.svg | 15 +- resources/images/param_tri-hexagon.svg | 20 +-- resources/images/param_triangles.svg | 20 +-- resources/images/param_volumetric_speed.svg | 8 +- resources/images/param_wall.svg | 13 +- resources/images/param_wall_generator.svg | 1 + resources/images/param_wall_surface.svg | 1 + resources/images/param_zig-zag.svg | 21 +-- resources/images/placeholder_excel.svg | 10 +- resources/images/placeholder_pdf.svg | 10 +- resources/images/placeholder_txt.svg | 14 +- resources/images/plate_arrange.svg | 9 +- resources/images/plate_arrange_dark.svg | 5 +- resources/images/plate_arrange_hover.svg | 9 +- resources/images/plate_arrange_hover_dark.svg | 5 +- resources/images/plate_close.svg | 7 +- resources/images/plate_close_dark.svg | 5 +- resources/images/plate_close_hover.svg | 7 +- resources/images/plate_close_hover_dark.svg | 5 +- resources/images/plate_locked.svg | 6 +- resources/images/plate_locked_dark.svg | 5 +- resources/images/plate_locked_hover.svg | 6 +- resources/images/plate_locked_hover_dark.svg | 5 +- resources/images/plate_name_edit.svg | 4 +- resources/images/plate_name_edit_dark.svg | 4 +- resources/images/plate_name_edit_hover.svg | 5 +- .../images/plate_name_edit_hover_dark.svg | 5 +- resources/images/plate_orient.svg | 16 +- resources/images/plate_orient_dark.svg | 11 +- resources/images/plate_orient_hover.svg | 16 +- resources/images/plate_orient_hover_dark.svg | 11 +- resources/images/plate_settings.svg | 7 +- resources/images/plate_settings_arrow.svg | 11 +- resources/images/plate_settings_changed.svg | 7 +- .../images/plate_settings_changed_dark.svg | 7 +- .../images/plate_settings_changed_hover.svg | 7 +- .../plate_settings_changed_hover_dark.svg | 7 +- resources/images/plate_settings_dark.svg | 7 +- resources/images/plate_settings_hover.svg | 7 +- .../images/plate_settings_hover_dark.svg | 7 +- resources/images/plate_unlocked.svg | 6 +- resources/images/plate_unlocked_dark.svg | 5 +- resources/images/plate_unlocked_hover.svg | 6 +- .../images/plate_unlocked_hover_dark.svg | 5 +- resources/images/print-time.svg | 13 +- resources/images/print-weight.svg | 18 +-- resources/images/print_control_pause.svg | 5 +- .../images/print_control_pause_disable.svg | 5 +- .../images/print_control_pause_hover.svg | 5 +- resources/images/print_control_resume.svg | 4 +- .../images/print_control_resume_disable.svg | 4 +- .../images/print_control_resume_hover.svg | 4 +- resources/images/print_control_stop.svg | 4 +- .../images/print_control_stop_disable.svg | 4 +- resources/images/print_control_stop_hover.svg | 4 +- resources/images/print_info_time.svg | 5 +- resources/images/print_info_weight.svg | 14 +- resources/images/printer.svg | 12 +- resources/images/printer_host_browser.svg | 4 +- resources/images/printer_host_test.svg | 10 +- resources/images/printer_in_lan.svg | 7 +- resources/images/printer_status_busy.svg | 5 +- resources/images/printer_status_idle.svg | 4 +- resources/images/printer_status_lock.svg | 5 +- resources/images/printer_status_offline.svg | 5 +- resources/images/process.svg | 6 +- resources/images/question.svg | 5 +- resources/images/radio_off.svg | 8 +- resources/images/radio_on.svg | 9 +- resources/images/reflection_x.svg | 5 +- resources/images/reflection_y.svg | 5 +- resources/images/refresh.svg | 5 +- resources/images/revert_btn.svg | 13 +- resources/images/save.svg | 4 +- resources/images/sdcard_state_abnormal.svg | 10 +- .../images/sdcard_state_abnormal_dark.svg | 10 +- resources/images/sdcard_state_no.svg | 11 +- resources/images/sdcard_state_no_dark.svg | 11 +- resources/images/sdcard_state_normal.svg | 10 +- resources/images/sdcard_state_normal_dark.svg | 10 +- resources/images/search.svg | 12 +- resources/images/seperator.svg | 4 +- resources/images/settings.svg | 4 +- resources/images/sidebutton_dropdown.svg | 4 +- resources/images/spin_dec.svg | 4 +- resources/images/spin_inc.svg | 4 +- resources/images/split_objects.svg | 6 +- resources/images/split_objects_dark.svg | 6 +- resources/images/split_parts.svg | 7 +- resources/images/split_parts_dark.svg | 7 +- resources/images/spool.svg | 4 +- resources/images/step_1.svg | 5 +- resources/images/step_2.svg | 5 +- resources/images/step_2_ready.svg | 5 +- resources/images/step_is_ok.svg | 5 +- resources/images/support.svg | 17 +-- resources/images/svg_modifier.svg | 5 +- resources/images/svg_negative.svg | 5 +- resources/images/svg_part.svg | 5 +- resources/images/tab_3d_active.svg | 5 +- resources/images/tab_auxiliary_active.svg | 10 +- resources/images/tab_calibration.svg | 1 + resources/images/tab_home_active.svg | 4 +- resources/images/tab_monitor_active.svg | 8 +- resources/images/tab_presets_active.svg | 4 +- resources/images/tab_presets_inactive.svg | 4 +- resources/images/tab_preview_active.svg | 4 +- resources/images/table.svg | 10 +- resources/images/tips_arrow.svg | 4 +- resources/images/toggle_off.svg | 5 +- resources/images/toggle_on.svg | 5 +- resources/images/toolbar_add_plate.svg | 15 +- resources/images/toolbar_add_plate_dark.svg | 15 +- resources/images/toolbar_arrange.svg | 8 +- resources/images/toolbar_arrange_dark.svg | 8 +- resources/images/toolbar_assemble.svg | 7 +- resources/images/toolbar_assemble_dark.svg | 7 +- resources/images/toolbar_cut.svg | 6 +- resources/images/toolbar_cut_dark.svg | 6 +- resources/images/toolbar_measure.svg | 94 +----------- resources/images/toolbar_measure_dark.svg | 94 +----------- resources/images/toolbar_meshboolean.svg | 14 +- resources/images/toolbar_meshboolean_dark.svg | 14 +- resources/images/toolbar_modifier_sphere.svg | 6 +- .../images/toolbar_modifier_sphere_dark.svg | 6 +- resources/images/toolbar_move.svg | 8 +- resources/images/toolbar_move_dark.svg | 8 +- resources/images/toolbar_open.svg | 10 +- resources/images/toolbar_open_dark.svg | 10 +- resources/images/toolbar_reset.svg | 5 +- resources/images/toolbar_reset_hover.svg | 4 +- resources/images/toolbar_rotate.svg | 13 +- resources/images/toolbar_rotate_dark.svg | 13 +- resources/images/toolbar_scale.svg | 13 +- resources/images/toolbar_scale_dark.svg | 13 +- resources/images/toolbar_seam.svg | 8 +- resources/images/toolbar_seam_dark.svg | 8 +- resources/images/toolbar_support.svg | 13 +- resources/images/toolbar_support_dark.svg | 13 +- resources/images/toolbar_text.svg | 5 +- resources/images/toolbar_text_dark.svg | 5 +- resources/images/toolbar_tooltip.svg | 15 +- resources/images/toolbar_tooltip_hover.svg | 15 +- resources/images/topbar_blank.svg | 1 + resources/images/topbar_close.svg | 5 +- resources/images/topbar_dropdown.svg | 4 +- resources/images/topbar_file.svg | 6 +- resources/images/topbar_max.svg | 5 +- resources/images/topbar_min.svg | 4 +- resources/images/topbar_redo.svg | 4 +- resources/images/topbar_redo_inactive.svg | 6 +- resources/images/topbar_save.svg | 6 +- resources/images/topbar_undo.svg | 4 +- resources/images/topbar_undo_inactive.svg | 6 +- resources/images/topbar_win.svg | 5 +- resources/images/triangle_paint.svg | 2 +- resources/images/triangle_paint_dark.svg | 4 +- resources/images/unbind.svg | 9 +- resources/images/unbind_machine.svg | 9 +- resources/images/unbind_selected.svg | 9 +- resources/images/undefined.svg | 1 + resources/images/undo.svg | 7 +- resources/images/video_state_off.svg | 10 +- resources/images/video_state_on.svg | 10 +- src/slic3r/GUI/GUI_Factories.cpp | 57 +++++--- 546 files changed, 578 insertions(+), 4175 deletions(-) create mode 100644 resources/images/custom-gcode_advanced.svg create mode 100644 resources/images/custom-gcode_cooling_fan.svg create mode 100644 resources/images/custom-gcode_extruder.svg create mode 100644 resources/images/custom-gcode_filament.svg create mode 100644 resources/images/custom-gcode_motion.svg create mode 100644 resources/images/custom-gcode_multi_material.svg create mode 100644 resources/images/custom-gcode_note.svg create mode 100644 resources/images/custom-gcode_other.svg create mode 100644 resources/images/custom-gcode_quality.svg create mode 100644 resources/images/custom-gcode_setting_override.svg create mode 100644 resources/images/custom-gcode_speed.svg create mode 100644 resources/images/custom-gcode_strength.svg create mode 100644 resources/images/custom-gcode_support.svg create mode 100644 resources/images/custom-gcode_time.svg create mode 100644 resources/images/cut_circle.svg create mode 100644 resources/images/cut_circle_dark.svg create mode 100644 resources/images/cut_hexagon.svg create mode 100644 resources/images/cut_hexagon_dark.svg create mode 100644 resources/images/cut_square.svg create mode 100644 resources/images/cut_square_dark.svg create mode 100644 resources/images/cut_triangle.svg create mode 100644 resources/images/cut_triangle_dark.svg create mode 100644 resources/images/height_range_layer.svg create mode 100644 resources/images/height_range_modifier.svg create mode 100644 resources/images/measure_edit.svg create mode 100644 resources/images/menu_load.svg create mode 100644 resources/images/menu_mirror_x.svg create mode 100644 resources/images/menu_mirror_y.svg create mode 100644 resources/images/menu_mirror_z.svg create mode 100644 resources/images/menu_obj_cone.svg create mode 100644 resources/images/menu_obj_cube.svg create mode 100644 resources/images/menu_obj_cylinder.svg create mode 100644 resources/images/menu_obj_disc.svg create mode 100644 resources/images/menu_obj_sphere.svg create mode 100644 resources/images/menu_obj_svg.svg create mode 100644 resources/images/menu_obj_text.svg create mode 100644 resources/images/menu_obj_torus.svg create mode 100644 resources/images/menu_split_objects.svg create mode 100644 resources/images/menu_split_parts.svg create mode 100644 resources/images/mesh_boolean_a.svg create mode 100644 resources/images/mesh_boolean_b.svg create mode 100644 resources/images/mesh_boolean_difference.svg create mode 100644 resources/images/mesh_boolean_difference_dark.svg create mode 100644 resources/images/mesh_boolean_intersection.svg create mode 100644 resources/images/mesh_boolean_intersection_dark.svg create mode 100644 resources/images/mesh_boolean_keep.svg create mode 100644 resources/images/mesh_boolean_subtract.svg create mode 100644 resources/images/mesh_boolean_union.svg create mode 100644 resources/images/mesh_boolean_union_dark.svg create mode 100644 resources/images/objlist_color_painting.svg create mode 100644 resources/images/objlist_seam_painting.svg create mode 100644 resources/images/objlist_support_painting.svg create mode 100644 resources/images/param_accessory.svg create mode 100644 resources/images/param_adaptive_mesh.svg create mode 100644 resources/images/param_bed_temp.svg create mode 100644 resources/images/param_bridge.svg create mode 100644 resources/images/param_cooling_aux_fan.svg create mode 100644 resources/images/param_cooling_exhaust.svg create mode 100644 resources/images/param_cooling_part_fan.svg create mode 100644 resources/images/param_cooling_specific_layer.svg create mode 100644 resources/images/param_default-pattern.svg create mode 100644 resources/images/param_extruder_clearence.svg create mode 100644 resources/images/param_extruder_lift_enforcement.svg create mode 100644 resources/images/param_extruder_size.svg create mode 100644 resources/images/param_extruder_temp.svg create mode 100644 resources/images/param_jerk.svg create mode 100644 resources/images/param_multi_material.svg create mode 100644 resources/images/param_overhang.svg create mode 100644 resources/images/param_overhang_speed.svg create mode 100644 resources/images/param_position.svg create mode 100644 resources/images/param_printable_space.svg create mode 100644 resources/images/param_retraction_material_change.svg create mode 100644 resources/images/param_search.svg create mode 100644 resources/images/param_settings.svg create mode 100644 resources/images/param_support_tree.svg create mode 100644 resources/images/param_toolchange.svg create mode 100644 resources/images/param_wall_generator.svg create mode 100644 resources/images/param_wall_surface.svg create mode 100644 resources/images/tab_calibration.svg create mode 100644 resources/images/topbar_blank.svg create mode 100644 resources/images/undefined.svg diff --git a/resources/images/OrcaSlicer.svg b/resources/images/OrcaSlicer.svg index 66324266e9..f8d677c555 100644 --- a/resources/images/OrcaSlicer.svg +++ b/resources/images/OrcaSlicer.svg @@ -1,137 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/OrcaSlicer_192px_grayscale.png b/resources/images/OrcaSlicer_192px_grayscale.png index b8d04439ad58af865a455565d9ab4f1417824949..9570a16be65ba3e46c48017bab184639be275144 100644 GIT binary patch literal 5137 zcmV+s6z=PZP)s?ss?)$O7_ntkU8T>qVAH03i_j~U-=l({SC6i`)l z0RYSx_lKdwS@R!7QM#k>%|bJPs;Z9yzykfxY~c+|95@L8XoPM>Q98r;zJVG*Rn-~* zK;bVHE;0K3h0DvZVPEnMz!c`CP%>cUa z*8{)`;UdH2PdnJ>$~T zgaB%;L)V~V9ECu7qT9yxd?q67(L*BJ39@Yi=;H6@*;^)J;H>fjyC$#|0->z2T-GZ?sZ95tYXoRx@iP)rtZO(U84aMS>UvIk83N4KwQPxH z2&6A=dt11`F!FN0)#ABKBS6++gJC4ZQqzI~^wSx*{``3u9UXy-LqmDp)9tt44)^`>ecJz5&6@}J+;a~s zTJ(tUz8JI6d?wL&19b8d=U_px@7dD{r%s)Mfx!V79T@?u!h~DU7?UPVg38K=pt|}? z@c9QHB>OYX!5&3XZfvBvVF0fD1jpgShoG~g15TfQ6Ruvp8p=J~a?34HT3QMV7cPRO zOCN>FB_+ap2y>$%WHtcCN8gRpPa#N9^sl`9BRF&B3|zZ*EpqpF&%O7;!Uc<9ZM~;^ z&ZEi(MNzbTz-$0?#Pm3P`=G$^roFul4jlN8(0Y2i6ciLdd3ib1*Z&>mFzKA4DB9Vx zngR4RKS|+jj3ZF^&CSn1DwXslo)3!Ri4$SPiW*qH{0WLesKhlwh5>Ng`xoIYL`V+} z!B9HCDoT0z1CU50g!X(u;n&x%(JD8TNE8*p%9X3A89@t!3)_y^@E$*@sHlX>haS?*@XOauB(|pMr=ziU`A-{ayRD-aeg93)h)w@!q@d!t&)`fx0zoWlWN1paCj`<`BTp zrfdIx=<3=Zh1+3lfO+JW&CkJbdI(n6t(ECVSAii=D(szK8=IeD;S&ItSIn-cfac~+ zj!Ve_b8bS|;@6T}7QgghQjDBTrC{yaI$6Tk=~nvz0;Ncfo`T82gb6pLbY^f6R;{do z!NGy-e<=clZh(@~QZ0chWFtt6S^Ng0qoc5PO9Cc%seE-ZTNJ=-b*gsl!i5Xa*LNEF`uc?T`vHpI2!E_7EG&fWJ9b4jCy0~*#)G9$ zHp5sJFa9%_GiQ$WIz<<~6<4lYf%djmXldDEan&1gi62?Ft`U}0R}1Y?A<_mgFy;n! z?ARX52{G*HaaHEykAEer=&k7J*bVEx^|ZwmcTf;N$YKD4k&zM21aUEfA^a6JwNO-4 zBwWvzhIQY9-MfG0$vvUytz!Q1$RK`@%>V{ygl#YW5O(g|AzY&ZioULHjVs|B96x>> zo_g}Hgm$~+)9Zso;)f_yft-K|)ta^Su&uQn%F4>*`vO^*I&~WS=;a?nV`Gyi;`ag+ zK2CDwBmUK^>!cAs$Z7xsT#nq@_7c>tTqRtS5ln3N{QOmT_~C~marY?re1(rJSyBzl zBwG(8wE+xpx6+oD=cS%Yz>w!(xBilzw`_NYU`00^FU z(D#`RIdKNqybQwJ+q3v@BIQJw9dOdD zZuK`JwUK_-tXa^x=T)KIEBgEUVCk3t(zD*)3?=ac^$`H{oS?DkJ8;JxcL>+Q0@w8T zMQ6uu`07`m@~pQvLrwfZIR`Lfb(mF{JUnNPFQ5L>OYQLNrj0_o7f=*G#Ki!(X6VBY zKNQ--V&=?Qo_;beeQs=62Zs(F6s~yzRq;a{LLg+@wikuAFhRk3#oeb(XD_1@cu6qG>@k1O!pnw0t3qo7iw6tv2 z@&G4g(BJp>Yq36-IsGIK;s@$wP&~DH*)so@8MpyUpIPW+$U>coIEo)A8{nru{fW>PC88pHh_U#AvH^}AdqZf8 z0#On^@`br`V=I23Iu8)V@W<`idq225s~kGZr^3Zc??>jIf`+64qO=FV=<%Z@e9*;z z@r(1|gS!$izw?#Ynt-GM@O;rIU{)I&>jSK&(R5*OyV~}9gVvGvpzC)jp`9w^4A9#XtO26l>w^vPBiC-b71sRbXl#;Vat3(k9aU)a zi>UYdU{m}Cm=u5g=R1XVijXtFrOTIvHm{MP*9V8s{RfkfGl1XE4UnPN z2bbbE_|D)dp^X~k41f=9_5)dZeeg*9$R7&tfWQ7ptI$pfQU<^!5Pl#_uMZxI-{2Po z{|6_|y)Cp;fs_IIf8Q^(xxrY*AVaSYK8PRms?gsb?h@Lm5Q|eGoWSD02~Lnvof}{S zSRhl#13ru2;OSq{tO&6I#vxO$4*`iE^tD11M*%i~2^N2LzW3|bvtE}GHh>O`KR1{Q zP^$>B0a*OD_@~#qL-}04h`j+={PyVi-~S2iv;82}24L~q=c7a+ym0tHsQ2I{u{8jT z-x-s8-hlUy{aR?36;cM6`6n}lHY>tDfz2*a5dVa$AHn@U?u5IOZ^CP@b!m^Dq5vra zeEz`)g|_iT?OdK*L_z$Ye)qqjtaUql`knV~w55_s;e9efE(FTev$Oc^ad+xXxc`+7 zxaI0cWB%UJqcmoQ$r+$9kr3JpWD@@$?!7xy@ngs{ZSO&te8l>Mz21=aUV9BW157L~ z7TQ3vxF5y;U(5bNXb%bud8YqtKNOugm+=!vM@M0Ba6o964RQvUG)WQKK%(B?5dXE? zZxgNsL2=&z+_!7rn0P-E6!HLa2B?}Rh7Gdy{9%Y6L!K%B*#lD!^a$~OCZhE4ai@?o zz`QEa05bIcVT#`fd5TZl3u%%BMgVfhqfag=(e~~dr^B)Mvx6ZICc63d`eufQ(?XkU zkemrFEiJwA|4|Qr!VSZ6I=OIdGaBh4)-K(w~#adE{T{vV}{Tk6~YjIu8A$D3`jl~Kz23g;zt$> zZBZZ$@!xqNt*zzBHnHUt*%!r;HNf1eDxocG!Vv$x$C5C8*FIN?E@j9*C9p|MeDw}W5em!;P?Q^F&Fd|*PnY}s;0_wASXW$N|K zl$6Rn0u&4n5Bu|IbqQFts@B$WX+OkoY)+ST4NvzGxz7lV^#d{*8XBRnuuy2X!VmGw z+UpzOehb-&wE=L`Og^Piuf?xzR*@{$x1zkP+@e)3V*iXV+&Y=9H0rhZjoDlZ%a$>h zk{z;JBJEI9yAsmrwD#l^GhT`xdwtxfLTN&)qLK|jhII{%+7TZ{QtYMpapmUS$y21( z>*HLC>~jFXA<$ShZ*GA?Ws+y&$MyR7TrFI=No})AC4t@_cmx>BrtSlfe0+)4=0^Nj z+Qe9&@{;AbbE9|cj1$-ZI!$|b!w*0D0KjFhk9%{c95@2Een8_XidJChIEv>kIe`se z7QYK*pU|>HmBlj{WF__n@Iw4<&e)fcunrpVgIF8Dt@tUHHgkd19}4w{$3xBl`G`Mm zYj>Q2hXzoGlmT*yALD!!KA)+d8{8*dMqtx>F31=loA|k`X%9T{nR4Q5hJ*n!i67(q zNykp`BZO>#RUbc2(T*z88z7VTxt{L~6hGCPzZFs&z)Jj>;9_Nm>-qMwn$_pggV$Yul;)+xT z_~(PKLHm0bVagjPp!oEFaGkM-A%4nB9daSn$#7qoG7V;L-^=3n02cozNM(Sk&wdUz zZ)qWME`6A=_-`WJ*`PQ*kH0)NfiwPe?pzkX2`LZ9#a|x&67iSGQ)c;x~cM z2N+j{-o4l(%oeuAMuewRIbe zj*f~KV}h}wGj8j89Pk(#U>p^>({S? zs;XxJU^QdxJC^O|8N64rIVX|=A5D^GYkW?0l*5X-}JSvE@)}l zOfoFOBo~FxNv>_$6-B8r3{V3Aq-%*IBO_XV(ACvNVnkr!yQWrAls3Zv69M3T$-hwE z;E1qu*Nz*HM3o5)b(SxCf)iZ#{E?z4mox()s;YJZz*4!tlRX9p2VmFEozUCc6Y1~> zd;6-YD(#G(IBi$-kv)o{VD%Hs1|U@qwF@T9N00VK#tbNWd=@W0j+A?Q&v{Hy6zuSC z8UQ{q0m*8RT~eteq>@QUrjmh`Qn7YlQCSI<6_wg6PhRy1wvZvae&aTF*f{Uh)Q ztSq59%#2+5qzwg~C>lE%#WniSxeNd^F!?oZWQ+lTM*)U5V|stcupi(#-6;%1iOagS z#~>I$A0F28ubv^sdUNPwAcQ~$s;Xl7W43UCVdUeaq9~SY<%JQzM2*nGFmjSn%NY%z zC<=}M8-xoCBNrQVEnAW?1Ts)nRq8#%OsvTm`WR#!0Zcr~RUt+~P_qki-F8j`=$Z2Z zHUT3Mn)t1%KI6&jTp&G$suwOWOf;#_7WbRU`(P~GJb;@BgbNH4EoybG=7p`3;n)OB z#IYrQaB?&vn}CTZw#5(mltDA0sw$S3x_RX&6Ea4^>uBSK}hjMptS4j`CWxOR`_B712zKV65oVx z;Hv=)^v(7)`f>`+5twY8)3+|R<+GN@ErA%oj6Q!*qc5=I9cK*a<;-qf^nspfAGiU` z=p(}dJ$W`>d18$=IB|s{N5N~aLG<*N0KoqPe8NdaH$n>_00000NkvXXu0mjf6am(M literal 5224 zcmX9?c|6nqA9s9f63r3G(c}y-|~cWouJjZc%PFHa1>!vx|1nZ^!mc-P_x(1EjqNDX{Gx$FBzw;P8u&X@+1Spk`TCAyd7EN1ipNUgbMCH=g}gXg+wdv% z%*zJhh=JLe`?~SbpGAgp1n?oBEEFPZgo0|y+9DpLtcND0J|tcWDTZ;B4xGJqq)37J z^Xzw)Vq5KX6ZChuI!{)6){Dn|Hke#bIxD*1DX2*5VX>>BfGe0>7N-f_3Gh>7J>e~7 zRD&Toh(32na0R2P$O@&+-+%3QB{xeh@phA#3n8!Gok_i)7Wre6sxACGcthRo0VT6z z%cp_Ir|s&c<|*?`zq{Hc%pzhg>tpgU?@tP(p25~6sqE?S)DG(SmbY7z_jFTwz;xog zbG^HYOq%rhk~B{piT6TSHlQ=b2$TC1sJ!{rY$4g7B0bmfJ#lHWSj28jNR0Z622(2r z6 z^!cTGc!3P5!7#7so?HB6AhfvnUj@ytwWvR7iL>5a@1L*6_z(e0$Wu)(fk8asLlZiYiQT0Ds6 zX6zaptq+{`SbICT(6URc67`y@TcM1&ZcK(_Ll$DjoLi5ty)cf7Qn3s_l)dbW-tP6v+v5yx5DA?V|-X zwia5v*HF1f?^fcbVtFKp=?K&>2aIY!4}4hYT+J(R^&1PFmmKYl_Jblxj+omfce3tK zlc>%SH>5WJ}P`_EMZKvTknRbUkPh}VmvriyDc=pTxrEmtX@4z zJTHIo)7)3IN%}M8BF&+dsiuYLmIw!1TZ4qTIp32ZGUU>W!+5TqUGy%H)!QD6FlY;XDC02axwY6#Pi8fC!*wxie$geE&n6!(? zq4>gI&YMmIU%nPCO-z3NLhf6c5$x65w>i3rzkc2N+8{-|6@BnDswxNu*RaM&E)RD< z@)e#JD#NM{b1PV)(bD&nu97gC4dSPVzkJa* ziLVe64S6y~88ilrR0BTT0b<_x!;!1<*Os43V_<@EDdnChY*uF7?L~p0B;??h2ggsb zerG`T!z%Cc!p0{3EBEVdzk%Y4zkkEeYCG1t2Y!_s+s^fr(y|QdFp)T4M(BQu&od07 zw4Wq;FXs@O-oku@0zuE3D{ zS=re+6iJ%`UGua`wBwTgd zvCg`{xIGwRb*u6 z^E1}RI#QR$x?k&`|ClB*b*8lMpY`jLoIsdc4?O-7BhJj^Kq%ky#>Tw9gu+76LR3)g zO=>UZYD+CBP?iM(z&))-bO^i8^UAE_>%fLzj&=n9a3+GwmN9Vu?xuYuyCS4nTgJ0&x%`N5U*U~N#nGcc6Zv{2MguEPDH#;m*%7f@e#EejW}d z_}JZ}E$Y!|jR(5sPl-lr3=>h8gW#HDlxM&>6b>m~6r`dRv=u+F-IMsYAqi>JW+d*BuLn<^0-gd3@1K#{ zZDBTq`z9EDaXKttMwzPVh~dCuY7C2%@EHg`BcP5x;O*euagSZxA5c%f-S*Eby3~Du z{Y(zRSx=CB{&+z(I3~{UKe0SDUP_5jZ)l_;5ZbaN3@|TS$-8JYbRN+gAA0}=Q^p^{@B5#$v0Hd3` z;e|yX@)8IH)_M|%^Uw1{CQadzmT9mqGfcH`2YY$~oWshELHU-6_0t9VVYhC1;dB4B zgyVeW68$G#Wa|n ziK6~{H+vdEPN)z+e-b5W&EWig^85J9HHG!C0RlbZQJbHp3mKk}39>1Fu^ZET^P}dG zDTZ~4H-~$)cVAq3l88DZkEoBd-J4(iMP5@uQd+#*z-X;*xN59XPf>&5YclrGU5%8! zyWO{-jb|aQ{lguXV@iV!K8&)bD?=5O2ZGzIvz3t1f!8)pbl$nFhh5T*KWFG2(CrGa z2WKJTV`H|P)Dpnj^}hKChZ(#7gdC;?w{Itcg`@QPT&VjpD1E$2^7Iorn8D(p5o3>` zn!TZNLTSXpgW|Kv*q`EE#3cO3XJHIZZz=5bD4Rhhg)7KIFQ5c`VQ0=S4;W~@ojxp? z$vR*`ho$drKPpr?`Wk`|q_Ec_>ti@GSrvJdtA_GUHUCOuHqPbeXnQsXl0Yr>#wJ}q zs0mQCXPI)ojASriO#p%=A6R zyQrYMkyC#9qCRo^p;7AUFX|_5=awHb#t73jI+WIwN)lCdA8;g9f|8rYVL;L(W@%pMJ9sj*qyRT z+{(nJnn{uLCpxUlWN+oz2PQhb8~eco7z(Je$45mk2Ae<{TTHZ$znH+TF~);Fq+m0h zpD&`Rh>}cW#Em*Io+6{GhdgOmMsLe6eWwyG>$s5nL=MSlN~ zS|b>R?iG69qMh0UPbdRLSE>GA&iQ&E2V2z215ujc@%!>>kPW53n#rOcE^_Q<{rRjp zTxMBya`0(F)4or8AWXE&5%asJK;6IVGhLW~ckMLGHPJ(HAK%Z@0mJ*4o&<(z)iwCZ z_*3Vj@sel=gr`v*X;MZ&O*e2x#pCJt*$;K-&neK6C4!Q;-ZO5$1D)-rSeM$~<&QNy zL|fX}9M4AZp#k-AN8H=WPew|xsL%k)so&lCV03;j{IZQOQ0=zxj8^5pY>)VQ6pgJT(w`QU{P2~ z3XfPeBI6hh#x$7xo1Faq{e;By;IIy$u+tUM%H~Uh(GCFW-52||82)(RN0oN5`Q&Mm zbqtg?S&0$n9{6R8fnrSI(ij!}DXFQVkS{0Nm<-jIbl|E^`;9lP_uQIPLfHK{_6;l; zab@lU#b8nL5yK$E{{c{1m(`VYroh$plBYoTCujcv{DDr0`vkJHxKVB^vGsS>^KdVh3nOE za4`#}B%ySA;eYW{U3bQ};l;ajdrKcCh4_v`JJfdXEo9i9#{z@LE)|&yC|`_Qs{40(6rIwV8+) z{ZqHFo;a?nBdbBUD-2EnAmURw31d5Cx=$$t4J3_W+xk5xVxt6kQ$@L#dFJAL0jv zNuv-zdKri+Bid)#yHB*kiP=g%L{7&ZxS145@HaC8Q5E6$`Ilt$GAPV_KnVg!H<@%8 zKmb3LcnWK5tUNpPIs7519^e!))Ew?2u}n^A4olwix`^Eu%L4GH?$e6}?$33?0^J4c zId>gnp-@euW0i7Qh3wM}4KRzN?|6cP?Pt<;! z_vA_Kl`}=+!sZ?_xhX{G!V&=tCAxU5rCrE7Rphct**@C~72ll>KjHc65(ZR5dT0-o zaw-~Pu?R6}YUZHcxRii{GcB)=gj(P!r&O=8DZ||%GC(qrC`*jHxZky7PWc4|zOvAv z=q7AD;I#7RFtNT15sw%UHi`DYBcIzJ%7eHobK|M=v?GQF%mtbrD=aD+20>j5fPF#* zd!y*>{3~Rjg&rl=-&$T?e!K@xz6EHOFwik>$F;75r)yR7C9Xjjcca5uK?CWF0r``s z#ax7Wo2e?SU%#rPl;{+u4bAjA>@z>7t()j*{Aj3v2Y#6j^Qi{4o+NwOhhGVgzo`3I z#l{8#a8)tZ0`vA1x^ZsS@~a`cPi50(=iez{^zBSky`$scbo(jg9^u~fyOlT^%*S=_ z-Me?(b+*S9{R!ZZGO&S%2#S~CudQ=?>Wct%UD(D1!#g2Gs%UAk=prttc#7ZJs)BrF zd1gz9bf}b@-N^Xcn4*}QgwI1{1Tg$f9zWTvSv8DXTv_>RQbOV;n*i#~mR6qEe_i0< z7$B2XyZ%0c%ySX64WNfq)cxG}GA>cWRFy<=VsO^GV0fXyAEF>DFgc|*KD}824RJET zU@73VoPw>MJ^uR-$>)Dxfd2meNzG(JC$_2b$P2rhH!NNO4`#;pFEOOJ#Kc3nW?dKO zCSjx0Mq#d%{hMkwh5av&)RhwcjBjq!9wpFlgUA{hVB`3)AFQd75rrbZsS~a?RTC~A zvqK4Bv`Ft7o2GFeniV%pc<0)m7m2G-0tzXEiA_+WSd-1(o85&2P@CQe?!@nM^uB1+Tgr(P>` zq|>1|i~N82U7zufiaATH1ZelO>tuLBrqY0frDclK)yI*id!)WbgucBZ-0;zxJ!{Pl zlZnWH(<7oMwN%2$^n?5^HO%mi_p;v#Yu(kf)$~@HZ$8|DE?dzT_hLDt{fzxpp`9ie z&AwE8C#!R?k2=MLob5|7iabU;2CyfB4KYDU>+5F{k`{PwW)}XC?UZV{o1$8fu$vtD zV*X(1&-#`Y`_0YGs?N^WqGDo?7MS809_1f{_St27`@K{qN&Ab6yHduxOBXSm5X)DC zQX~k01So-h#_B;r58DTrEpYlVz!>wp3CmWU+suJ6J)8;sgUDuXY<;oT@LKHu0p8S@ A6#xJL diff --git a/resources/images/add.svg b/resources/images/add.svg index 37050d7481..351f830b6c 100644 --- a/resources/images/add.svg +++ b/resources/images/add.svg @@ -1,22 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/add_copies.svg b/resources/images/add_copies.svg index 7eb75471ef..a491ba51e5 100644 --- a/resources/images/add_copies.svg +++ b/resources/images/add_copies.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/add_filament.svg b/resources/images/add_filament.svg index 01e567c89a..47fd58c02b 100644 --- a/resources/images/add_filament.svg +++ b/resources/images/add_filament.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/add_text_modifier.svg b/resources/images/add_text_modifier.svg index d79499eff8..efb21d9257 100644 --- a/resources/images/add_text_modifier.svg +++ b/resources/images/add_text_modifier.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/add_text_negative.svg b/resources/images/add_text_negative.svg index 2cf4456925..a59209746b 100644 --- a/resources/images/add_text_negative.svg +++ b/resources/images/add_text_negative.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/add_text_part.svg b/resources/images/add_text_part.svg index c4972e6cbe..d36ff970cd 100644 --- a/resources/images/add_text_part.svg +++ b/resources/images/add_text_part.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/advanced.svg b/resources/images/advanced.svg index 591e82ff2d..561a15b303 100644 --- a/resources/images/advanced.svg +++ b/resources/images/advanced.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/align_horizontal_center.svg b/resources/images/align_horizontal_center.svg index a91ab70ac6..3f67d2682f 100644 --- a/resources/images/align_horizontal_center.svg +++ b/resources/images/align_horizontal_center.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/align_horizontal_left.svg b/resources/images/align_horizontal_left.svg index fc72e75cf0..aeee375a42 100644 --- a/resources/images/align_horizontal_left.svg +++ b/resources/images/align_horizontal_left.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/align_horizontal_right.svg b/resources/images/align_horizontal_right.svg index 2e83ee635a..e558465943 100644 --- a/resources/images/align_horizontal_right.svg +++ b/resources/images/align_horizontal_right.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/align_vertical_bottom.svg b/resources/images/align_vertical_bottom.svg index 9f65196ed7..7f3d90e686 100644 --- a/resources/images/align_vertical_bottom.svg +++ b/resources/images/align_vertical_bottom.svg @@ -1,60 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/align_vertical_center.svg b/resources/images/align_vertical_center.svg index 348c08a981..0b173d5eb8 100644 --- a/resources/images/align_vertical_center.svg +++ b/resources/images/align_vertical_center.svg @@ -1,60 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/align_vertical_top.svg b/resources/images/align_vertical_top.svg index 0bcb4b9e0b..c6812edd93 100644 --- a/resources/images/align_vertical_top.svg +++ b/resources/images/align_vertical_top.svg @@ -1,60 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_arrow.svg b/resources/images/ams_arrow.svg index 6c317fbdc7..f5c39a6388 100644 --- a/resources/images/ams_arrow.svg +++ b/resources/images/ams_arrow.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/ams_editable.svg b/resources/images/ams_editable.svg index a75941f4ab..ef79670fd6 100644 --- a/resources/images/ams_editable.svg +++ b/resources/images/ams_editable.svg @@ -1,8 +1 @@ - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/ams_editable_light.svg b/resources/images/ams_editable_light.svg index ca0d37646e..ef79670fd6 100644 --- a/resources/images/ams_editable_light.svg +++ b/resources/images/ams_editable_light.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/ams_fila_sync.svg b/resources/images/ams_fila_sync.svg index 407aa53197..eb6452e894 100644 --- a/resources/images/ams_fila_sync.svg +++ b/resources/images/ams_fila_sync.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/ams_humidity_0.svg b/resources/images/ams_humidity_0.svg index d438d503a9..8e6ebdcb92 100644 --- a/resources/images/ams_humidity_0.svg +++ b/resources/images/ams_humidity_0.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_humidity_1.svg b/resources/images/ams_humidity_1.svg index caabcbdbe1..e94d718e52 100644 --- a/resources/images/ams_humidity_1.svg +++ b/resources/images/ams_humidity_1.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_humidity_2.svg b/resources/images/ams_humidity_2.svg index 817c9ba5a3..d3f6e01349 100644 --- a/resources/images/ams_humidity_2.svg +++ b/resources/images/ams_humidity_2.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_humidity_3.svg b/resources/images/ams_humidity_3.svg index 4b11064e0c..fa193ebd33 100644 --- a/resources/images/ams_humidity_3.svg +++ b/resources/images/ams_humidity_3.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_humidity_4.svg b/resources/images/ams_humidity_4.svg index c317b1658c..ae76dc32e8 100644 --- a/resources/images/ams_humidity_4.svg +++ b/resources/images/ams_humidity_4.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_humidity_tips.svg b/resources/images/ams_humidity_tips.svg index cbafcbab22..336c4475c6 100644 --- a/resources/images/ams_humidity_tips.svg +++ b/resources/images/ams_humidity_tips.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_setting_hover.svg b/resources/images/ams_setting_hover.svg index 36625b7e4d..956316a9de 100644 --- a/resources/images/ams_setting_hover.svg +++ b/resources/images/ams_setting_hover.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/ams_setting_normal.svg b/resources/images/ams_setting_normal.svg index 41836434ca..cc1b89e219 100644 --- a/resources/images/ams_setting_normal.svg +++ b/resources/images/ams_setting_normal.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/ams_setting_press.svg b/resources/images/ams_setting_press.svg index 123325ec39..b7ec40359e 100644 --- a/resources/images/ams_setting_press.svg +++ b/resources/images/ams_setting_press.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/assemble_return.svg b/resources/images/assemble_return.svg index ae6dda44df..314757070e 100644 --- a/resources/images/assemble_return.svg +++ b/resources/images/assemble_return.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/automatic_material_renewal.svg b/resources/images/automatic_material_renewal.svg index 7cc2ef0afc..eec2034555 100644 --- a/resources/images/automatic_material_renewal.svg +++ b/resources/images/automatic_material_renewal.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/auxiliary_cover.svg b/resources/images/auxiliary_cover.svg index 66522b2ffd..b37fff7842 100644 --- a/resources/images/auxiliary_cover.svg +++ b/resources/images/auxiliary_cover.svg @@ -1,7 +1 @@ - - - - Layer 1 - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/auxiliary_delete.svg b/resources/images/auxiliary_delete.svg index 73af09389a..3246500218 100644 --- a/resources/images/auxiliary_delete.svg +++ b/resources/images/auxiliary_delete.svg @@ -1,9 +1 @@ - - - - Layer 1 - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/bar_publish.svg b/resources/images/bar_publish.svg index 51e5cb2d24..91cb386dd2 100644 --- a/resources/images/bar_publish.svg +++ b/resources/images/bar_publish.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/bind_machine.svg b/resources/images/bind_machine.svg index 047741ea9a..a67e4fc0db 100644 --- a/resources/images/bind_machine.svg +++ b/resources/images/bind_machine.svg @@ -1,8 +1 @@ - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/block_notification_close.svg b/resources/images/block_notification_close.svg index a55fe49f7c..c3c11a829a 100644 --- a/resources/images/block_notification_close.svg +++ b/resources/images/block_notification_close.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/block_notification_close_hover.svg b/resources/images/block_notification_close_hover.svg index afb1dc2a7d..c3c11a829a 100644 --- a/resources/images/block_notification_close_hover.svg +++ b/resources/images/block_notification_close_hover.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/block_notification_error.svg b/resources/images/block_notification_error.svg index 902027fae7..172b9e4cee 100644 --- a/resources/images/block_notification_error.svg +++ b/resources/images/block_notification_error.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/browse.svg b/resources/images/browse.svg index c4297c41da..4d0d582572 100644 --- a/resources/images/browse.svg +++ b/resources/images/browse.svg @@ -1,11 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/burn.svg b/resources/images/burn.svg index 685999cd14..4d89b3657d 100644 --- a/resources/images/burn.svg +++ b/resources/images/burn.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/cali_page_caption_help.svg b/resources/images/cali_page_caption_help.svg index 70babeb017..d05b27b1c8 100644 --- a/resources/images/cali_page_caption_help.svg +++ b/resources/images/cali_page_caption_help.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/cali_page_caption_help_hover.svg b/resources/images/cali_page_caption_help_hover.svg index 70babeb017..d05b27b1c8 100644 --- a/resources/images/cali_page_caption_help_hover.svg +++ b/resources/images/cali_page_caption_help_hover.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/calib_sf.svg b/resources/images/calib_sf.svg index 54f08c2f2c..42efab7ce6 100644 --- a/resources/images/calib_sf.svg +++ b/resources/images/calib_sf.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/calib_sf_inactive.svg b/resources/images/calib_sf_inactive.svg index 31a8351a7c..7e5d9ac581 100644 --- a/resources/images/calib_sf_inactive.svg +++ b/resources/images/calib_sf_inactive.svg @@ -1,17 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/camera_setting.svg b/resources/images/camera_setting.svg index 3b276aa227..0549b1b47a 100644 --- a/resources/images/camera_setting.svg +++ b/resources/images/camera_setting.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/camera_setting_hover.svg b/resources/images/camera_setting_hover.svg index 9ab6dcfacc..e7c06f8d2d 100644 --- a/resources/images/camera_setting_hover.svg +++ b/resources/images/camera_setting_hover.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/camera_switch.svg b/resources/images/camera_switch.svg index be8cf27a09..271e38f8ed 100644 --- a/resources/images/camera_switch.svg +++ b/resources/images/camera_switch.svg @@ -1,76 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/camera_switch_dark.svg b/resources/images/camera_switch_dark.svg index 5c40b35d14..fbc1159ab5 100644 --- a/resources/images/camera_switch_dark.svg +++ b/resources/images/camera_switch_dark.svg @@ -1,76 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/check_half.svg b/resources/images/check_half.svg index bc99d2d0d1..78560b1072 100644 --- a/resources/images/check_half.svg +++ b/resources/images/check_half.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/check_half_disabled.svg b/resources/images/check_half_disabled.svg index 1e6fb24d7b..a0b23696bb 100644 --- a/resources/images/check_half_disabled.svg +++ b/resources/images/check_half_disabled.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/check_half_focused.svg b/resources/images/check_half_focused.svg index 517bb7acbc..1faea57461 100644 --- a/resources/images/check_half_focused.svg +++ b/resources/images/check_half_focused.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/check_off.svg b/resources/images/check_off.svg index cf58fbc94c..b56c4abc24 100644 --- a/resources/images/check_off.svg +++ b/resources/images/check_off.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/check_off_disabled.svg b/resources/images/check_off_disabled.svg index 8653c1f7bb..d4c14ca6d0 100644 --- a/resources/images/check_off_disabled.svg +++ b/resources/images/check_off_disabled.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/check_off_focused.svg b/resources/images/check_off_focused.svg index 474375d84e..39fdb07e63 100644 --- a/resources/images/check_off_focused.svg +++ b/resources/images/check_off_focused.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/check_on.svg b/resources/images/check_on.svg index 029abf8510..43ef314cd3 100644 --- a/resources/images/check_on.svg +++ b/resources/images/check_on.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/check_on_disabled.svg b/resources/images/check_on_disabled.svg index dfd917fb30..5ed3987438 100644 --- a/resources/images/check_on_disabled.svg +++ b/resources/images/check_on_disabled.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/check_on_focused.svg b/resources/images/check_on_focused.svg index 3c1c56c7c4..1b93469bf4 100644 --- a/resources/images/check_on_focused.svg +++ b/resources/images/check_on_focused.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/checked.svg b/resources/images/checked.svg index 88747cb95d..6fed74863a 100644 --- a/resources/images/checked.svg +++ b/resources/images/checked.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/circle_paint.svg b/resources/images/circle_paint.svg index 9472a10cb8..a5a49689fb 100644 --- a/resources/images/circle_paint.svg +++ b/resources/images/circle_paint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/circle_paint_dark.svg b/resources/images/circle_paint_dark.svg index d96f4ed4be..923ba593bd 100644 --- a/resources/images/circle_paint_dark.svg +++ b/resources/images/circle_paint_dark.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/cog.svg b/resources/images/cog.svg index e7866313b5..aa70d6c043 100644 --- a/resources/images/cog.svg +++ b/resources/images/cog.svg @@ -1,12 +1 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/collapse.svg b/resources/images/collapse.svg index eb4c8e47cf..d27721b74b 100644 --- a/resources/images/collapse.svg +++ b/resources/images/collapse.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/compare.svg b/resources/images/compare.svg index 6dbef6ecbf..17f1c9ff41 100644 --- a/resources/images/compare.svg +++ b/resources/images/compare.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/completed.svg b/resources/images/completed.svg index 902100da24..9b2a0f862c 100644 --- a/resources/images/completed.svg +++ b/resources/images/completed.svg @@ -1,8 +1 @@ - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/confirm.svg b/resources/images/confirm.svg index 1351d3b6f5..0f38b061bb 100644 --- a/resources/images/confirm.svg +++ b/resources/images/confirm.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/confirm_dark.svg b/resources/images/confirm_dark.svg index 1351d3b6f5..0f38b061bb 100644 --- a/resources/images/confirm_dark.svg +++ b/resources/images/confirm_dark.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/copy_menu.svg b/resources/images/copy_menu.svg index 23e0bfeb2a..231d471e9d 100644 --- a/resources/images/copy_menu.svg +++ b/resources/images/copy_menu.svg @@ -1,37 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/copy_menu_dark.svg b/resources/images/copy_menu_dark.svg index eaee113a1b..f2c3965b40 100644 --- a/resources/images/copy_menu_dark.svg +++ b/resources/images/copy_menu_dark.svg @@ -1,37 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/create_success.svg b/resources/images/create_success.svg index d49d396125..9b2a0f862c 100644 --- a/resources/images/create_success.svg +++ b/resources/images/create_success.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/cross.svg b/resources/images/cross.svg index 4d832a5887..2e36702da2 100644 --- a/resources/images/cross.svg +++ b/resources/images/cross.svg @@ -1,8 +1 @@ - - - - - Slice 41 - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/cross_focus.svg b/resources/images/cross_focus.svg index 2efebf2110..efd434b13f 100644 --- a/resources/images/cross_focus.svg +++ b/resources/images/cross_focus.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/cross_focus_large.svg b/resources/images/cross_focus_large.svg index 49316ef6ea..efd434b13f 100644 --- a/resources/images/cross_focus_large.svg +++ b/resources/images/cross_focus_large.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/custom-gcode_advanced.svg b/resources/images/custom-gcode_advanced.svg new file mode 100644 index 0000000000..561a15b303 --- /dev/null +++ b/resources/images/custom-gcode_advanced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_cooling_fan.svg b/resources/images/custom-gcode_cooling_fan.svg new file mode 100644 index 0000000000..98ef8fedb2 --- /dev/null +++ b/resources/images/custom-gcode_cooling_fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_extruder.svg b/resources/images/custom-gcode_extruder.svg new file mode 100644 index 0000000000..d55852897f --- /dev/null +++ b/resources/images/custom-gcode_extruder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_filament.svg b/resources/images/custom-gcode_filament.svg new file mode 100644 index 0000000000..9facb665a5 --- /dev/null +++ b/resources/images/custom-gcode_filament.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_gcode.svg b/resources/images/custom-gcode_gcode.svg index 38bcd21729..af90e3cd20 100644 --- a/resources/images/custom-gcode_gcode.svg +++ b/resources/images/custom-gcode_gcode.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_measure.svg b/resources/images/custom-gcode_measure.svg index 3c13dd7cc7..0436e83b3e 100644 --- a/resources/images/custom-gcode_measure.svg +++ b/resources/images/custom-gcode_measure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_motion.svg b/resources/images/custom-gcode_motion.svg new file mode 100644 index 0000000000..260f65ab26 --- /dev/null +++ b/resources/images/custom-gcode_motion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_multi_material.svg b/resources/images/custom-gcode_multi_material.svg new file mode 100644 index 0000000000..bc6cf03f0e --- /dev/null +++ b/resources/images/custom-gcode_multi_material.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_note.svg b/resources/images/custom-gcode_note.svg new file mode 100644 index 0000000000..fd8ef09117 --- /dev/null +++ b/resources/images/custom-gcode_note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_object-info.svg b/resources/images/custom-gcode_object-info.svg index 2c24bdc8a2..2605321f45 100644 --- a/resources/images/custom-gcode_object-info.svg +++ b/resources/images/custom-gcode_object-info.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_other.svg b/resources/images/custom-gcode_other.svg new file mode 100644 index 0000000000..f2510eacda --- /dev/null +++ b/resources/images/custom-gcode_other.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_quality.svg b/resources/images/custom-gcode_quality.svg new file mode 100644 index 0000000000..e4ff3f1da9 --- /dev/null +++ b/resources/images/custom-gcode_quality.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_setting_override.svg b/resources/images/custom-gcode_setting_override.svg new file mode 100644 index 0000000000..ce66aa93d3 --- /dev/null +++ b/resources/images/custom-gcode_setting_override.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_single.svg b/resources/images/custom-gcode_single.svg index d177860bc9..26a5123d82 100644 --- a/resources/images/custom-gcode_single.svg +++ b/resources/images/custom-gcode_single.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_slicing-state.svg b/resources/images/custom-gcode_slicing-state.svg index 4b4bef6ecf..8e0548235f 100644 --- a/resources/images/custom-gcode_slicing-state.svg +++ b/resources/images/custom-gcode_slicing-state.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_slicing-state_global.svg b/resources/images/custom-gcode_slicing-state_global.svg index 7f4e685a1b..d1189a99b2 100644 --- a/resources/images/custom-gcode_slicing-state_global.svg +++ b/resources/images/custom-gcode_slicing-state_global.svg @@ -1,3 +1 @@ - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_speed.svg b/resources/images/custom-gcode_speed.svg new file mode 100644 index 0000000000..8f2a00f896 --- /dev/null +++ b/resources/images/custom-gcode_speed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_stats.svg b/resources/images/custom-gcode_stats.svg index 96dfe8decf..538bdf19c9 100644 --- a/resources/images/custom-gcode_stats.svg +++ b/resources/images/custom-gcode_stats.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_strength.svg b/resources/images/custom-gcode_strength.svg new file mode 100644 index 0000000000..0f1e7996d1 --- /dev/null +++ b/resources/images/custom-gcode_strength.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_support.svg b/resources/images/custom-gcode_support.svg new file mode 100644 index 0000000000..f53dd207fb --- /dev/null +++ b/resources/images/custom-gcode_support.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_temperature.svg b/resources/images/custom-gcode_temperature.svg index d14cd1a31c..19fa2fa52b 100644 --- a/resources/images/custom-gcode_temperature.svg +++ b/resources/images/custom-gcode_temperature.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/custom-gcode_time.svg b/resources/images/custom-gcode_time.svg new file mode 100644 index 0000000000..be3d415343 --- /dev/null +++ b/resources/images/custom-gcode_time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/custom-gcode_vector-index.svg b/resources/images/custom-gcode_vector-index.svg index 68aef590bb..105ebfd2e3 100644 --- a/resources/images/custom-gcode_vector-index.svg +++ b/resources/images/custom-gcode_vector-index.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_vector.svg b/resources/images/custom-gcode_vector.svg index 396f0e7b82..e1a23694ca 100644 --- a/resources/images/custom-gcode_vector.svg +++ b/resources/images/custom-gcode_vector.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/cut_.svg b/resources/images/cut_.svg index 23de6f381b..7486f83d36 100644 --- a/resources/images/cut_.svg +++ b/resources/images/cut_.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/cut_circle.svg b/resources/images/cut_circle.svg new file mode 100644 index 0000000000..a222aaa834 --- /dev/null +++ b/resources/images/cut_circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/cut_circle_dark.svg b/resources/images/cut_circle_dark.svg new file mode 100644 index 0000000000..0acbcf4c3c --- /dev/null +++ b/resources/images/cut_circle_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/cut_connectors.svg b/resources/images/cut_connectors.svg index 053b163bf7..324aa987c5 100644 --- a/resources/images/cut_connectors.svg +++ b/resources/images/cut_connectors.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/cut_hexagon.svg b/resources/images/cut_hexagon.svg new file mode 100644 index 0000000000..282ce14ea3 --- /dev/null +++ b/resources/images/cut_hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/cut_hexagon_dark.svg b/resources/images/cut_hexagon_dark.svg new file mode 100644 index 0000000000..1ee6d0bc6e --- /dev/null +++ b/resources/images/cut_hexagon_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/cut_square.svg b/resources/images/cut_square.svg new file mode 100644 index 0000000000..7eb72c74ac --- /dev/null +++ b/resources/images/cut_square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/cut_square_dark.svg b/resources/images/cut_square_dark.svg new file mode 100644 index 0000000000..fbf7cc9aa4 --- /dev/null +++ b/resources/images/cut_square_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/cut_triangle.svg b/resources/images/cut_triangle.svg new file mode 100644 index 0000000000..ac03ed05ce --- /dev/null +++ b/resources/images/cut_triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/cut_triangle_dark.svg b/resources/images/cut_triangle_dark.svg new file mode 100644 index 0000000000..a29569c6a2 --- /dev/null +++ b/resources/images/cut_triangle_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/debugtool.svg b/resources/images/debugtool.svg index b234f59879..e9fd011d73 100644 --- a/resources/images/debugtool.svg +++ b/resources/images/debugtool.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/degree.svg b/resources/images/degree.svg index 188d57a53e..269d737c3f 100644 --- a/resources/images/degree.svg +++ b/resources/images/degree.svg @@ -1,7 +1 @@ - - - - Layer 1 - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/delete.svg b/resources/images/delete.svg index 91d56e91d1..2e36702da2 100644 --- a/resources/images/delete.svg +++ b/resources/images/delete.svg @@ -1,22 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/delete_filament.svg b/resources/images/delete_filament.svg index 07c60793d7..9cfbe4813e 100644 --- a/resources/images/delete_filament.svg +++ b/resources/images/delete_filament.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/drop_down.svg b/resources/images/drop_down.svg index 7b6cc0eb7e..bdb34d71d9 100644 --- a/resources/images/drop_down.svg +++ b/resources/images/drop_down.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/edit.svg b/resources/images/edit.svg index 9766302c70..6c2de1d980 100644 --- a/resources/images/edit.svg +++ b/resources/images/edit.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/edit_button.svg b/resources/images/edit_button.svg index 2d298f5661..6c2de1d980 100644 --- a/resources/images/edit_button.svg +++ b/resources/images/edit_button.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/enable_ams.svg b/resources/images/enable_ams.svg index d28b7004bd..6a238c6e31 100644 --- a/resources/images/enable_ams.svg +++ b/resources/images/enable_ams.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/equal.svg b/resources/images/equal.svg index bce4a24f7c..de2000d61b 100644 --- a/resources/images/equal.svg +++ b/resources/images/equal.svg @@ -1,15 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/exclamation.svg b/resources/images/exclamation.svg index 5a5b631a46..4721d1f39d 100644 --- a/resources/images/exclamation.svg +++ b/resources/images/exclamation.svg @@ -1,17 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/fan_control_add.svg b/resources/images/fan_control_add.svg index 19d9e41cce..5d33dd8e83 100644 --- a/resources/images/fan_control_add.svg +++ b/resources/images/fan_control_add.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/fan_control_decrease.svg b/resources/images/fan_control_decrease.svg index 7a68c36d11..d5935c53a3 100644 --- a/resources/images/fan_control_decrease.svg +++ b/resources/images/fan_control_decrease.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/fan_icon.svg b/resources/images/fan_icon.svg index 67a6071952..f149580bed 100644 --- a/resources/images/fan_icon.svg +++ b/resources/images/fan_icon.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/filament.svg b/resources/images/filament.svg index 8a2fb06bd2..a5fe1d0155 100644 --- a/resources/images/filament.svg +++ b/resources/images/filament.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/fill_paint.svg b/resources/images/fill_paint.svg index 584cdc4ec9..4c3c2cc874 100644 --- a/resources/images/fill_paint.svg +++ b/resources/images/fill_paint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/fill_paint_dark.svg b/resources/images/fill_paint_dark.svg index 6e8e76f6c4..df9333b62c 100644 --- a/resources/images/fill_paint_dark.svg +++ b/resources/images/fill_paint_dark.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/flush_volumes.svg b/resources/images/flush_volumes.svg index 4db16f937b..8b5ef4ba0b 100644 --- a/resources/images/flush_volumes.svg +++ b/resources/images/flush_volumes.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/gap_fill.svg b/resources/images/gap_fill.svg index ed78455cab..87436c9e2b 100644 --- a/resources/images/gap_fill.svg +++ b/resources/images/gap_fill.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/gap_fill_dark.svg b/resources/images/gap_fill_dark.svg index 09e898ce8b..d17c639d41 100644 --- a/resources/images/gap_fill_dark.svg +++ b/resources/images/gap_fill_dark.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/height_range.svg b/resources/images/height_range.svg index 0f5d5539d3..01e7659a89 100644 --- a/resources/images/height_range.svg +++ b/resources/images/height_range.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/height_range_dark.svg b/resources/images/height_range_dark.svg index 5b352af377..397def9eba 100644 --- a/resources/images/height_range_dark.svg +++ b/resources/images/height_range_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/height_range_layer.svg b/resources/images/height_range_layer.svg new file mode 100644 index 0000000000..ee44d86a23 --- /dev/null +++ b/resources/images/height_range_layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/height_range_modifier.svg b/resources/images/height_range_modifier.svg new file mode 100644 index 0000000000..698f6f2bd8 --- /dev/null +++ b/resources/images/height_range_modifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/hms_notify_lv1.svg b/resources/images/hms_notify_lv1.svg index 3c030c381f..f4e086b38b 100644 --- a/resources/images/hms_notify_lv1.svg +++ b/resources/images/hms_notify_lv1.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/hms_notify_lv2.svg b/resources/images/hms_notify_lv2.svg index bc02fb1a8a..fa356713bd 100644 --- a/resources/images/hms_notify_lv2.svg +++ b/resources/images/hms_notify_lv2.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/hms_notify_lv3.svg b/resources/images/hms_notify_lv3.svg index dced1688be..7001b8aef3 100644 --- a/resources/images/hms_notify_lv3.svg +++ b/resources/images/hms_notify_lv3.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/im_all_plates_stats.svg b/resources/images/im_all_plates_stats.svg index 26d7f97c21..711b59ee02 100644 --- a/resources/images/im_all_plates_stats.svg +++ b/resources/images/im_all_plates_stats.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/im_all_plates_stats_transparent.svg b/resources/images/im_all_plates_stats_transparent.svg index c52a4cb079..8254696754 100644 --- a/resources/images/im_all_plates_stats_transparent.svg +++ b/resources/images/im_all_plates_stats_transparent.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/im_fold.svg b/resources/images/im_fold.svg index 7eb9100a83..f4f3286dd4 100644 --- a/resources/images/im_fold.svg +++ b/resources/images/im_fold.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/im_gcode_custom.svg b/resources/images/im_gcode_custom.svg index a844eb2542..e5e975fa3e 100644 --- a/resources/images/im_gcode_custom.svg +++ b/resources/images/im_gcode_custom.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/im_gcode_pause.svg b/resources/images/im_gcode_pause.svg index dd87f0c11c..51d3c06135 100644 --- a/resources/images/im_gcode_pause.svg +++ b/resources/images/im_gcode_pause.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/im_slider_delete.svg b/resources/images/im_slider_delete.svg index 2b4e2430b7..ecc41f6b98 100644 --- a/resources/images/im_slider_delete.svg +++ b/resources/images/im_slider_delete.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/im_text_search.svg b/resources/images/im_text_search.svg index 64abb3d222..4d0d582572 100644 --- a/resources/images/im_text_search.svg +++ b/resources/images/im_text_search.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/im_text_search_close.svg b/resources/images/im_text_search_close.svg index 86133d1566..e0936e64ee 100644 --- a/resources/images/im_text_search_close.svg +++ b/resources/images/im_text_search_close.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/im_unfold.svg b/resources/images/im_unfold.svg index fd45960665..45bcec6fbb 100644 --- a/resources/images/im_unfold.svg +++ b/resources/images/im_unfold.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/info.svg b/resources/images/info.svg index 276b260610..cc052410d2 100644 --- a/resources/images/info.svg +++ b/resources/images/info.svg @@ -1,71 +1 @@ - -image/svg+xml - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/link_wiki_img.svg b/resources/images/link_wiki_img.svg index ef913c5db9..a8f049f67e 100644 --- a/resources/images/link_wiki_img.svg +++ b/resources/images/link_wiki_img.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/lock_closed.svg b/resources/images/lock_closed.svg index 549cdba239..ba2bf7b4a2 100644 --- a/resources/images/lock_closed.svg +++ b/resources/images/lock_closed.svg @@ -1,10 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/lock_closed_f.svg b/resources/images/lock_closed_f.svg index 2920ea0aae..ba2bf7b4a2 100644 --- a/resources/images/lock_closed_f.svg +++ b/resources/images/lock_closed_f.svg @@ -1,10 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/lock_hover.svg b/resources/images/lock_hover.svg index 4b3cb164a0..b25ba1cfdc 100644 --- a/resources/images/lock_hover.svg +++ b/resources/images/lock_hover.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/lock_normal.svg b/resources/images/lock_normal.svg index 6fc1038221..e585aba3f6 100644 --- a/resources/images/lock_normal.svg +++ b/resources/images/lock_normal.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/lock_open.svg b/resources/images/lock_open.svg index 3f0da9ae09..12f4202746 100644 --- a/resources/images/lock_open.svg +++ b/resources/images/lock_open.svg @@ -1,11 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/lock_open_f.svg b/resources/images/lock_open_f.svg index 3d12d78746..12f4202746 100644 --- a/resources/images/lock_open_f.svg +++ b/resources/images/lock_open_f.svg @@ -1,11 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/machine_obejct_type.svg b/resources/images/machine_obejct_type.svg index 4cb57152e1..6eb6cd8186 100644 --- a/resources/images/machine_obejct_type.svg +++ b/resources/images/machine_obejct_type.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/machine_object_owner.svg b/resources/images/machine_object_owner.svg index e803f131a1..976ca31874 100644 --- a/resources/images/machine_object_owner.svg +++ b/resources/images/machine_object_owner.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/machine_object_printing.svg b/resources/images/machine_object_printing.svg index 32aa1d569c..3ba1ff2dde 100644 --- a/resources/images/machine_object_printing.svg +++ b/resources/images/machine_object_printing.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/make_bold.svg b/resources/images/make_bold.svg index 1c39a3d23f..a0d961cdca 100644 --- a/resources/images/make_bold.svg +++ b/resources/images/make_bold.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/make_italic.svg b/resources/images/make_italic.svg index 5c128e6302..61b1a0881f 100644 --- a/resources/images/make_italic.svg +++ b/resources/images/make_italic.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/make_unbold.svg b/resources/images/make_unbold.svg index 7a99cc227f..57b60f20fa 100644 --- a/resources/images/make_unbold.svg +++ b/resources/images/make_unbold.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/make_unitalic.svg b/resources/images/make_unitalic.svg index f3c4d90685..ba77e68172 100644 --- a/resources/images/make_unitalic.svg +++ b/resources/images/make_unitalic.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/measure_edit.svg b/resources/images/measure_edit.svg new file mode 100644 index 0000000000..7f622b2cc4 --- /dev/null +++ b/resources/images/measure_edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/media_empty.svg b/resources/images/media_empty.svg index aa040502a3..be2e2ab5a4 100644 --- a/resources/images/media_empty.svg +++ b/resources/images/media_empty.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/media_failed.svg b/resources/images/media_failed.svg index 83dd7a7923..f9dc13a7df 100644 --- a/resources/images/media_failed.svg +++ b/resources/images/media_failed.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/media_play.svg b/resources/images/media_play.svg index 20c2ae551e..17bc0ae699 100644 --- a/resources/images/media_play.svg +++ b/resources/images/media_play.svg @@ -1,5 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/media_stop.svg b/resources/images/media_stop.svg index eef22c1d4a..0f130d0918 100644 --- a/resources/images/media_stop.svg +++ b/resources/images/media_stop.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_add_modifier.svg b/resources/images/menu_add_modifier.svg index f95bbb3ee7..7b7aa198a3 100644 --- a/resources/images/menu_add_modifier.svg +++ b/resources/images/menu_add_modifier.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/menu_add_negative.svg b/resources/images/menu_add_negative.svg index 8e2ef36eec..c12e0b3650 100644 --- a/resources/images/menu_add_negative.svg +++ b/resources/images/menu_add_negative.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/menu_add_part.svg b/resources/images/menu_add_part.svg index edff8942f3..37726f79fa 100644 --- a/resources/images/menu_add_part.svg +++ b/resources/images/menu_add_part.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/menu_copy.svg b/resources/images/menu_copy.svg index 1f09490f1a..39c95f933a 100644 --- a/resources/images/menu_copy.svg +++ b/resources/images/menu_copy.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_cut.svg b/resources/images/menu_cut.svg index 1f09490f1a..31e96ba9db 100644 --- a/resources/images/menu_cut.svg +++ b/resources/images/menu_cut.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_delete.svg b/resources/images/menu_delete.svg index 1f09490f1a..f4d2651a11 100644 --- a/resources/images/menu_delete.svg +++ b/resources/images/menu_delete.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_edit_preset.svg b/resources/images/menu_edit_preset.svg index 1f09490f1a..1f6f7d95d9 100644 --- a/resources/images/menu_edit_preset.svg +++ b/resources/images/menu_edit_preset.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_exit.svg b/resources/images/menu_exit.svg index 1f09490f1a..eba35dc391 100644 --- a/resources/images/menu_exit.svg +++ b/resources/images/menu_exit.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_export_config.svg b/resources/images/menu_export_config.svg index 1f09490f1a..f4d2651a11 100644 --- a/resources/images/menu_export_config.svg +++ b/resources/images/menu_export_config.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_export_gcode.svg b/resources/images/menu_export_gcode.svg index 1f09490f1a..f4d2651a11 100644 --- a/resources/images/menu_export_gcode.svg +++ b/resources/images/menu_export_gcode.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_export_sliced_file.svg b/resources/images/menu_export_sliced_file.svg index 1f09490f1a..f4d2651a11 100644 --- a/resources/images/menu_export_sliced_file.svg +++ b/resources/images/menu_export_sliced_file.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_export_stl.svg b/resources/images/menu_export_stl.svg index 1f09490f1a..f4d2651a11 100644 --- a/resources/images/menu_export_stl.svg +++ b/resources/images/menu_export_stl.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_fuzzy_skin.svg b/resources/images/menu_fuzzy_skin.svg index 1f09490f1a..f4d2651a11 100644 --- a/resources/images/menu_fuzzy_skin.svg +++ b/resources/images/menu_fuzzy_skin.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_import.svg b/resources/images/menu_import.svg index 1f09490f1a..41eb1cfafc 100644 --- a/resources/images/menu_import.svg +++ b/resources/images/menu_import.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_load.svg b/resources/images/menu_load.svg new file mode 100644 index 0000000000..219caf1f89 --- /dev/null +++ b/resources/images/menu_load.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_mirror_x.svg b/resources/images/menu_mirror_x.svg new file mode 100644 index 0000000000..4a94013895 --- /dev/null +++ b/resources/images/menu_mirror_x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_mirror_y.svg b/resources/images/menu_mirror_y.svg new file mode 100644 index 0000000000..55d357df6f --- /dev/null +++ b/resources/images/menu_mirror_y.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_mirror_z.svg b/resources/images/menu_mirror_z.svg new file mode 100644 index 0000000000..f4ff82ae28 --- /dev/null +++ b/resources/images/menu_mirror_z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_cone.svg b/resources/images/menu_obj_cone.svg new file mode 100644 index 0000000000..c7cb1d40f5 --- /dev/null +++ b/resources/images/menu_obj_cone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_cube.svg b/resources/images/menu_obj_cube.svg new file mode 100644 index 0000000000..f5ca71f76c --- /dev/null +++ b/resources/images/menu_obj_cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_cylinder.svg b/resources/images/menu_obj_cylinder.svg new file mode 100644 index 0000000000..3f6e90713f --- /dev/null +++ b/resources/images/menu_obj_cylinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_disc.svg b/resources/images/menu_obj_disc.svg new file mode 100644 index 0000000000..57ecc7faca --- /dev/null +++ b/resources/images/menu_obj_disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_sphere.svg b/resources/images/menu_obj_sphere.svg new file mode 100644 index 0000000000..6c517af9ad --- /dev/null +++ b/resources/images/menu_obj_sphere.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_svg.svg b/resources/images/menu_obj_svg.svg new file mode 100644 index 0000000000..039ac65d94 --- /dev/null +++ b/resources/images/menu_obj_svg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_text.svg b/resources/images/menu_obj_text.svg new file mode 100644 index 0000000000..48661b30ff --- /dev/null +++ b/resources/images/menu_obj_text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_obj_torus.svg b/resources/images/menu_obj_torus.svg new file mode 100644 index 0000000000..ddf636711a --- /dev/null +++ b/resources/images/menu_obj_torus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_open.svg b/resources/images/menu_open.svg index 1f09490f1a..7168576ca8 100644 --- a/resources/images/menu_open.svg +++ b/resources/images/menu_open.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_paste.svg b/resources/images/menu_paste.svg index 1f09490f1a..8546fb08a6 100644 --- a/resources/images/menu_paste.svg +++ b/resources/images/menu_paste.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_redo.svg b/resources/images/menu_redo.svg index 1f09490f1a..eaa46dc7b7 100644 --- a/resources/images/menu_redo.svg +++ b/resources/images/menu_redo.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_remove.svg b/resources/images/menu_remove.svg index 1f09490f1a..f4d2651a11 100644 --- a/resources/images/menu_remove.svg +++ b/resources/images/menu_remove.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_save.svg b/resources/images/menu_save.svg index 1f09490f1a..3aea4e1e9d 100644 --- a/resources/images/menu_save.svg +++ b/resources/images/menu_save.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/menu_split_objects.svg b/resources/images/menu_split_objects.svg new file mode 100644 index 0000000000..8c5cdbc207 --- /dev/null +++ b/resources/images/menu_split_objects.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_split_parts.svg b/resources/images/menu_split_parts.svg new file mode 100644 index 0000000000..cdc11e865a --- /dev/null +++ b/resources/images/menu_split_parts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/menu_support_blocker.svg b/resources/images/menu_support_blocker.svg index fd7c16ea27..1f20929a57 100644 --- a/resources/images/menu_support_blocker.svg +++ b/resources/images/menu_support_blocker.svg @@ -1,22 +1 @@ - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/menu_support_enforcer.svg b/resources/images/menu_support_enforcer.svg index 4ef28d62a3..df0baee799 100644 --- a/resources/images/menu_support_enforcer.svg +++ b/resources/images/menu_support_enforcer.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/menu_undo.svg b/resources/images/menu_undo.svg index 1f09490f1a..27226a299e 100644 --- a/resources/images/menu_undo.svg +++ b/resources/images/menu_undo.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/mesh_boolean_a.svg b/resources/images/mesh_boolean_a.svg new file mode 100644 index 0000000000..d4f1977d27 --- /dev/null +++ b/resources/images/mesh_boolean_a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_b.svg b/resources/images/mesh_boolean_b.svg new file mode 100644 index 0000000000..d59ea608f6 --- /dev/null +++ b/resources/images/mesh_boolean_b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_difference.svg b/resources/images/mesh_boolean_difference.svg new file mode 100644 index 0000000000..986af31cef --- /dev/null +++ b/resources/images/mesh_boolean_difference.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_difference_dark.svg b/resources/images/mesh_boolean_difference_dark.svg new file mode 100644 index 0000000000..cee940c3b5 --- /dev/null +++ b/resources/images/mesh_boolean_difference_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_intersection.svg b/resources/images/mesh_boolean_intersection.svg new file mode 100644 index 0000000000..52ac3014ef --- /dev/null +++ b/resources/images/mesh_boolean_intersection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_intersection_dark.svg b/resources/images/mesh_boolean_intersection_dark.svg new file mode 100644 index 0000000000..9d232122fa --- /dev/null +++ b/resources/images/mesh_boolean_intersection_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_keep.svg b/resources/images/mesh_boolean_keep.svg new file mode 100644 index 0000000000..1315f87895 --- /dev/null +++ b/resources/images/mesh_boolean_keep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_subtract.svg b/resources/images/mesh_boolean_subtract.svg new file mode 100644 index 0000000000..6d068c807b --- /dev/null +++ b/resources/images/mesh_boolean_subtract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_union.svg b/resources/images/mesh_boolean_union.svg new file mode 100644 index 0000000000..c300d0cf92 --- /dev/null +++ b/resources/images/mesh_boolean_union.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mesh_boolean_union_dark.svg b/resources/images/mesh_boolean_union_dark.svg new file mode 100644 index 0000000000..b05e71adb4 --- /dev/null +++ b/resources/images/mesh_boolean_union_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/mmu_segmentation.svg b/resources/images/mmu_segmentation.svg index 68796acd21..f9aed32360 100644 --- a/resources/images/mmu_segmentation.svg +++ b/resources/images/mmu_segmentation.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/mmu_segmentation_dark.svg b/resources/images/mmu_segmentation_dark.svg index 58798d62ec..9d36df8e68 100644 --- a/resources/images/mmu_segmentation_dark.svg +++ b/resources/images/mmu_segmentation_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/model_time.svg b/resources/images/model_time.svg index 0808f4545d..18b52e8532 100644 --- a/resources/images/model_time.svg +++ b/resources/images/model_time.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/model_weight.svg b/resources/images/model_weight.svg index 31417e6569..54f93efbd7 100644 --- a/resources/images/model_weight.svg +++ b/resources/images/model_weight.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_axis_home.svg b/resources/images/monitor_axis_home.svg index fcc1854fdc..bcfb80d812 100644 --- a/resources/images/monitor_axis_home.svg +++ b/resources/images/monitor_axis_home.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_axis_home_icon.svg b/resources/images/monitor_axis_home_icon.svg index a8baa9f09e..bcfb80d812 100644 --- a/resources/images/monitor_axis_home_icon.svg +++ b/resources/images/monitor_axis_home_icon.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_bed_down.svg b/resources/images/monitor_bed_down.svg index 25869ee644..73a04a74a5 100644 --- a/resources/images/monitor_bed_down.svg +++ b/resources/images/monitor_bed_down.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_bed_down_disable.svg b/resources/images/monitor_bed_down_disable.svg index 2551512d0a..01d1d1345f 100644 --- a/resources/images/monitor_bed_down_disable.svg +++ b/resources/images/monitor_bed_down_disable.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_bed_temp.svg b/resources/images/monitor_bed_temp.svg index 919b543d23..67017deedc 100644 --- a/resources/images/monitor_bed_temp.svg +++ b/resources/images/monitor_bed_temp.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_bed_temp_active.svg b/resources/images/monitor_bed_temp_active.svg index caee244e9e..6970ad84c3 100644 --- a/resources/images/monitor_bed_temp_active.svg +++ b/resources/images/monitor_bed_temp_active.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_bed_up.svg b/resources/images/monitor_bed_up.svg index 2ef6e06bf0..dec6384a60 100644 --- a/resources/images/monitor_bed_up.svg +++ b/resources/images/monitor_bed_up.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_bed_up_disable.svg b/resources/images/monitor_bed_up_disable.svg index 4e69a78c3c..b20668b4c2 100644 --- a/resources/images/monitor_bed_up_disable.svg +++ b/resources/images/monitor_bed_up_disable.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_camera.svg b/resources/images/monitor_camera.svg index 97136e8f37..158565e32e 100644 --- a/resources/images/monitor_camera.svg +++ b/resources/images/monitor_camera.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_extrduer_down.svg b/resources/images/monitor_extrduer_down.svg index e7bf0df7a6..a43c65a3ae 100644 --- a/resources/images/monitor_extrduer_down.svg +++ b/resources/images/monitor_extrduer_down.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_extrduer_down_disable.svg b/resources/images/monitor_extrduer_down_disable.svg index 80beaf8126..e1f38bf2bf 100644 --- a/resources/images/monitor_extrduer_down_disable.svg +++ b/resources/images/monitor_extrduer_down_disable.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_extruder_up.svg b/resources/images/monitor_extruder_up.svg index a36d1db160..79b45d4ed6 100644 --- a/resources/images/monitor_extruder_up.svg +++ b/resources/images/monitor_extruder_up.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_extruder_up_disable.svg b/resources/images/monitor_extruder_up_disable.svg index ba1be74c07..dd898555dc 100644 --- a/resources/images/monitor_extruder_up_disable.svg +++ b/resources/images/monitor_extruder_up_disable.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_fan.svg b/resources/images/monitor_fan.svg index 0fc12daf18..f149580bed 100644 --- a/resources/images/monitor_fan.svg +++ b/resources/images/monitor_fan.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_fan_off.svg b/resources/images/monitor_fan_off.svg index 4c492f0abe..56da537f6e 100644 --- a/resources/images/monitor_fan_off.svg +++ b/resources/images/monitor_fan_off.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_fan_on.svg b/resources/images/monitor_fan_on.svg index a44f5ff420..dfc955f5d7 100644 --- a/resources/images/monitor_fan_on.svg +++ b/resources/images/monitor_fan_on.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_frame_temp.svg b/resources/images/monitor_frame_temp.svg index 87740af172..dd9ece5406 100644 --- a/resources/images/monitor_frame_temp.svg +++ b/resources/images/monitor_frame_temp.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_frame_temp_active.svg b/resources/images/monitor_frame_temp_active.svg index 920345fc83..5c3031b6ce 100644 --- a/resources/images/monitor_frame_temp_active.svg +++ b/resources/images/monitor_frame_temp_active.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_item_cost.svg b/resources/images/monitor_item_cost.svg index ed69e068a7..0d5ba62d98 100644 --- a/resources/images/monitor_item_cost.svg +++ b/resources/images/monitor_item_cost.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_item_prediction.svg b/resources/images/monitor_item_prediction.svg index 34056c482a..2d3693b314 100644 --- a/resources/images/monitor_item_prediction.svg +++ b/resources/images/monitor_item_prediction.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_item_print.svg b/resources/images/monitor_item_print.svg index efad4aaf6d..11ef669010 100644 --- a/resources/images/monitor_item_print.svg +++ b/resources/images/monitor_item_print.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_lamp_off.svg b/resources/images/monitor_lamp_off.svg index 2a8e4af627..9611b8d078 100644 --- a/resources/images/monitor_lamp_off.svg +++ b/resources/images/monitor_lamp_off.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_lamp_on.svg b/resources/images/monitor_lamp_on.svg index cc6f32dcf5..99c3964d67 100644 --- a/resources/images/monitor_lamp_on.svg +++ b/resources/images/monitor_lamp_on.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_none_add.svg b/resources/images/monitor_none_add.svg index bd3e1ebec1..c2aa3f14e2 100644 --- a/resources/images/monitor_none_add.svg +++ b/resources/images/monitor_none_add.svg @@ -1,8 +1 @@ - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/monitor_none_arrow.svg b/resources/images/monitor_none_arrow.svg index 370d007364..8f3bade771 100644 --- a/resources/images/monitor_none_arrow.svg +++ b/resources/images/monitor_none_arrow.svg @@ -1,7 +1 @@ - - - - Layer 1 - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/monitor_none_printer.svg b/resources/images/monitor_none_printer.svg index 3cae57af74..7acdd954db 100644 --- a/resources/images/monitor_none_printer.svg +++ b/resources/images/monitor_none_printer.svg @@ -1,7 +1 @@ - - - - Layer 1 - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/monitor_nozzle_temp.svg b/resources/images/monitor_nozzle_temp.svg index 4fee482f97..47bcb6541a 100644 --- a/resources/images/monitor_nozzle_temp.svg +++ b/resources/images/monitor_nozzle_temp.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_nozzle_temp_active.svg b/resources/images/monitor_nozzle_temp_active.svg index 78679c2a84..99acbc231e 100644 --- a/resources/images/monitor_nozzle_temp_active.svg +++ b/resources/images/monitor_nozzle_temp_active.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_play.svg b/resources/images/monitor_play.svg index c94e39d67e..144efc21b3 100644 --- a/resources/images/monitor_play.svg +++ b/resources/images/monitor_play.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_printer.svg b/resources/images/monitor_printer.svg index d896d09d24..750693bd7a 100644 --- a/resources/images/monitor_printer.svg +++ b/resources/images/monitor_printer.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_recording_off.svg b/resources/images/monitor_recording_off.svg index c45f93e9a6..ee2ccdccce 100644 --- a/resources/images/monitor_recording_off.svg +++ b/resources/images/monitor_recording_off.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_recording_off_dark.svg b/resources/images/monitor_recording_off_dark.svg index 520dd1bdb1..ee2ccdccce 100644 --- a/resources/images/monitor_recording_off_dark.svg +++ b/resources/images/monitor_recording_off_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_recording_on.svg b/resources/images/monitor_recording_on.svg index 4bccded8bd..e07c4f31a4 100644 --- a/resources/images/monitor_recording_on.svg +++ b/resources/images/monitor_recording_on.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_recording_on_dark.svg b/resources/images/monitor_recording_on_dark.svg index cc0b3ec16f..e07c4f31a4 100644 --- a/resources/images/monitor_recording_on_dark.svg +++ b/resources/images/monitor_recording_on_dark.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_signal_middle.svg b/resources/images/monitor_signal_middle.svg index 31ee0a15a2..8b864c53e0 100644 --- a/resources/images/monitor_signal_middle.svg +++ b/resources/images/monitor_signal_middle.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_signal_no.svg b/resources/images/monitor_signal_no.svg index f4ed816748..9daf9350b5 100644 --- a/resources/images/monitor_signal_no.svg +++ b/resources/images/monitor_signal_no.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_signal_strong.svg b/resources/images/monitor_signal_strong.svg index 52f5532b2f..74214e6c0e 100644 --- a/resources/images/monitor_signal_strong.svg +++ b/resources/images/monitor_signal_strong.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_signal_weak.svg b/resources/images/monitor_signal_weak.svg index a41171b01d..1923f2381b 100644 --- a/resources/images/monitor_signal_weak.svg +++ b/resources/images/monitor_signal_weak.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_speed.svg b/resources/images/monitor_speed.svg index 48164768ee..95ec1195d1 100644 --- a/resources/images/monitor_speed.svg +++ b/resources/images/monitor_speed.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_speed_active.svg b/resources/images/monitor_speed_active.svg index f8e7e68639..bb332f16b6 100644 --- a/resources/images/monitor_speed_active.svg +++ b/resources/images/monitor_speed_active.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_state_on.svg b/resources/images/monitor_state_on.svg index 04ff497ba4..7d3e222c81 100644 --- a/resources/images/monitor_state_on.svg +++ b/resources/images/monitor_state_on.svg @@ -1,10 +1 @@ - - - - Layer 1 - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/monitor_tasklist_print.svg b/resources/images/monitor_tasklist_print.svg index f2b6b4cd3e..235fccf830 100644 --- a/resources/images/monitor_tasklist_print.svg +++ b/resources/images/monitor_tasklist_print.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_tasklist_time.svg b/resources/images/monitor_tasklist_time.svg index 437532d18f..be3d415343 100644 --- a/resources/images/monitor_tasklist_time.svg +++ b/resources/images/monitor_tasklist_time.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/monitor_tasklist_weight.svg b/resources/images/monitor_tasklist_weight.svg index 7ffd2a051b..1eb07b7f5f 100644 --- a/resources/images/monitor_tasklist_weight.svg +++ b/resources/images/monitor_tasklist_weight.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_timelapse_off.svg b/resources/images/monitor_timelapse_off.svg index 103a97f3fc..88cde143fc 100644 --- a/resources/images/monitor_timelapse_off.svg +++ b/resources/images/monitor_timelapse_off.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_timelapse_off_dark.svg b/resources/images/monitor_timelapse_off_dark.svg index 19785321b1..9a971114bd 100644 --- a/resources/images/monitor_timelapse_off_dark.svg +++ b/resources/images/monitor_timelapse_off_dark.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_timelapse_on.svg b/resources/images/monitor_timelapse_on.svg index ca46179f76..2f67ca720c 100644 --- a/resources/images/monitor_timelapse_on.svg +++ b/resources/images/monitor_timelapse_on.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_timelapse_on_dark.svg b/resources/images/monitor_timelapse_on_dark.svg index 63ab2297c2..2f67ca720c 100644 --- a/resources/images/monitor_timelapse_on_dark.svg +++ b/resources/images/monitor_timelapse_on_dark.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_upgrade_busy.svg b/resources/images/monitor_upgrade_busy.svg index 70c185dcf1..b3395c2280 100644 --- a/resources/images/monitor_upgrade_busy.svg +++ b/resources/images/monitor_upgrade_busy.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_upgrade_offline.svg b/resources/images/monitor_upgrade_offline.svg index d40878488f..c1dd2a9f8e 100644 --- a/resources/images/monitor_upgrade_offline.svg +++ b/resources/images/monitor_upgrade_offline.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_upgrade_online.svg b/resources/images/monitor_upgrade_online.svg index a37e784ee3..3a903a5ebb 100644 --- a/resources/images/monitor_upgrade_online.svg +++ b/resources/images/monitor_upgrade_online.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/monitor_vcamera_off.svg b/resources/images/monitor_vcamera_off.svg index edbcc92370..17227bf7b3 100644 --- a/resources/images/monitor_vcamera_off.svg +++ b/resources/images/monitor_vcamera_off.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_vcamera_off_dark.svg b/resources/images/monitor_vcamera_off_dark.svg index 8ed58c9da9..c8f073676a 100644 --- a/resources/images/monitor_vcamera_off_dark.svg +++ b/resources/images/monitor_vcamera_off_dark.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_vcamera_on.svg b/resources/images/monitor_vcamera_on.svg index b26c3f10cf..0c4b97c109 100644 --- a/resources/images/monitor_vcamera_on.svg +++ b/resources/images/monitor_vcamera_on.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/monitor_vcamera_on_dark.svg b/resources/images/monitor_vcamera_on_dark.svg index 1c829d6554..0c4b97c109 100644 --- a/resources/images/monitor_vcamera_on_dark.svg +++ b/resources/images/monitor_vcamera_on_dark.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/node_dot.svg b/resources/images/node_dot.svg index 474142a57f..3443df3d36 100644 --- a/resources/images/node_dot.svg +++ b/resources/images/node_dot.svg @@ -1,8 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/not_equal.svg b/resources/images/not_equal.svg index bc88144353..4cc2cfd099 100644 --- a/resources/images/not_equal.svg +++ b/resources/images/not_equal.svg @@ -1,16 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/note.svg b/resources/images/note.svg index b02fc4b9bf..0ee879f842 100644 --- a/resources/images/note.svg +++ b/resources/images/note.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_arrow_left.svg b/resources/images/notification_arrow_left.svg index f4b4616c18..e1291d1249 100644 --- a/resources/images/notification_arrow_left.svg +++ b/resources/images/notification_arrow_left.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/notification_arrow_open.svg b/resources/images/notification_arrow_open.svg index 7ae92e27ba..4f8798980e 100644 --- a/resources/images/notification_arrow_open.svg +++ b/resources/images/notification_arrow_open.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_arrow_right.svg b/resources/images/notification_arrow_right.svg index c6784277e3..332a16a93b 100644 --- a/resources/images/notification_arrow_right.svg +++ b/resources/images/notification_arrow_right.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/notification_cancel.svg b/resources/images/notification_cancel.svg index 1430bc492e..2156625def 100644 --- a/resources/images/notification_cancel.svg +++ b/resources/images/notification_cancel.svg @@ -1,19 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_cancel_hover.svg b/resources/images/notification_cancel_hover.svg index a7ac9d15f5..2a19e06f7a 100644 --- a/resources/images/notification_cancel_hover.svg +++ b/resources/images/notification_cancel_hover.svg @@ -1,16 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_close.svg b/resources/images/notification_close.svg index ef94f19b96..12142fa9f9 100644 --- a/resources/images/notification_close.svg +++ b/resources/images/notification_close.svg @@ -1,14 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_close_dark.svg b/resources/images/notification_close_dark.svg index ab0dd789e5..81926cb405 100644 --- a/resources/images/notification_close_dark.svg +++ b/resources/images/notification_close_dark.svg @@ -1,14 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_close_hover.svg b/resources/images/notification_close_hover.svg index ea5b7d8b58..7717605678 100644 --- a/resources/images/notification_close_hover.svg +++ b/resources/images/notification_close_hover.svg @@ -1,13 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_close_hover_dark.svg b/resources/images/notification_close_hover_dark.svg index 68c49e8a3a..b4fa2f66bc 100644 --- a/resources/images/notification_close_hover_dark.svg +++ b/resources/images/notification_close_hover_dark.svg @@ -1,13 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_collapse.svg b/resources/images/notification_collapse.svg index 9f569d093f..02b182476d 100644 --- a/resources/images/notification_collapse.svg +++ b/resources/images/notification_collapse.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/notification_documentation.svg b/resources/images/notification_documentation.svg index abfcf0c838..b0c5658124 100644 --- a/resources/images/notification_documentation.svg +++ b/resources/images/notification_documentation.svg @@ -1,42 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_documentation_dark.svg b/resources/images/notification_documentation_dark.svg index 7528a061f2..691f09f326 100644 --- a/resources/images/notification_documentation_dark.svg +++ b/resources/images/notification_documentation_dark.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_documentation_hover.svg b/resources/images/notification_documentation_hover.svg index 146747db0a..7a2c3447eb 100644 --- a/resources/images/notification_documentation_hover.svg +++ b/resources/images/notification_documentation_hover.svg @@ -1,40 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_documentation_hover_dark.svg b/resources/images/notification_documentation_hover_dark.svg index 6913787cb7..03fb6d745d 100644 --- a/resources/images/notification_documentation_hover_dark.svg +++ b/resources/images/notification_documentation_hover_dark.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_eject_sd.svg b/resources/images/notification_eject_sd.svg index 692c50d03b..a7635e63c2 100644 --- a/resources/images/notification_eject_sd.svg +++ b/resources/images/notification_eject_sd.svg @@ -1 +1 @@ -notification_eject_sd \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/notification_eject_sd_hover.svg b/resources/images/notification_eject_sd_hover.svg index d41e03f097..07d60f7dd3 100644 --- a/resources/images/notification_eject_sd_hover.svg +++ b/resources/images/notification_eject_sd_hover.svg @@ -1 +1 @@ -notification_eject_sd_hover \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/notification_expand.svg b/resources/images/notification_expand.svg index 91ac2a55bd..303cecab38 100644 --- a/resources/images/notification_expand.svg +++ b/resources/images/notification_expand.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/notification_minimalize.svg b/resources/images/notification_minimalize.svg index 955006e497..0b1d7dd284 100644 --- a/resources/images/notification_minimalize.svg +++ b/resources/images/notification_minimalize.svg @@ -1,9 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_minimalize_dark.svg b/resources/images/notification_minimalize_dark.svg index 1eb4bc2ea3..3345ac845f 100644 --- a/resources/images/notification_minimalize_dark.svg +++ b/resources/images/notification_minimalize_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/notification_minimalize_hover.svg b/resources/images/notification_minimalize_hover.svg index 2f11e46f86..4eefb7f721 100644 --- a/resources/images/notification_minimalize_hover.svg +++ b/resources/images/notification_minimalize_hover.svg @@ -1,10 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_minimalize_hover_dark.svg b/resources/images/notification_minimalize_hover_dark.svg index 85899b8ffc..c81e9674a4 100644 --- a/resources/images/notification_minimalize_hover_dark.svg +++ b/resources/images/notification_minimalize_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/notification_preferences.svg b/resources/images/notification_preferences.svg index 454150dd29..fdc9e4a026 100644 --- a/resources/images/notification_preferences.svg +++ b/resources/images/notification_preferences.svg @@ -1,15 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_preferences_dark.svg b/resources/images/notification_preferences_dark.svg index fcc65bad35..946f564f84 100644 --- a/resources/images/notification_preferences_dark.svg +++ b/resources/images/notification_preferences_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/notification_preferences_hover.svg b/resources/images/notification_preferences_hover.svg index fbfa5299f1..38aadaa1b4 100644 --- a/resources/images/notification_preferences_hover.svg +++ b/resources/images/notification_preferences_hover.svg @@ -1,15 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/notification_preferences_hover_dark.svg b/resources/images/notification_preferences_hover_dark.svg index 4a98b5bc07..a080eec4d4 100644 --- a/resources/images/notification_preferences_hover_dark.svg +++ b/resources/images/notification_preferences_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/notification_right.svg b/resources/images/notification_right.svg index bc8ae57529..c18967b013 100644 --- a/resources/images/notification_right.svg +++ b/resources/images/notification_right.svg @@ -1 +1 @@ -1234214 \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/notification_right_dark.svg b/resources/images/notification_right_dark.svg index eedaf36a64..2f62855ed9 100644 --- a/resources/images/notification_right_dark.svg +++ b/resources/images/notification_right_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/notification_right_hover.svg b/resources/images/notification_right_hover.svg index 4bfe4bd607..0a238990e2 100644 --- a/resources/images/notification_right_hover.svg +++ b/resources/images/notification_right_hover.svg @@ -1 +1 @@ -123124 \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/notification_right_hover_dark.svg b/resources/images/notification_right_hover_dark.svg index da98eebc7c..da60e06158 100644 --- a/resources/images/notification_right_hover_dark.svg +++ b/resources/images/notification_right_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/notification_slicing_complete.svg b/resources/images/notification_slicing_complete.svg index da677939a5..4f98e485f8 100644 --- a/resources/images/notification_slicing_complete.svg +++ b/resources/images/notification_slicing_complete.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/obj_warning.svg b/resources/images/obj_warning.svg index b1ba3828f6..239e6b7256 100644 --- a/resources/images/obj_warning.svg +++ b/resources/images/obj_warning.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/objlist_color_painting.svg b/resources/images/objlist_color_painting.svg new file mode 100644 index 0000000000..fc454ed063 --- /dev/null +++ b/resources/images/objlist_color_painting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/objlist_seam_painting.svg b/resources/images/objlist_seam_painting.svg new file mode 100644 index 0000000000..1e360cddac --- /dev/null +++ b/resources/images/objlist_seam_painting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/objlist_sinking.svg b/resources/images/objlist_sinking.svg index fbdd2822aa..d8f0e78284 100644 --- a/resources/images/objlist_sinking.svg +++ b/resources/images/objlist_sinking.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/objlist_support_painting.svg b/resources/images/objlist_support_painting.svg new file mode 100644 index 0000000000..e952fc3f52 --- /dev/null +++ b/resources/images/objlist_support_painting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/one_layer_off.svg b/resources/images/one_layer_off.svg index 0f6feb84f1..9667fc203d 100644 --- a/resources/images/one_layer_off.svg +++ b/resources/images/one_layer_off.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/one_layer_off_dark.svg b/resources/images/one_layer_off_dark.svg index c0be9191fe..ad6ac73fbc 100644 --- a/resources/images/one_layer_off_dark.svg +++ b/resources/images/one_layer_off_dark.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/one_layer_off_hover.svg b/resources/images/one_layer_off_hover.svg index bd8fed7121..ff85085667 100644 --- a/resources/images/one_layer_off_hover.svg +++ b/resources/images/one_layer_off_hover.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/one_layer_off_hover_dark.svg b/resources/images/one_layer_off_hover_dark.svg index 1f50980c16..ca124cbe53 100644 --- a/resources/images/one_layer_off_hover_dark.svg +++ b/resources/images/one_layer_off_hover_dark.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/one_layer_on.svg b/resources/images/one_layer_on.svg index 2c0677d2db..16a9c502d2 100644 --- a/resources/images/one_layer_on.svg +++ b/resources/images/one_layer_on.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/one_layer_on_dark.svg b/resources/images/one_layer_on_dark.svg index dd2dfb216b..023525640b 100644 --- a/resources/images/one_layer_on_dark.svg +++ b/resources/images/one_layer_on_dark.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/one_layer_on_hover.svg b/resources/images/one_layer_on_hover.svg index bbbeeaebda..86402d70c2 100644 --- a/resources/images/one_layer_on_hover.svg +++ b/resources/images/one_layer_on_hover.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/one_layer_on_hover_dark.svg b/resources/images/one_layer_on_hover_dark.svg index c5c9776371..d2c310bc96 100644 --- a/resources/images/one_layer_on_hover_dark.svg +++ b/resources/images/one_layer_on_hover_dark.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/open.svg b/resources/images/open.svg index 5c7fa81be3..466eace4d3 100644 --- a/resources/images/open.svg +++ b/resources/images/open.svg @@ -1,11 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_3dhoneycomb.svg b/resources/images/param_3dhoneycomb.svg index 9d2b94182b..779ab3c047 100644 --- a/resources/images/param_3dhoneycomb.svg +++ b/resources/images/param_3dhoneycomb.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_acceleration.svg b/resources/images/param_acceleration.svg index ef9858a206..8e42c6be40 100644 --- a/resources/images/param_acceleration.svg +++ b/resources/images/param_acceleration.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_accessory.svg b/resources/images/param_accessory.svg new file mode 100644 index 0000000000..4ff05ce15e --- /dev/null +++ b/resources/images/param_accessory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_adaptive_mesh.svg b/resources/images/param_adaptive_mesh.svg new file mode 100644 index 0000000000..6b9884e76b --- /dev/null +++ b/resources/images/param_adaptive_mesh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_adaptivecubic.svg b/resources/images/param_adaptivecubic.svg index 7490ca81bd..2f0b51b05f 100644 --- a/resources/images/param_adaptivecubic.svg +++ b/resources/images/param_adaptivecubic.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_adhension.svg b/resources/images/param_adhension.svg index d9578b441f..c8baa303d5 100644 --- a/resources/images/param_adhension.svg +++ b/resources/images/param_adhension.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/param_advanced.svg b/resources/images/param_advanced.svg index 238c2424c3..86d13f71a7 100644 --- a/resources/images/param_advanced.svg +++ b/resources/images/param_advanced.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_alignedrectilinear.svg b/resources/images/param_alignedrectilinear.svg index 3e29d271a4..f988bb75a5 100644 --- a/resources/images/param_alignedrectilinear.svg +++ b/resources/images/param_alignedrectilinear.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_archimedeanchords.svg b/resources/images/param_archimedeanchords.svg index 80d6539166..44a8ec3944 100644 --- a/resources/images/param_archimedeanchords.svg +++ b/resources/images/param_archimedeanchords.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_bed_temp.svg b/resources/images/param_bed_temp.svg new file mode 100644 index 0000000000..74af1d256f --- /dev/null +++ b/resources/images/param_bed_temp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_bridge.svg b/resources/images/param_bridge.svg new file mode 100644 index 0000000000..54b4d47077 --- /dev/null +++ b/resources/images/param_bridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_chamber_temp.svg b/resources/images/param_chamber_temp.svg index 919b543d23..729b469138 100644 --- a/resources/images/param_chamber_temp.svg +++ b/resources/images/param_chamber_temp.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/param_concentric.svg b/resources/images/param_concentric.svg index 47062df636..c449e08a81 100644 --- a/resources/images/param_concentric.svg +++ b/resources/images/param_concentric.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_cooling.svg b/resources/images/param_cooling.svg index 5903299939..6e8afe772b 100644 --- a/resources/images/param_cooling.svg +++ b/resources/images/param_cooling.svg @@ -1,17 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_cooling_aux_fan.svg b/resources/images/param_cooling_aux_fan.svg new file mode 100644 index 0000000000..a566224cc4 --- /dev/null +++ b/resources/images/param_cooling_aux_fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_cooling_exhaust.svg b/resources/images/param_cooling_exhaust.svg new file mode 100644 index 0000000000..e0794e1a56 --- /dev/null +++ b/resources/images/param_cooling_exhaust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_cooling_fan.svg b/resources/images/param_cooling_fan.svg index 93f12898fd..10dfc1cc3e 100644 --- a/resources/images/param_cooling_fan.svg +++ b/resources/images/param_cooling_fan.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_cooling_part_fan.svg b/resources/images/param_cooling_part_fan.svg new file mode 100644 index 0000000000..693f26ed41 --- /dev/null +++ b/resources/images/param_cooling_part_fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_cooling_specific_layer.svg b/resources/images/param_cooling_specific_layer.svg new file mode 100644 index 0000000000..945ba0d9a1 --- /dev/null +++ b/resources/images/param_cooling_specific_layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_cubic.svg b/resources/images/param_cubic.svg index 344aeb1c89..1a237a73e0 100644 --- a/resources/images/param_cubic.svg +++ b/resources/images/param_cubic.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_default-pattern.svg b/resources/images/param_default-pattern.svg new file mode 100644 index 0000000000..0bbbc3e7e1 --- /dev/null +++ b/resources/images/param_default-pattern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_extruder_clearence.svg b/resources/images/param_extruder_clearence.svg new file mode 100644 index 0000000000..d498632597 --- /dev/null +++ b/resources/images/param_extruder_clearence.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_extruder_lift_enforcement.svg b/resources/images/param_extruder_lift_enforcement.svg new file mode 100644 index 0000000000..91cc530900 --- /dev/null +++ b/resources/images/param_extruder_lift_enforcement.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_extruder_size.svg b/resources/images/param_extruder_size.svg new file mode 100644 index 0000000000..3c76a7a16b --- /dev/null +++ b/resources/images/param_extruder_size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_extruder_temp.svg b/resources/images/param_extruder_temp.svg new file mode 100644 index 0000000000..841ae1569d --- /dev/null +++ b/resources/images/param_extruder_temp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_flush.svg b/resources/images/param_flush.svg index da24dceaad..09aeb37c5c 100644 --- a/resources/images/param_flush.svg +++ b/resources/images/param_flush.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_gcode.svg b/resources/images/param_gcode.svg index 98d51dd606..8c0de86e68 100644 --- a/resources/images/param_gcode.svg +++ b/resources/images/param_gcode.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_grid.svg b/resources/images/param_grid.svg index 5ef8475734..3663347402 100644 --- a/resources/images/param_grid.svg +++ b/resources/images/param_grid.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_gyroid.svg b/resources/images/param_gyroid.svg index fa42716efc..8c21b812be 100644 --- a/resources/images/param_gyroid.svg +++ b/resources/images/param_gyroid.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_hilbertcurve.svg b/resources/images/param_hilbertcurve.svg index f76ff649ea..df8aafe115 100644 --- a/resources/images/param_hilbertcurve.svg +++ b/resources/images/param_hilbertcurve.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_hollow.svg b/resources/images/param_hollow.svg index 01ddd94f28..f6300e3471 100644 --- a/resources/images/param_hollow.svg +++ b/resources/images/param_hollow.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_honeycomb.svg b/resources/images/param_honeycomb.svg index 9d2b94182b..7040cef46d 100644 --- a/resources/images/param_honeycomb.svg +++ b/resources/images/param_honeycomb.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_infill.svg b/resources/images/param_infill.svg index 37e050a41b..a257a8e218 100644 --- a/resources/images/param_infill.svg +++ b/resources/images/param_infill.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_information.svg b/resources/images/param_information.svg index 414402349a..2091517204 100644 --- a/resources/images/param_information.svg +++ b/resources/images/param_information.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_ironing.svg b/resources/images/param_ironing.svg index f486c79fd6..96925df0cc 100644 --- a/resources/images/param_ironing.svg +++ b/resources/images/param_ironing.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_jerk.svg b/resources/images/param_jerk.svg new file mode 100644 index 0000000000..da572c06a5 --- /dev/null +++ b/resources/images/param_jerk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_layer_height.svg b/resources/images/param_layer_height.svg index 5d1c630c95..73eb073e3c 100644 --- a/resources/images/param_layer_height.svg +++ b/resources/images/param_layer_height.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_lightning.svg b/resources/images/param_lightning.svg index 0385be4126..8471db84db 100644 --- a/resources/images/param_lightning.svg +++ b/resources/images/param_lightning.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_line.svg b/resources/images/param_line.svg index aed3393a87..d57f3b139d 100644 --- a/resources/images/param_line.svg +++ b/resources/images/param_line.svg @@ -1,22 +1 @@ - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_line_width.svg b/resources/images/param_line_width.svg index b747e8222c..c5d8c2409f 100644 --- a/resources/images/param_line_width.svg +++ b/resources/images/param_line_width.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_monotonic.svg b/resources/images/param_monotonic.svg index b959242708..9eb2cc96a0 100644 --- a/resources/images/param_monotonic.svg +++ b/resources/images/param_monotonic.svg @@ -1,21 +1 @@ - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_monotonicline.svg b/resources/images/param_monotonicline.svg index 0c9245e28a..2692e73c30 100644 --- a/resources/images/param_monotonicline.svg +++ b/resources/images/param_monotonicline.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_multi_material.svg b/resources/images/param_multi_material.svg new file mode 100644 index 0000000000..0505f6449d --- /dev/null +++ b/resources/images/param_multi_material.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_octagramspiral.svg b/resources/images/param_octagramspiral.svg index d4848698ba..6f3767cf03 100644 --- a/resources/images/param_octagramspiral.svg +++ b/resources/images/param_octagramspiral.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_overhang.svg b/resources/images/param_overhang.svg new file mode 100644 index 0000000000..9476b370d6 --- /dev/null +++ b/resources/images/param_overhang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_overhang_speed.svg b/resources/images/param_overhang_speed.svg new file mode 100644 index 0000000000..9c4cf47ad7 --- /dev/null +++ b/resources/images/param_overhang_speed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_position.svg b/resources/images/param_position.svg new file mode 100644 index 0000000000..db243fe0b7 --- /dev/null +++ b/resources/images/param_position.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_precision.svg b/resources/images/param_precision.svg index 47f6ee8df6..ff4cdd3ccf 100644 --- a/resources/images/param_precision.svg +++ b/resources/images/param_precision.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_printable_space.svg b/resources/images/param_printable_space.svg new file mode 100644 index 0000000000..3d3f7a2a9d --- /dev/null +++ b/resources/images/param_printable_space.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_raft.svg b/resources/images/param_raft.svg index d58506d2ca..832fac58d7 100644 --- a/resources/images/param_raft.svg +++ b/resources/images/param_raft.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/param_rectilinear-grid.svg b/resources/images/param_rectilinear-grid.svg index c47cb2c822..0947c22248 100644 --- a/resources/images/param_rectilinear-grid.svg +++ b/resources/images/param_rectilinear-grid.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_rectilinear.svg b/resources/images/param_rectilinear.svg index 3e29d271a4..0c062058bc 100644 --- a/resources/images/param_rectilinear.svg +++ b/resources/images/param_rectilinear.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_rectilinear_interlaced.svg b/resources/images/param_rectilinear_interlaced.svg index 729cc3b84b..a5b95bdf28 100644 --- a/resources/images/param_rectilinear_interlaced.svg +++ b/resources/images/param_rectilinear_interlaced.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_retraction.svg b/resources/images/param_retraction.svg index e476286b02..4a56b35514 100644 --- a/resources/images/param_retraction.svg +++ b/resources/images/param_retraction.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/param_retraction_material_change.svg b/resources/images/param_retraction_material_change.svg new file mode 100644 index 0000000000..d557243282 --- /dev/null +++ b/resources/images/param_retraction_material_change.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_seam.svg b/resources/images/param_seam.svg index 6866f5b862..ec011d8df4 100644 --- a/resources/images/param_seam.svg +++ b/resources/images/param_seam.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/param_search.svg b/resources/images/param_search.svg new file mode 100644 index 0000000000..7bdca770f6 --- /dev/null +++ b/resources/images/param_search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_settings.svg b/resources/images/param_settings.svg new file mode 100644 index 0000000000..fbdc62080e --- /dev/null +++ b/resources/images/param_settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_shell.svg b/resources/images/param_shell.svg index 964c336385..96a1ed1223 100644 --- a/resources/images/param_shell.svg +++ b/resources/images/param_shell.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_special.svg b/resources/images/param_special.svg index 03c542f8c5..9e00002b98 100644 --- a/resources/images/param_special.svg +++ b/resources/images/param_special.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_speed.svg b/resources/images/param_speed.svg index ff44a7e78b..79008e6d40 100644 --- a/resources/images/param_speed.svg +++ b/resources/images/param_speed.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_speed_first.svg b/resources/images/param_speed_first.svg index 90a1bad39f..6c50440c7e 100644 --- a/resources/images/param_speed_first.svg +++ b/resources/images/param_speed_first.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_support.svg b/resources/images/param_support.svg index 68ec97e535..d487ac417c 100644 --- a/resources/images/param_support.svg +++ b/resources/images/param_support.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_support_filament.svg b/resources/images/param_support_filament.svg index 6abc4ff22e..eca486c104 100644 --- a/resources/images/param_support_filament.svg +++ b/resources/images/param_support_filament.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/param_support_tree.svg b/resources/images/param_support_tree.svg new file mode 100644 index 0000000000..f85275def8 --- /dev/null +++ b/resources/images/param_support_tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_supportcubic.svg b/resources/images/param_supportcubic.svg index 344aeb1c89..d5c95d6b42 100644 --- a/resources/images/param_supportcubic.svg +++ b/resources/images/param_supportcubic.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_temperature.svg b/resources/images/param_temperature.svg index 5276f46345..99a91411bf 100644 --- a/resources/images/param_temperature.svg +++ b/resources/images/param_temperature.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_toolchange.svg b/resources/images/param_toolchange.svg new file mode 100644 index 0000000000..73a9590da1 --- /dev/null +++ b/resources/images/param_toolchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_tower.svg b/resources/images/param_tower.svg index 69753a3474..1147401869 100644 --- a/resources/images/param_tower.svg +++ b/resources/images/param_tower.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_travel_speed.svg b/resources/images/param_travel_speed.svg index 2ac2f79fbf..43947fbac2 100644 --- a/resources/images/param_travel_speed.svg +++ b/resources/images/param_travel_speed.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_tri-hexagon.svg b/resources/images/param_tri-hexagon.svg index 636925673d..e0a133c4ca 100644 --- a/resources/images/param_tri-hexagon.svg +++ b/resources/images/param_tri-hexagon.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_triangles.svg b/resources/images/param_triangles.svg index 8b7fd23a02..9d11ea8010 100644 --- a/resources/images/param_triangles.svg +++ b/resources/images/param_triangles.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_volumetric_speed.svg b/resources/images/param_volumetric_speed.svg index a190d737ec..d148e6f1c1 100644 --- a/resources/images/param_volumetric_speed.svg +++ b/resources/images/param_volumetric_speed.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_wall.svg b/resources/images/param_wall.svg index 762b67eae1..404935b39c 100644 --- a/resources/images/param_wall.svg +++ b/resources/images/param_wall.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_wall_generator.svg b/resources/images/param_wall_generator.svg new file mode 100644 index 0000000000..8ac7fb61b7 --- /dev/null +++ b/resources/images/param_wall_generator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_wall_surface.svg b/resources/images/param_wall_surface.svg new file mode 100644 index 0000000000..78ba42df15 --- /dev/null +++ b/resources/images/param_wall_surface.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_zig-zag.svg b/resources/images/param_zig-zag.svg index 58ddf0ea96..0c062058bc 100644 --- a/resources/images/param_zig-zag.svg +++ b/resources/images/param_zig-zag.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/placeholder_excel.svg b/resources/images/placeholder_excel.svg index 15b84b4b90..16eeb39650 100644 --- a/resources/images/placeholder_excel.svg +++ b/resources/images/placeholder_excel.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/placeholder_pdf.svg b/resources/images/placeholder_pdf.svg index 158444c430..a07e336d7e 100644 --- a/resources/images/placeholder_pdf.svg +++ b/resources/images/placeholder_pdf.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/placeholder_txt.svg b/resources/images/placeholder_txt.svg index dcad481d9d..113a746d33 100644 --- a/resources/images/placeholder_txt.svg +++ b/resources/images/placeholder_txt.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_arrange.svg b/resources/images/plate_arrange.svg index c9c3b2501b..16d2189b4c 100644 --- a/resources/images/plate_arrange.svg +++ b/resources/images/plate_arrange.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_arrange_dark.svg b/resources/images/plate_arrange_dark.svg index 04b66eaee4..5ac7c488ba 100644 --- a/resources/images/plate_arrange_dark.svg +++ b/resources/images/plate_arrange_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_arrange_hover.svg b/resources/images/plate_arrange_hover.svg index 6dce382802..f3378fce55 100644 --- a/resources/images/plate_arrange_hover.svg +++ b/resources/images/plate_arrange_hover.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_arrange_hover_dark.svg b/resources/images/plate_arrange_hover_dark.svg index 9b060b705e..65f956b28e 100644 --- a/resources/images/plate_arrange_hover_dark.svg +++ b/resources/images/plate_arrange_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_close.svg b/resources/images/plate_close.svg index 235e135d72..de0c4f66a6 100644 --- a/resources/images/plate_close.svg +++ b/resources/images/plate_close.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_close_dark.svg b/resources/images/plate_close_dark.svg index 8fb4bdd6a9..a045ccd4b2 100644 --- a/resources/images/plate_close_dark.svg +++ b/resources/images/plate_close_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_close_hover.svg b/resources/images/plate_close_hover.svg index 2208d45026..495322afe4 100644 --- a/resources/images/plate_close_hover.svg +++ b/resources/images/plate_close_hover.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_close_hover_dark.svg b/resources/images/plate_close_hover_dark.svg index 47525ae39e..13199c94b8 100644 --- a/resources/images/plate_close_hover_dark.svg +++ b/resources/images/plate_close_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_locked.svg b/resources/images/plate_locked.svg index 30f54f083c..8738cd5222 100644 --- a/resources/images/plate_locked.svg +++ b/resources/images/plate_locked.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/plate_locked_dark.svg b/resources/images/plate_locked_dark.svg index 50d879d7f2..94698a340f 100644 --- a/resources/images/plate_locked_dark.svg +++ b/resources/images/plate_locked_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_locked_hover.svg b/resources/images/plate_locked_hover.svg index 0b35c40930..f56beb6c07 100644 --- a/resources/images/plate_locked_hover.svg +++ b/resources/images/plate_locked_hover.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/plate_locked_hover_dark.svg b/resources/images/plate_locked_hover_dark.svg index e5db250044..8955de70dd 100644 --- a/resources/images/plate_locked_hover_dark.svg +++ b/resources/images/plate_locked_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_name_edit.svg b/resources/images/plate_name_edit.svg index 061c9dda77..fad12d446e 100644 --- a/resources/images/plate_name_edit.svg +++ b/resources/images/plate_name_edit.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/plate_name_edit_dark.svg b/resources/images/plate_name_edit_dark.svg index 061c9dda77..6ed07bbdf4 100644 --- a/resources/images/plate_name_edit_dark.svg +++ b/resources/images/plate_name_edit_dark.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/plate_name_edit_hover.svg b/resources/images/plate_name_edit_hover.svg index 1b5630c47b..d6968c9bb8 100644 --- a/resources/images/plate_name_edit_hover.svg +++ b/resources/images/plate_name_edit_hover.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_name_edit_hover_dark.svg b/resources/images/plate_name_edit_hover_dark.svg index 9d2c2b1555..5655a554ea 100644 --- a/resources/images/plate_name_edit_hover_dark.svg +++ b/resources/images/plate_name_edit_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_orient.svg b/resources/images/plate_orient.svg index 9fee1617c9..63dd5f2f0b 100644 --- a/resources/images/plate_orient.svg +++ b/resources/images/plate_orient.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_orient_dark.svg b/resources/images/plate_orient_dark.svg index a2e1cf7562..b0b16c87a9 100644 --- a/resources/images/plate_orient_dark.svg +++ b/resources/images/plate_orient_dark.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_orient_hover.svg b/resources/images/plate_orient_hover.svg index e97bc42a4e..e88fb5d830 100644 --- a/resources/images/plate_orient_hover.svg +++ b/resources/images/plate_orient_hover.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_orient_hover_dark.svg b/resources/images/plate_orient_hover_dark.svg index 2f141d3323..e8adebcf49 100644 --- a/resources/images/plate_orient_hover_dark.svg +++ b/resources/images/plate_orient_hover_dark.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings.svg b/resources/images/plate_settings.svg index c87756cf1a..e6ee8b0b6a 100644 --- a/resources/images/plate_settings.svg +++ b/resources/images/plate_settings.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_arrow.svg b/resources/images/plate_settings_arrow.svg index e772a9671b..8da6e0b4dd 100644 --- a/resources/images/plate_settings_arrow.svg +++ b/resources/images/plate_settings_arrow.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_changed.svg b/resources/images/plate_settings_changed.svg index fe2f4797d7..8a4ca4d60f 100644 --- a/resources/images/plate_settings_changed.svg +++ b/resources/images/plate_settings_changed.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_changed_dark.svg b/resources/images/plate_settings_changed_dark.svg index 46c17a8058..ce5672a9d7 100644 --- a/resources/images/plate_settings_changed_dark.svg +++ b/resources/images/plate_settings_changed_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_changed_hover.svg b/resources/images/plate_settings_changed_hover.svg index 41f8d3df1e..1bb9023a28 100644 --- a/resources/images/plate_settings_changed_hover.svg +++ b/resources/images/plate_settings_changed_hover.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_changed_hover_dark.svg b/resources/images/plate_settings_changed_hover_dark.svg index adebb4e21f..2fabb11b78 100644 --- a/resources/images/plate_settings_changed_hover_dark.svg +++ b/resources/images/plate_settings_changed_hover_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_dark.svg b/resources/images/plate_settings_dark.svg index 94b11e77a5..69b3474669 100644 --- a/resources/images/plate_settings_dark.svg +++ b/resources/images/plate_settings_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_hover.svg b/resources/images/plate_settings_hover.svg index c56fe47706..a555b28f9b 100644 --- a/resources/images/plate_settings_hover.svg +++ b/resources/images/plate_settings_hover.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_settings_hover_dark.svg b/resources/images/plate_settings_hover_dark.svg index 276b609a79..f36f6e8f03 100644 --- a/resources/images/plate_settings_hover_dark.svg +++ b/resources/images/plate_settings_hover_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_unlocked.svg b/resources/images/plate_unlocked.svg index 8b780a4f5b..c04f826e24 100644 --- a/resources/images/plate_unlocked.svg +++ b/resources/images/plate_unlocked.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/plate_unlocked_dark.svg b/resources/images/plate_unlocked_dark.svg index 13c562d552..191094d9d6 100644 --- a/resources/images/plate_unlocked_dark.svg +++ b/resources/images/plate_unlocked_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/plate_unlocked_hover.svg b/resources/images/plate_unlocked_hover.svg index de3b0794be..f0f0d1ff03 100644 --- a/resources/images/plate_unlocked_hover.svg +++ b/resources/images/plate_unlocked_hover.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/plate_unlocked_hover_dark.svg b/resources/images/plate_unlocked_hover_dark.svg index 140fa1d7d6..8d9f568ed6 100644 --- a/resources/images/plate_unlocked_hover_dark.svg +++ b/resources/images/plate_unlocked_hover_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/print-time.svg b/resources/images/print-time.svg index 6734937f93..8f56842e37 100644 --- a/resources/images/print-time.svg +++ b/resources/images/print-time.svg @@ -1,12 +1 @@ - - - - background - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/print-weight.svg b/resources/images/print-weight.svg index 93bdcd8123..981689a52f 100644 --- a/resources/images/print-weight.svg +++ b/resources/images/print-weight.svg @@ -1,17 +1 @@ - - - - background - - - - Layer 1 - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/print_control_pause.svg b/resources/images/print_control_pause.svg index 6f2759b089..0cb5abaf1b 100644 --- a/resources/images/print_control_pause.svg +++ b/resources/images/print_control_pause.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/print_control_pause_disable.svg b/resources/images/print_control_pause_disable.svg index 2e1d511765..57b454fdeb 100644 --- a/resources/images/print_control_pause_disable.svg +++ b/resources/images/print_control_pause_disable.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/print_control_pause_hover.svg b/resources/images/print_control_pause_hover.svg index 0753b08c7f..12e35f3216 100644 --- a/resources/images/print_control_pause_hover.svg +++ b/resources/images/print_control_pause_hover.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/print_control_resume.svg b/resources/images/print_control_resume.svg index 5151f06a1a..09694a7b5c 100644 --- a/resources/images/print_control_resume.svg +++ b/resources/images/print_control_resume.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/print_control_resume_disable.svg b/resources/images/print_control_resume_disable.svg index fb1ad8adb2..478dc3e2e4 100644 --- a/resources/images/print_control_resume_disable.svg +++ b/resources/images/print_control_resume_disable.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/print_control_resume_hover.svg b/resources/images/print_control_resume_hover.svg index b408fb9402..bffdd4fe2d 100644 --- a/resources/images/print_control_resume_hover.svg +++ b/resources/images/print_control_resume_hover.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/print_control_stop.svg b/resources/images/print_control_stop.svg index 1201928163..b8c8d36910 100644 --- a/resources/images/print_control_stop.svg +++ b/resources/images/print_control_stop.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/print_control_stop_disable.svg b/resources/images/print_control_stop_disable.svg index 3d2a99afaf..0f05d885d0 100644 --- a/resources/images/print_control_stop_disable.svg +++ b/resources/images/print_control_stop_disable.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/print_control_stop_hover.svg b/resources/images/print_control_stop_hover.svg index 267d913ebc..4136c759bf 100644 --- a/resources/images/print_control_stop_hover.svg +++ b/resources/images/print_control_stop_hover.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/print_info_time.svg b/resources/images/print_info_time.svg index 63af49a7fc..d0eb028a45 100644 --- a/resources/images/print_info_time.svg +++ b/resources/images/print_info_time.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/print_info_weight.svg b/resources/images/print_info_weight.svg index e4deb77c39..58048495dc 100644 --- a/resources/images/print_info_weight.svg +++ b/resources/images/print_info_weight.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/printer.svg b/resources/images/printer.svg index 2a0598823c..e67f870692 100644 --- a/resources/images/printer.svg +++ b/resources/images/printer.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/printer_host_browser.svg b/resources/images/printer_host_browser.svg index 47eccd52e7..2c087e8a85 100644 --- a/resources/images/printer_host_browser.svg +++ b/resources/images/printer_host_browser.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/printer_host_test.svg b/resources/images/printer_host_test.svg index 517c46a330..c8dc384f68 100644 --- a/resources/images/printer_host_test.svg +++ b/resources/images/printer_host_test.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/printer_in_lan.svg b/resources/images/printer_in_lan.svg index d7392ab6e8..449280bf5a 100644 --- a/resources/images/printer_in_lan.svg +++ b/resources/images/printer_in_lan.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/printer_status_busy.svg b/resources/images/printer_status_busy.svg index 590c6bdbae..a166f0b693 100644 --- a/resources/images/printer_status_busy.svg +++ b/resources/images/printer_status_busy.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/printer_status_idle.svg b/resources/images/printer_status_idle.svg index ff81158dc5..cc6326daf4 100644 --- a/resources/images/printer_status_idle.svg +++ b/resources/images/printer_status_idle.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/printer_status_lock.svg b/resources/images/printer_status_lock.svg index af840d2f7c..66e0a805ac 100644 --- a/resources/images/printer_status_lock.svg +++ b/resources/images/printer_status_lock.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/printer_status_offline.svg b/resources/images/printer_status_offline.svg index eeb09a4d11..2539c23e07 100644 --- a/resources/images/printer_status_offline.svg +++ b/resources/images/printer_status_offline.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/process.svg b/resources/images/process.svg index 5d449680f3..560e3fa2a5 100644 --- a/resources/images/process.svg +++ b/resources/images/process.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/question.svg b/resources/images/question.svg index 6fb955b628..5b4ecc50e1 100644 --- a/resources/images/question.svg +++ b/resources/images/question.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/radio_off.svg b/resources/images/radio_off.svg index ee5fa30cf9..96c0e76749 100644 --- a/resources/images/radio_off.svg +++ b/resources/images/radio_off.svg @@ -1,7 +1 @@ - - - - Layer 1 - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/radio_on.svg b/resources/images/radio_on.svg index d9d1f88307..eb98320785 100644 --- a/resources/images/radio_on.svg +++ b/resources/images/radio_on.svg @@ -1,8 +1 @@ - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/reflection_x.svg b/resources/images/reflection_x.svg index fa391e6cdf..4a94013895 100644 --- a/resources/images/reflection_x.svg +++ b/resources/images/reflection_x.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/reflection_y.svg b/resources/images/reflection_y.svg index 0de6a5971f..55d357df6f 100644 --- a/resources/images/reflection_y.svg +++ b/resources/images/reflection_y.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/refresh.svg b/resources/images/refresh.svg index af9b336858..b25d533125 100644 --- a/resources/images/refresh.svg +++ b/resources/images/refresh.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/revert_btn.svg b/resources/images/revert_btn.svg index fbc580d884..763a86ff76 100644 --- a/resources/images/revert_btn.svg +++ b/resources/images/revert_btn.svg @@ -1,12 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/save.svg b/resources/images/save.svg index 63029daf58..65db979dfa 100644 --- a/resources/images/save.svg +++ b/resources/images/save.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/sdcard_state_abnormal.svg b/resources/images/sdcard_state_abnormal.svg index a88e8df175..45705a0703 100644 --- a/resources/images/sdcard_state_abnormal.svg +++ b/resources/images/sdcard_state_abnormal.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/sdcard_state_abnormal_dark.svg b/resources/images/sdcard_state_abnormal_dark.svg index b2ac57f52a..45705a0703 100644 --- a/resources/images/sdcard_state_abnormal_dark.svg +++ b/resources/images/sdcard_state_abnormal_dark.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/sdcard_state_no.svg b/resources/images/sdcard_state_no.svg index ae45a0c3b5..5e0449ee17 100644 --- a/resources/images/sdcard_state_no.svg +++ b/resources/images/sdcard_state_no.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/sdcard_state_no_dark.svg b/resources/images/sdcard_state_no_dark.svg index 6b17701408..5e0449ee17 100644 --- a/resources/images/sdcard_state_no_dark.svg +++ b/resources/images/sdcard_state_no_dark.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/sdcard_state_normal.svg b/resources/images/sdcard_state_normal.svg index fc70fe4a65..5caac95676 100644 --- a/resources/images/sdcard_state_normal.svg +++ b/resources/images/sdcard_state_normal.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/sdcard_state_normal_dark.svg b/resources/images/sdcard_state_normal_dark.svg index 1abfa2c38b..5caac95676 100644 --- a/resources/images/sdcard_state_normal_dark.svg +++ b/resources/images/sdcard_state_normal_dark.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/search.svg b/resources/images/search.svg index 304562750b..71fb964182 100644 --- a/resources/images/search.svg +++ b/resources/images/search.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/seperator.svg b/resources/images/seperator.svg index c053a0aa4a..c69e4289ca 100644 --- a/resources/images/seperator.svg +++ b/resources/images/seperator.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/settings.svg b/resources/images/settings.svg index d2a2a2e8af..47241ab53f 100644 --- a/resources/images/settings.svg +++ b/resources/images/settings.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/sidebutton_dropdown.svg b/resources/images/sidebutton_dropdown.svg index 2ea84d7d17..961970f674 100644 --- a/resources/images/sidebutton_dropdown.svg +++ b/resources/images/sidebutton_dropdown.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/spin_dec.svg b/resources/images/spin_dec.svg index 4988471024..fe453e216f 100644 --- a/resources/images/spin_dec.svg +++ b/resources/images/spin_dec.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/spin_inc.svg b/resources/images/spin_inc.svg index 0a04338761..79d5c598e9 100644 --- a/resources/images/spin_inc.svg +++ b/resources/images/spin_inc.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/split_objects.svg b/resources/images/split_objects.svg index 091c4ad3d9..492a138985 100644 --- a/resources/images/split_objects.svg +++ b/resources/images/split_objects.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/split_objects_dark.svg b/resources/images/split_objects_dark.svg index 5965f459a0..149d724262 100644 --- a/resources/images/split_objects_dark.svg +++ b/resources/images/split_objects_dark.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/split_parts.svg b/resources/images/split_parts.svg index b1246a6a5e..eee3a868c3 100644 --- a/resources/images/split_parts.svg +++ b/resources/images/split_parts.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/split_parts_dark.svg b/resources/images/split_parts_dark.svg index 82e77af131..e9a0994548 100644 --- a/resources/images/split_parts_dark.svg +++ b/resources/images/split_parts_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/spool.svg b/resources/images/spool.svg index d0d7cb3773..1e639c7dcc 100644 --- a/resources/images/spool.svg +++ b/resources/images/spool.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/step_1.svg b/resources/images/step_1.svg index bb72d6e2ac..a34f812a6a 100644 --- a/resources/images/step_1.svg +++ b/resources/images/step_1.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/step_2.svg b/resources/images/step_2.svg index 730ef67ce1..81c76f5fa4 100644 --- a/resources/images/step_2.svg +++ b/resources/images/step_2.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/step_2_ready.svg b/resources/images/step_2_ready.svg index 8e53610c3a..b9f768b64c 100644 --- a/resources/images/step_2_ready.svg +++ b/resources/images/step_2_ready.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/step_is_ok.svg b/resources/images/step_is_ok.svg index 04ee5c02ae..3dea459a5f 100644 --- a/resources/images/step_is_ok.svg +++ b/resources/images/step_is_ok.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/support.svg b/resources/images/support.svg index f25ab8f3c4..f883607cdd 100644 --- a/resources/images/support.svg +++ b/resources/images/support.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/svg_modifier.svg b/resources/images/svg_modifier.svg index 8b1ff317b4..74548e9646 100644 --- a/resources/images/svg_modifier.svg +++ b/resources/images/svg_modifier.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/svg_negative.svg b/resources/images/svg_negative.svg index c47a8fe58d..7845267e2a 100644 --- a/resources/images/svg_negative.svg +++ b/resources/images/svg_negative.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/svg_part.svg b/resources/images/svg_part.svg index 40f907bd9f..b75b85bd87 100644 --- a/resources/images/svg_part.svg +++ b/resources/images/svg_part.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/tab_3d_active.svg b/resources/images/tab_3d_active.svg index 1b4cc48a71..36ffc87ee5 100644 --- a/resources/images/tab_3d_active.svg +++ b/resources/images/tab_3d_active.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/tab_auxiliary_active.svg b/resources/images/tab_auxiliary_active.svg index 95fb702f7e..ae2a6783f7 100644 --- a/resources/images/tab_auxiliary_active.svg +++ b/resources/images/tab_auxiliary_active.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/tab_calibration.svg b/resources/images/tab_calibration.svg new file mode 100644 index 0000000000..54ea4fe5b5 --- /dev/null +++ b/resources/images/tab_calibration.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/tab_home_active.svg b/resources/images/tab_home_active.svg index 00be6f6f04..7d8d586e91 100644 --- a/resources/images/tab_home_active.svg +++ b/resources/images/tab_home_active.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/tab_monitor_active.svg b/resources/images/tab_monitor_active.svg index 80971866e2..6270ca49e7 100644 --- a/resources/images/tab_monitor_active.svg +++ b/resources/images/tab_monitor_active.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/tab_presets_active.svg b/resources/images/tab_presets_active.svg index 617b9eb6a7..4eb67fc6df 100644 --- a/resources/images/tab_presets_active.svg +++ b/resources/images/tab_presets_active.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/tab_presets_inactive.svg b/resources/images/tab_presets_inactive.svg index 6438cd9ac2..cd064caa1e 100644 --- a/resources/images/tab_presets_inactive.svg +++ b/resources/images/tab_presets_inactive.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/tab_preview_active.svg b/resources/images/tab_preview_active.svg index 5bb703d338..a65cab4820 100644 --- a/resources/images/tab_preview_active.svg +++ b/resources/images/tab_preview_active.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/table.svg b/resources/images/table.svg index d1b059b053..5f04f4e05c 100644 --- a/resources/images/table.svg +++ b/resources/images/table.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/tips_arrow.svg b/resources/images/tips_arrow.svg index cba8d02d98..eb7da06766 100644 --- a/resources/images/tips_arrow.svg +++ b/resources/images/tips_arrow.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/toggle_off.svg b/resources/images/toggle_off.svg index c479d1cf6d..f83e594cc6 100644 --- a/resources/images/toggle_off.svg +++ b/resources/images/toggle_off.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/toggle_on.svg b/resources/images/toggle_on.svg index 3a4c3f0878..f83cafd3bd 100644 --- a/resources/images/toggle_on.svg +++ b/resources/images/toggle_on.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_add_plate.svg b/resources/images/toolbar_add_plate.svg index 4a13b0a029..ea2577d961 100644 --- a/resources/images/toolbar_add_plate.svg +++ b/resources/images/toolbar_add_plate.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_add_plate_dark.svg b/resources/images/toolbar_add_plate_dark.svg index 0a5dcc67b9..a361368a18 100644 --- a/resources/images/toolbar_add_plate_dark.svg +++ b/resources/images/toolbar_add_plate_dark.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_arrange.svg b/resources/images/toolbar_arrange.svg index 184030090e..6b15ec846d 100644 --- a/resources/images/toolbar_arrange.svg +++ b/resources/images/toolbar_arrange.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_arrange_dark.svg b/resources/images/toolbar_arrange_dark.svg index 69f37e8eff..7e32711f61 100644 --- a/resources/images/toolbar_arrange_dark.svg +++ b/resources/images/toolbar_arrange_dark.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_assemble.svg b/resources/images/toolbar_assemble.svg index 8513db24f6..02c3bce781 100644 --- a/resources/images/toolbar_assemble.svg +++ b/resources/images/toolbar_assemble.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_assemble_dark.svg b/resources/images/toolbar_assemble_dark.svg index a6299e48d0..48debebc4c 100644 --- a/resources/images/toolbar_assemble_dark.svg +++ b/resources/images/toolbar_assemble_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_cut.svg b/resources/images/toolbar_cut.svg index 9f507dc9ea..a062d0c40c 100644 --- a/resources/images/toolbar_cut.svg +++ b/resources/images/toolbar_cut.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_cut_dark.svg b/resources/images/toolbar_cut_dark.svg index 3e78be7887..ab3c592c9e 100644 --- a/resources/images/toolbar_cut_dark.svg +++ b/resources/images/toolbar_cut_dark.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_measure.svg b/resources/images/toolbar_measure.svg index 1606b5ee6f..ece2f09b92 100644 --- a/resources/images/toolbar_measure.svg +++ b/resources/images/toolbar_measure.svg @@ -1,93 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_measure_dark.svg b/resources/images/toolbar_measure_dark.svg index a273e75347..56a98b749e 100644 --- a/resources/images/toolbar_measure_dark.svg +++ b/resources/images/toolbar_measure_dark.svg @@ -1,93 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_meshboolean.svg b/resources/images/toolbar_meshboolean.svg index 6a6a68b991..0253340b53 100644 --- a/resources/images/toolbar_meshboolean.svg +++ b/resources/images/toolbar_meshboolean.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_meshboolean_dark.svg b/resources/images/toolbar_meshboolean_dark.svg index 6ebe5cbf85..8837111056 100644 --- a/resources/images/toolbar_meshboolean_dark.svg +++ b/resources/images/toolbar_meshboolean_dark.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_modifier_sphere.svg b/resources/images/toolbar_modifier_sphere.svg index dc08d011db..a794a7f99e 100644 --- a/resources/images/toolbar_modifier_sphere.svg +++ b/resources/images/toolbar_modifier_sphere.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_modifier_sphere_dark.svg b/resources/images/toolbar_modifier_sphere_dark.svg index 10f64738ae..27b56e20a9 100644 --- a/resources/images/toolbar_modifier_sphere_dark.svg +++ b/resources/images/toolbar_modifier_sphere_dark.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_move.svg b/resources/images/toolbar_move.svg index 1f94c1cba3..1c9764a52b 100644 --- a/resources/images/toolbar_move.svg +++ b/resources/images/toolbar_move.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_move_dark.svg b/resources/images/toolbar_move_dark.svg index 1e560788aa..000e9b0c2c 100644 --- a/resources/images/toolbar_move_dark.svg +++ b/resources/images/toolbar_move_dark.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_open.svg b/resources/images/toolbar_open.svg index 78730b4282..282b67bb67 100644 --- a/resources/images/toolbar_open.svg +++ b/resources/images/toolbar_open.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_open_dark.svg b/resources/images/toolbar_open_dark.svg index e5b5fc1f9b..01700b1f30 100644 --- a/resources/images/toolbar_open_dark.svg +++ b/resources/images/toolbar_open_dark.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_reset.svg b/resources/images/toolbar_reset.svg index 134b230b3f..ad78b43e15 100644 --- a/resources/images/toolbar_reset.svg +++ b/resources/images/toolbar_reset.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_reset_hover.svg b/resources/images/toolbar_reset_hover.svg index 279b20bce2..ad78b43e15 100644 --- a/resources/images/toolbar_reset_hover.svg +++ b/resources/images/toolbar_reset_hover.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/toolbar_rotate.svg b/resources/images/toolbar_rotate.svg index 9642a6ae44..d14b35c676 100644 --- a/resources/images/toolbar_rotate.svg +++ b/resources/images/toolbar_rotate.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_rotate_dark.svg b/resources/images/toolbar_rotate_dark.svg index b8b21a1578..e611be4c5b 100644 --- a/resources/images/toolbar_rotate_dark.svg +++ b/resources/images/toolbar_rotate_dark.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_scale.svg b/resources/images/toolbar_scale.svg index 0f8c628623..a806a00926 100644 --- a/resources/images/toolbar_scale.svg +++ b/resources/images/toolbar_scale.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_scale_dark.svg b/resources/images/toolbar_scale_dark.svg index b044591ee2..78e86cee75 100644 --- a/resources/images/toolbar_scale_dark.svg +++ b/resources/images/toolbar_scale_dark.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_seam.svg b/resources/images/toolbar_seam.svg index 8a12cf00b1..660f1fed3e 100644 --- a/resources/images/toolbar_seam.svg +++ b/resources/images/toolbar_seam.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_seam_dark.svg b/resources/images/toolbar_seam_dark.svg index 7d686f1415..65573c87b1 100644 --- a/resources/images/toolbar_seam_dark.svg +++ b/resources/images/toolbar_seam_dark.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_support.svg b/resources/images/toolbar_support.svg index 9208594a0a..9ace7d67c7 100644 --- a/resources/images/toolbar_support.svg +++ b/resources/images/toolbar_support.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_support_dark.svg b/resources/images/toolbar_support_dark.svg index 2481a95b47..fac4afb675 100644 --- a/resources/images/toolbar_support_dark.svg +++ b/resources/images/toolbar_support_dark.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_text.svg b/resources/images/toolbar_text.svg index 08f593c119..fbd932c6d5 100644 --- a/resources/images/toolbar_text.svg +++ b/resources/images/toolbar_text.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_text_dark.svg b/resources/images/toolbar_text_dark.svg index b25888f2fa..a680b7f530 100644 --- a/resources/images/toolbar_text_dark.svg +++ b/resources/images/toolbar_text_dark.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_tooltip.svg b/resources/images/toolbar_tooltip.svg index 6c48a72bb0..96c5684cb0 100644 --- a/resources/images/toolbar_tooltip.svg +++ b/resources/images/toolbar_tooltip.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_tooltip_hover.svg b/resources/images/toolbar_tooltip_hover.svg index f1b4fc79d6..c8d606829e 100644 --- a/resources/images/toolbar_tooltip_hover.svg +++ b/resources/images/toolbar_tooltip_hover.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/topbar_blank.svg b/resources/images/topbar_blank.svg new file mode 100644 index 0000000000..b920a2ccdc --- /dev/null +++ b/resources/images/topbar_blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/topbar_close.svg b/resources/images/topbar_close.svg index 43958476a5..c911eaa53d 100644 --- a/resources/images/topbar_close.svg +++ b/resources/images/topbar_close.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/topbar_dropdown.svg b/resources/images/topbar_dropdown.svg index 0a349f0eda..fce7742c29 100644 --- a/resources/images/topbar_dropdown.svg +++ b/resources/images/topbar_dropdown.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/topbar_file.svg b/resources/images/topbar_file.svg index 1a19896bb8..eb28e21045 100644 --- a/resources/images/topbar_file.svg +++ b/resources/images/topbar_file.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/topbar_max.svg b/resources/images/topbar_max.svg index 6bf4ef6839..5766784b50 100644 --- a/resources/images/topbar_max.svg +++ b/resources/images/topbar_max.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/topbar_min.svg b/resources/images/topbar_min.svg index b12dd684c2..53c2b08888 100644 --- a/resources/images/topbar_min.svg +++ b/resources/images/topbar_min.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/topbar_redo.svg b/resources/images/topbar_redo.svg index 2a45094a88..b5c5589dee 100644 --- a/resources/images/topbar_redo.svg +++ b/resources/images/topbar_redo.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/topbar_redo_inactive.svg b/resources/images/topbar_redo_inactive.svg index 4fdc1bad0e..5899ce2fef 100644 --- a/resources/images/topbar_redo_inactive.svg +++ b/resources/images/topbar_redo_inactive.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/topbar_save.svg b/resources/images/topbar_save.svg index 8fb28c645d..532ad4f0fa 100644 --- a/resources/images/topbar_save.svg +++ b/resources/images/topbar_save.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/topbar_undo.svg b/resources/images/topbar_undo.svg index 267ff68999..0ad07b2624 100644 --- a/resources/images/topbar_undo.svg +++ b/resources/images/topbar_undo.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/topbar_undo_inactive.svg b/resources/images/topbar_undo_inactive.svg index 94d15c147b..2a07fbc01b 100644 --- a/resources/images/topbar_undo_inactive.svg +++ b/resources/images/topbar_undo_inactive.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/images/topbar_win.svg b/resources/images/topbar_win.svg index e7dc4a61ed..84124aa271 100644 --- a/resources/images/topbar_win.svg +++ b/resources/images/topbar_win.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/triangle_paint.svg b/resources/images/triangle_paint.svg index c28991f2a0..c3b3c935c7 100644 --- a/resources/images/triangle_paint.svg +++ b/resources/images/triangle_paint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/triangle_paint_dark.svg b/resources/images/triangle_paint_dark.svg index 0efbc898b6..cfaedd1acd 100644 --- a/resources/images/triangle_paint_dark.svg +++ b/resources/images/triangle_paint_dark.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/images/unbind.svg b/resources/images/unbind.svg index 5af4b8603f..f60e09c08f 100644 --- a/resources/images/unbind.svg +++ b/resources/images/unbind.svg @@ -1,8 +1 @@ - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/unbind_machine.svg b/resources/images/unbind_machine.svg index d6d8142c4c..1754224189 100644 --- a/resources/images/unbind_machine.svg +++ b/resources/images/unbind_machine.svg @@ -1,8 +1 @@ - - - - Layer 1 - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/unbind_selected.svg b/resources/images/unbind_selected.svg index 29b7382df2..3228394b0b 100644 --- a/resources/images/unbind_selected.svg +++ b/resources/images/unbind_selected.svg @@ -1,8 +1 @@ - - - Layer 1 - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/undefined.svg b/resources/images/undefined.svg new file mode 100644 index 0000000000..7c3eedfbca --- /dev/null +++ b/resources/images/undefined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/undo.svg b/resources/images/undo.svg index fb8e0803a0..763a86ff76 100644 --- a/resources/images/undo.svg +++ b/resources/images/undo.svg @@ -1,6 +1 @@ - - - Slice 41 - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/video_state_off.svg b/resources/images/video_state_off.svg index 8d1509867c..7bed3b8cec 100644 --- a/resources/images/video_state_off.svg +++ b/resources/images/video_state_off.svg @@ -1,9 +1 @@ - - - - Layer 1 - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/video_state_on.svg b/resources/images/video_state_on.svg index 9201d5593d..301d972fdb 100644 --- a/resources/images/video_state_on.svg +++ b/resources/images/video_state_on.svg @@ -1,9 +1 @@ - - - - Layer 1 - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/src/slic3r/GUI/GUI_Factories.cpp b/src/slic3r/GUI/GUI_Factories.cpp index e3cec4e55e..00c44e3693 100644 --- a/src/slic3r/GUI/GUI_Factories.cpp +++ b/src/slic3r/GUI/GUI_Factories.cpp @@ -500,18 +500,28 @@ wxMenu* MenuFactory::append_submenu_add_generic(wxMenu* menu, ModelVolumeType ty if (type != ModelVolumeType::INVALID) { append_menu_item(sub_menu, wxID_ANY, _L("Load..."), "", - [type](wxCommandEvent&) { obj_list()->load_subobject(type); }, "", menu); + [type](wxCommandEvent&) { obj_list()->load_subobject(type); }, "menu_load", menu); sub_menu->AppendSeparator(); } - for (auto &item : {L("Cube"), L("Cylinder"), L("Sphere"), L("Cone"), L("Disc"), L("Torus")}) { - append_menu_item( - sub_menu, wxID_ANY, _(item), "", - [type, item](wxCommandEvent &) { - obj_list()->load_generic_subobject(item, type); - }, - "", menu); - } + append_menu_item(sub_menu, wxID_ANY, _L("Cube"), "", + [type](wxCommandEvent&) { obj_list()->load_generic_subobject(L("Cube") ,type); },"menu_obj_cube", menu); + + append_menu_item(sub_menu, wxID_ANY, _L("Cylinder"), "", + [type](wxCommandEvent&) { obj_list()->load_generic_subobject(L("Cylinder"), type); },"menu_obj_cylinder", menu); + + append_menu_item(sub_menu, wxID_ANY, _L("Sphere"), "", + [type](wxCommandEvent&) { obj_list()->load_generic_subobject(L("Sphere"), type); },"menu_obj_sphere", menu); + + append_menu_item(sub_menu, wxID_ANY, _L("Cone"), "", + [type](wxCommandEvent&) { obj_list()->load_generic_subobject(L("Cone"), type); },"menu_obj_cone", menu); + + append_menu_item(sub_menu, wxID_ANY, _L("Disc"), "", + [type](wxCommandEvent&) { obj_list()->load_generic_subobject(L("Disc"), type); },"menu_obj_disc", menu); + + append_menu_item(sub_menu, wxID_ANY, _L("Torus"), "", + [type](wxCommandEvent&) { obj_list()->load_generic_subobject(L("Torus"), type); },"menu_obj_torus", menu); + append_menu_item_add_text(sub_menu, type); append_menu_item_add_svg(sub_menu, type); @@ -619,7 +629,8 @@ static void append_menu_itemm_add_(const wxString& name, GLGizmosManager::EType ) { wxString item_name = wxString(is_submenu_item ? "" : _(ADD_VOLUME_MENU_ITEMS[int(type)].first) + ": ") + name; menu->AppendSeparator(); - const std::string icon_name = is_submenu_item ? "" : ADD_VOLUME_MENU_ITEMS[int(type)].second; + auto def_icon_name = (gizmo_type == GLGizmosManager::Emboss) ? "menu_obj_text" : "menu_obj_svg"; + const std::string icon_name = is_submenu_item ? def_icon_name : ADD_VOLUME_MENU_ITEMS[int(type)].second; append_menu_item(menu, wxID_ANY, item_name, "", add_, icon_name, menu); } } @@ -661,7 +672,7 @@ void MenuFactory::append_menu_items_add_volume(wxMenu* menu) wxMenuItem* MenuFactory::append_menu_item_layers_editing(wxMenu* menu) { return append_menu_item(menu, wxID_ANY, _L("Height range Modifier"), "", - [](wxCommandEvent&) { obj_list()->layers_editing(); wxGetApp().params_panel()->switch_to_object(); }, "", menu, + [](wxCommandEvent&) { obj_list()->layers_editing(); wxGetApp().params_panel()->switch_to_object(); }, "height_range_modifier", menu, []() { return obj_list()->is_instance_or_object_selected(); }, m_parent); } @@ -1113,11 +1124,11 @@ void MenuFactory::append_menu_items_mirror(wxMenu* menu) return; append_menu_item(mirror_menu, wxID_ANY, _L("Along X axis"), _L("Mirror along the X axis"), - [](wxCommandEvent&) { plater()->mirror(X); }, "", menu); + [](wxCommandEvent&) { plater()->mirror(X); }, "menu_mirror_x", menu); append_menu_item(mirror_menu, wxID_ANY, _L("Along Y axis"), _L("Mirror along the Y axis"), - [](wxCommandEvent&) { plater()->mirror(Y); }, "", menu); + [](wxCommandEvent&) { plater()->mirror(Y); }, "menu_mirror_y", menu); append_menu_item(mirror_menu, wxID_ANY, _L("Along Z axis"), _L("Mirror along the Z axis"), - [](wxCommandEvent&) { plater()->mirror(Z); }, "", menu); + [](wxCommandEvent&) { plater()->mirror(Z); }, "menu_mirror_z", menu); append_submenu(menu, mirror_menu, wxID_ANY, _L("Mirror"), _L("Mirror object"), "", []() { return plater()->can_mirror(); }, m_parent); @@ -1272,10 +1283,10 @@ void MenuFactory::create_object_menu() return; append_menu_item(split_menu, wxID_ANY, _L("To objects"), _L("Split the selected object into multiple objects"), - [](wxCommandEvent&) { plater()->split_object(); }, "split_objects", &m_object_menu, + [](wxCommandEvent&) { plater()->split_object(); }, "menu_split_objects", &m_object_menu, []() { return plater()->can_split(true); }, m_parent); append_menu_item(split_menu, wxID_ANY, _L("To parts"), _L("Split the selected object into multiple parts"), - [](wxCommandEvent&) { plater()->split_volume(); }, "split_parts", &m_object_menu, + [](wxCommandEvent&) { plater()->split_volume(); }, "menu_split_parts", &m_object_menu, []() { return plater()->can_split(false); }, m_parent); append_submenu(&m_object_menu, split_menu, wxID_ANY, _L("Split"), _L("Split the selected object"), "", @@ -1306,10 +1317,10 @@ void MenuFactory::create_extra_object_menu() if (!split_menu) return; append_menu_item(split_menu, wxID_ANY, _L("To objects"), _L("Split the selected object into multiple objects"), - [](wxCommandEvent&) { plater()->split_object(); }, "split_objects", &m_object_menu, + [](wxCommandEvent&) { plater()->split_object(); }, "menu_split_objects", &m_object_menu, []() { return plater()->can_split(true); }, m_parent); append_menu_item(split_menu, wxID_ANY, _L("To parts"), _L("Split the selected object into multiple parts"), - [](wxCommandEvent&) { plater()->split_volume(); }, "split_parts", &m_object_menu, + [](wxCommandEvent&) { plater()->split_volume(); }, "menu_split_parts", &m_object_menu, []() { return plater()->can_split(false); }, m_parent); append_submenu(&m_object_menu, split_menu, wxID_ANY, _L("Split"), _L("Split the selected object"), "", @@ -1351,7 +1362,7 @@ void MenuFactory::create_sla_object_menu() { create_common_object_menu(&m_sla_object_menu); append_menu_item(&m_sla_object_menu, wxID_ANY, _L("Split"), _L("Split the selected object into multiple objects"), - [](wxCommandEvent&) { plater()->split_object(); }, "split_objects", nullptr, + [](wxCommandEvent&) { plater()->split_object(); }, "", nullptr, []() { return plater()->can_split(true); }, m_parent); m_sla_object_menu.AppendSeparator(); @@ -1429,10 +1440,10 @@ void MenuFactory::create_bbl_part_menu() return; append_menu_item(split_menu, wxID_ANY, _L("To objects"), _L("Split the selected object into mutiple objects"), - [](wxCommandEvent&) { plater()->split_object(); }, "split_objects", menu, + [](wxCommandEvent&) { plater()->split_object(); }, "menu_split_objects", menu, []() { return plater()->can_split(true); }, m_parent); append_menu_item(split_menu, wxID_ANY, _L("To parts"), _L("Split the selected object into mutiple parts"), - [](wxCommandEvent&) { plater()->split_volume(); }, "split_parts", menu, + [](wxCommandEvent&) { plater()->split_volume(); }, "menu_split_parts", menu, []() { return plater()->can_split(false); }, m_parent); append_submenu(menu, split_menu, wxID_ANY, _L("Split"), _L("Split the selected object"), "", @@ -1686,10 +1697,10 @@ wxMenu* MenuFactory::multi_selection_menu() wxMenu* split_menu = new wxMenu(); if (split_menu) { append_menu_item(split_menu, wxID_ANY, _L("To objects"), _L("Split the selected object into multiple objects"), - [](wxCommandEvent&) { plater()->split_object(); }, "split_objects", menu, + [](wxCommandEvent&) { plater()->split_object(); }, "menu_split_objects", menu, []() { return plater()->can_split(true); }, m_parent); append_menu_item(split_menu, wxID_ANY, _L("To parts"), _L("Split the selected object into multiple parts"), - [](wxCommandEvent&) { plater()->split_volume(); }, "split_parts", menu, + [](wxCommandEvent&) { plater()->split_volume(); }, "menu_split_parts", menu, []() { return plater()->can_split(false); }, m_parent); append_submenu(menu, split_menu, wxID_ANY, _L("Split"), _L("Split the selected object"), "", From efb6cdc6db08f009ec0317445ef1ad05e1c9624f Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 1 May 2024 09:07:00 +0200 Subject: [PATCH 07/14] Ender3 v3 maximum jerk fix (#5211) * Raised maximum jerk * Raised maximum jerk (0.6 nozzle) --- .../Creality/machine/Creality Ender-3 V3 0.4 nozzle.json | 8 ++++---- .../Creality/machine/Creality Ender-3 V3 0.6 nozzle.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json index aa98469f20..4006df1fbc 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json @@ -73,12 +73,12 @@ "2.5" ], "machine_max_jerk_x": [ - "10", - "10" + "12", + "12" ], "machine_max_jerk_y": [ - "10", - "10" + "12", + "12" ], "machine_max_jerk_z": [ "2", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json index 9298ddd5ea..bb5f46780e 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json @@ -73,12 +73,12 @@ "2.5" ], "machine_max_jerk_x": [ - "10", - "10" + "12", + "12" ], "machine_max_jerk_y": [ - "10", - "10" + "12", + "12" ], "machine_max_jerk_z": [ "2", From fbdea9713fb530a61d5b383ad1945399a13f0720 Mon Sep 17 00:00:00 2001 From: Lee Jong Mun <43285072+crwusiz@users.noreply.github.com> Date: Wed, 1 May 2024 16:07:33 +0900 Subject: [PATCH 08/14] kor translation update (#5213) --- localization/i18n/ko/OrcaSlicer_ko.po | 481 +++++++++++++++++--------- 1 file changed, 323 insertions(+), 158 deletions(-) diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index 04020c93fc..dfa4ce9e98 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-01 00:42+0800\n" -"PO-Revision-Date: 2024-04-11 18:46+0900\n" +"PO-Revision-Date: 2024-05-01 04:51+0900\n" "Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply." "github.com>, crwusiz \n" "Language-Team: \n" @@ -261,7 +261,7 @@ msgid "World coordinates" msgstr "영역 좌표" msgid "Object coordinates" -msgstr "" +msgstr "개체 좌표" msgid "°" msgstr "°" @@ -1934,10 +1934,10 @@ msgid "arrange current plate" msgstr "현재 플레이트 정렬" msgid "Reload All" -msgstr "" +msgstr "모두 다시 불러오기" msgid "reload all from disk" -msgstr "" +msgstr "디스크에서 모두 다시 로드" msgid "Auto Rotate" msgstr "자동 회전" @@ -2386,7 +2386,7 @@ msgid "AMS not connected" msgstr "AMS가 연결되지 않음" msgid "Load" -msgstr "" +msgstr "불러오기" msgid "Unload" msgstr "언로드" @@ -2449,6 +2449,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"AMS 슬롯을 선택한 다음 '로드' 또는 '언로드' 버튼을 누르면 필라멘트를 자동으" +"로 로드하거나 언로드할 수 있습니다." msgid "Edit" msgstr "편집" @@ -2915,7 +2917,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "섀시 뒷면에 필라멘트를 장착한 상태에서 출력" msgid "Current Cabin humidity" -msgstr "" +msgstr "현재 기내 습도" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2923,6 +2925,9 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"건조제가 너무 젖으면 교체하세요. 뚜껑이 열려 있거나 건조제 팩을 교체한 경우, " +"습기를 흡수하는 데 몇 시간이 걸리는 경우, 낮은 온도로 인해 공정이 느려지는 경" +"우 등에는 표시기가 정확하게 표시되지 않을 수 있습니다." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2975,10 +2980,10 @@ msgstr "" "(현재 동일한 브랜드, 재질, 색상의 소모품 자동 공급 지원)" msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "AMS 설정" @@ -2997,6 +3002,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"참고: 출력 중에 새 필라멘트를 삽입하면 출력가 완료될 때까지 AMS가 자동으로 정" +"보를 읽지 않습니다." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3046,12 +3053,14 @@ msgstr "" "로 이동합니다" msgid "Air Printing Detection" -msgstr "" +msgstr "에어 프린팅 감지" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"막힘 및 필라멘트 연삭을 감지하여 출력를 즉시 중단하여 시간과 필라멘트를 절약" +"합니다." msgid "File" msgstr "파일" @@ -3129,10 +3138,10 @@ msgid "Running post-processing scripts" msgstr "사후 처리 스크립트 실행중" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "성공적으로 실행된 후처리 스크립트" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "G코드를 내보내는 동안 알 수 없는 오류가 발생했습니다." #, boost-format msgid "" @@ -3140,6 +3149,8 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"임시 G코드를 출력 G코드로 복사하지 못했습니다. SD 카드가 쓰기 잠겨 있나요?\n" +"오류 메시지입니다: %1%" #, boost-format msgid "" @@ -3147,28 +3158,37 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"임시 G코드를 출력 G코드로 복사하지 못했습니다. 대상 장치에 문제가 있을 수 있" +"으니 다시 내보내거나 다른 장치를 사용해 보세요. 손상된 출력 G코드는 %1%.tmp" +"에 있습니다." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"선택한 대상 폴더로 복사한 후 G코드의 이름을 바꾸지 못했습니다. 현재 경로는 " +"%1%.tmp입니다. 내보내기를 다시 시도하세요." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"임시 G코드의 복사가 완료되었지만 복사 확인 중에 %1%의 원본 코드를 열 수 없습" +"니다. 출력 G-코드는 %2%.tmp에 있습니다." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"임시 G코드 복사가 완료되었지만 복사 확인 중에 내보낸 코드를 열 수 없습니다. " +"출력 G-코드는 %1%.tmp에 있습니다." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "%1%로 내보낸 G코드 파일" msgid "Unknown error when export G-code." msgstr "G코드를 내보낼 때 알 수 없는 오류가 발생했습니다." @@ -3258,15 +3278,15 @@ msgstr "베드 모양" msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" -msgstr "" +msgstr "권장 최저 온도는 190도 미만 또는 권장 최고 온도는 300도 이상입니다.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" -msgstr "" +msgstr "권장 최저 온도는 권장 최고 온도보다 높을 수 없습니다.\n" msgid "Please check.\n" -msgstr "" +msgstr "확인해 보세요.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3657,7 +3677,7 @@ msgid "Slicing State" msgstr "슬라이싱 상태" msgid "Print Statistics" -msgstr "통계 인쇄" +msgstr "통계 출력" msgid "Objects Info" msgstr "개체 정보" @@ -3709,7 +3729,7 @@ msgstr "매개변수 유효성 검사" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "값 %s이 범위를 벗어났습니다. 유효한 범위는 %d에서 %d까지입니다." msgid "Value is out of range." msgstr "값이 범위를 벗어났습니다." @@ -3900,10 +3920,10 @@ msgid "Normal mode" msgstr "일반 모드" msgid "Total Filament" -msgstr "" +msgstr "총 필라멘트" msgid "Model Filament" -msgstr "" +msgstr "모델 필라멘트" msgid "Prepare time" msgstr "준비 시간" @@ -3999,7 +4019,7 @@ msgid "Spacing" msgstr "간격" msgid "0 means auto spacing." -msgstr "" +msgstr "0은 자동 간격을 의미합니다." msgid "Auto rotate for arrangement" msgstr "자동 회전 후 정렬" @@ -4147,7 +4167,7 @@ msgid "Go Live" msgstr "실시간" msgid "Liveview Retry" -msgstr "" +msgstr "라이브뷰 재시도" msgid "Resolution" msgstr "해상도" @@ -4211,7 +4231,7 @@ msgid "Device" msgstr "장치" msgid "Multi-device" -msgstr "" +msgstr "멀티 디바이스" msgid "Project" msgstr "프로젝트" @@ -4253,7 +4273,7 @@ msgid "Send all" msgstr "모두 전송" msgid "Send to Multi-device" -msgstr "" +msgstr "여러 장치로 보내기" msgid "Keyboard Shortcuts" msgstr "키보드 단축키" @@ -4666,45 +4686,49 @@ msgid "The device cannot handle more conversations. Please retry later." msgstr "장치에서 더 많은 대화를 처리할 수 없습니다. 나중에 다시 시도해 주세요." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" +msgstr "플레이어가 오작동합니다. 시스템 플레이어를 다시 설치하세요." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"플레이어가 로드되지 않았습니다. 다시 시도하려면 '재생' 버튼을 클릭하세요." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "프린터가 연결되어 있는지 확인하세요." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." -msgstr "" +msgstr "프린터가 현재 다운로드 중입니다. 다운로드가 완료된 후 다시 시도하세요." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "프린터 카메라가 오작동합니다." msgid "Problem occured. Please update the printer firmware and try again." -msgstr "" +msgstr "문제가 발생했습니다. 프린터 펌웨어를 업데이트하고 다시 시도하세요." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN 전용 라이브뷰가 꺼져 있습니다. 프린터 화면에서 라이브뷰를 켜십시오." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "연결할 프린터의 IP를 입력하세요." msgid "Initializing..." msgstr "초기화 중..." msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "연결에 실패했습니다. 네트워크를 확인한 후 다시 시도하세요" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"네트워크를 확인하고 다시 시도해 보세요. 문제가 지속되면 프린터를 다시 시작하" +"거나 업데이트할 수 있습니다." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "프린터가 로그아웃되어 연결할 수 없습니다." msgid "Stopped." msgstr "중지됨." @@ -4799,7 +4823,7 @@ msgid "Refresh" msgstr "새로 고침" msgid "Reload file list from printer." -msgstr "" +msgstr "프린터에서 파일 목록을 다시 로드합니다." msgid "No printers." msgstr "프린터 없음." @@ -4812,10 +4836,10 @@ msgid "Loading file list..." msgstr "파일 목록 로드 중..." msgid "No files" -msgstr "" +msgstr "파일 없음" msgid "Load failed" -msgstr "" +msgstr "로드 실패" msgid "Initialize failed (Device connection not ready)!" msgstr "초기화 실패 (장치 연결 준비 안 됨)!" @@ -4824,15 +4848,18 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"현재 펌웨어에서는 SD 카드의 파일 검색이 지원되지 않습니다. 프린터 펌웨어를 업" +"데이트하세요." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" +"초기화에 실패했습니다(저장소를 사용할 수 없습니다. SD 카드를 삽입하세요.)!" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN 연결 실패(sdcard를 볼 수 없음)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "LAN 전용 모드에서는 SD 카드의 파일 탐색이 지원되지 않습니다." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -4858,10 +4885,10 @@ msgid "Fetching model infomations ..." msgstr "모델 정보 가져오는 중..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "프린터에서 모델 정보를 가져오지 못했습니다." msgid "Failed to parse model information." -msgstr "" +msgstr "모델 정보를 구문 분석하지 못했습니다." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -4879,6 +4906,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"파일: %s\n" +"제목: %s\n" msgid "Download waiting..." msgstr "다운로드 대기 중..." @@ -4900,14 +4929,18 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"프린터를 다시 연결하는 중입니다. 작업을 즉시 완료할 수 없습니다. 나중에 다시 " +"시도해 주세요." msgid "" "Over 4 systems/handy are using remote access, you can close some and try " "again." msgstr "" +"4개 이상의 시스템/핸디가 원격 액세스를 사용하고 있습니다. 일부 시스템을 닫고 " +"다시 시도할 수 있습니다." msgid "File does not exist." -msgstr "" +msgstr "파일이 없습니다." msgid "File checksum error. Please retry." msgstr "파일 체크섬 오류입니다. 다시 시도해 주세요." @@ -5014,7 +5047,7 @@ msgid "Control" msgstr "제어" msgid "Printer Parts" -msgstr "" +msgstr "프린터 부품" msgid "Print Options" msgstr "출력 옵션" @@ -5253,27 +5286,29 @@ msgid "" "The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" +"3mf 파일 버전은 베타 버전이며 현재 OrcaSlicer 버전보다 최신 버전입니다." msgid "If you would like to try Orca Slicer Beta, you may click to" -msgstr "" +msgstr "Orca Slicer Beta를 사용해 보려면 다음을 클릭하세요" msgid "Download Beta Version" -msgstr "" +msgstr "베타 버전 다운로드" msgid "The 3mf file version is newer than the current Orca Slicer version." -msgstr "" +msgstr "3mf 파일 버전은 현재 Orca Slicer 버전보다 최신 버전입니다." msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" +"Orca Slicer를 업데이트하면 3mf 파일의 모든 기능을 활성화할 수 있습니다." msgid "Current Version: " -msgstr "" +msgstr "현재 버전: " msgid "Latest Version: " -msgstr "" +msgstr "최신 버전: " msgid "Not for now" -msgstr "" +msgstr "건너뛰기" msgid "3D Mouse disconnected." msgstr "3D 마우스가 분리됨." @@ -5459,13 +5494,13 @@ msgid "Filament Tangle Detect" msgstr "필라멘트 엉킴 감지" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "노즐 응집 감지" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "노즐에 필라멘트나 기타 이물질이 뭉쳐져 있는지 확인하세요." msgid "Nozzle Type" -msgstr "" +msgstr "노즐 유형" msgid "Stainless Steel" msgstr "스테인레스 스틸" @@ -5475,7 +5510,7 @@ msgstr "경화강" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "전역" @@ -5914,13 +5949,13 @@ msgid "prepare 3mf file..." msgstr "3mf 파일 준비..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "다운로드에 실패했습니다. 파일 형식을 알 수 없습니다." msgid "downloading project ..." msgstr "프로젝트 다운로드 중 ..." msgid "Download failed, File size exception." -msgstr "" +msgstr "다운로드에 실패했습니다. 파일 크기 예외입니다." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -5930,6 +5965,8 @@ msgid "" "Importing to Bambu Studio failed. Please download the file and manually " "import it." msgstr "" +"Bambu Studio로 가져오는 데 실패했습니다. 파일을 다운로드하여 수동으로 가져오" +"세요." msgid "Import SLA archive" msgstr "SLA 압축파일 가져오기" @@ -6013,22 +6050,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"모델 메쉬에 대해 부울 연산을 수행할 수 없습니다. 긍정적인 부분만 유지됩니다. " +"메쉬를 수정하고 재시도해 볼 수 있습니다." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "이유: \"%1%\" 부분이 비어 있습니다." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "이유: \"%1%\" 부분이 볼륨을 바인딩하지 않습니다." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "이유: 부품 \"%1%\"에 자체 교차가 있습니다." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "이유: \"%1%\"과(와) 다른 부분에는 교차점이 없습니다." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6197,19 +6236,24 @@ msgid "Units" msgstr "단위" msgid "Allow only one OrcaSlicer instance" -msgstr "" +msgstr "OrcaSlicer 인스턴스를 하나만 허용" msgid "" "On OSX there is always only one instance of app running by default. However " "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"OSX에서는 기본적으로 항상 하나의 앱 인스턴스만 실행됩니다. 그러나 명령줄에서 " +"동일한 앱의 여러 인스턴스를 실행할 수 있습니다. 그러한 경우 이 설정은 하나의 " +"인스턴스만 허용합니다." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " "same OrcaSlicer is already running, that instance will be reactivated " "instead." msgstr "" +"이 기능을 활성화하면 OrcaSlicer를 시작하고 동일한 OrcaSlicer의 다른 인스턴스" +"가 이미 실행 중일 때 해당 인스턴스가 대신 다시 활성화됩니다." msgid "Home" msgstr "홈" @@ -6221,16 +6265,19 @@ msgid "Set the page opened on startup." msgstr "시작 시 열리는 페이지를 설정합니다." msgid "Touchpad" -msgstr "" +msgstr "터치패드" msgid "Camera style" -msgstr "" +msgstr "카메라 스타일" msgid "" "Select camera navigation style.\n" "Default: LMB+move for rotation, RMB/MMB+move for panning.\n" "Touchpad: Alt+move for rotation, Shift+move for panning." msgstr "" +"카메라 탐색 스타일을 선택합니다.\n" +"기본값: 회전의 경우 LMB+이동, 패닝의 경우 RMB/MMB+이동.\n" +"터치패드: 회전하려면 Alt+이동, 패닝하려면 Shift+이동." msgid "Zoom to mouse position" msgstr "마우스 위치로 확대" @@ -6249,10 +6296,10 @@ msgstr "" "카메라 앵글을 사용합니다." msgid "Reverse mouse zoom" -msgstr "" +msgstr "역방향 마우스 줌" msgid "If enabled, reverses the direction of zoom with mouse wheel." -msgstr "" +msgstr "활성화되면 마우스 휠을 사용하여 확대/축소 방향을 반대로 바꿉니다." msgid "Show splash screen" msgstr "스플래시 화면 표시" @@ -6274,26 +6321,30 @@ msgstr "활성화하면 색상이 변경될 때마다 자동 계산됩니다." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "플러싱량: 필라멘트가 교체될 때마다 자동 계산됩니다." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "활성화하면 필라멘트가 교체될 때마다 자동 계산됩니다" msgid "Remember printer configuration" -msgstr "" +msgstr "프린터 구성 기억" msgid "" "If enabled, Orca will remember and switch filament/process configuration for " "each printer automatically." msgstr "" +"활성화된 경우 Orca는 각 프린터의 필라멘트/프로세스 구성을 자동으로 기억하고 " +"전환합니다." msgid "Multi-device Management(Take effect after restarting Studio)." -msgstr "" +msgstr "다중 장치 관리(Studio를 다시 시작한 후 적용)." msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"이 옵션을 활성화하면 동시에 여러 장치에 작업을 보내고 여러 장치를 관리할 수 " +"있습니다." msgid "Network" msgstr "네트워크" @@ -6514,16 +6565,16 @@ msgid "The selected preset is null!" msgstr "선택한 사전 설정의 값이 존재하지 않습니다!(null)" msgid "End" -msgstr "" +msgstr "끝" msgid "Customize" msgstr "사용자 정의" msgid "Other layer filament sequence" -msgstr "" +msgstr "다른 층 필라멘트 순서" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "레이어 값(>= 2)을 입력하세요." msgid "Plate name" msgstr "플레이트 이름" @@ -6535,10 +6586,10 @@ msgid "Print sequence" msgstr "출력 순서" msgid "Same as Global" -msgstr "" +msgstr "글로벌과 동일" msgid "Disable" -msgstr "" +msgstr "비활성" msgid "Spiral vase" msgstr "나선형 꽃병 모드" @@ -6820,6 +6871,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"선택한 프린터(%s)는 슬라이서(%s)에서 선택한 프린터 프로필과 호환되지 않습니" +"다." msgid "An SD card needs to be inserted to record timelapse." msgstr "타임랩스를 녹화하려면 SD 카드를 삽입해야 합니다." @@ -6882,15 +6935,17 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"슬라이스 파일의 노즐 직경이 기억된 노즐과 일치하지 않습니다. 최근에 노즐을 변" +"경한 경우 장치 > 프린터 부품으로 이동하여 설정을 변경하세요." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" -msgstr "" +msgstr "고온 재료(%s 재료)를 %s로 출력하면 노즐이 손상될 수 있습니다" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "위의 오류를 수정하십시오. 그렇지 않으면 출력를 계속할 수 없습니다." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -6923,7 +6978,7 @@ msgid "Modifying the device name" msgstr "장치 이름 수정" msgid "Bind with Pin Code" -msgstr "" +msgstr "핀 코드로 바인딩" msgid "Send to Printer SD card" msgstr "프린터 SD 카드로 보내기" @@ -6980,21 +7035,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"프린터 화면의 계정 페이지에서 핀 코드를 찾으십시오.\n" +" 그리고 아래에 핀코드를 입력하세요." msgid "Can't find Pin Code?" -msgstr "" +msgstr "핀 코드를 찾을 수 없나요?" msgid "Pin Code" -msgstr "" +msgstr "핀 코드" msgid "Binding..." -msgstr "" +msgstr "바인딩..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "프린터 화면에서 확인해주세요" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "로그인 실패. 핀코드를 확인해주세요." msgid "Log in printer" msgstr "프린터 로그인" @@ -7153,8 +7210,8 @@ msgid "" "precise dimensions or is part of an assembly, it's important to double-check " "whether this change in geometry impacts the functionality of your print." msgstr "" -"이 옵션을 활성화하면 모델의 모양이 수정됩니다. 인쇄물에 정확한 치수가 필요하" -"거나 어셈블리의 일부인 경우 이러한 형상 변경이 인쇄물의 기능에 영향을 미치는" +"이 옵션을 활성화하면 모델의 모양이 수정됩니다. 출력물에 정확한 치수가 필요하" +"거나 어셈블리의 일부인 경우 이러한 형상 변경이 출력물의 기능에 영향을 미치는" "지 다시 확인하는 것이 중요합니다." msgid "Are you sure you want to enable this option?" @@ -7189,6 +7246,9 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"실험적 기능: 플러시를 최소화하기 위해 필라멘트 교체 중에 더 먼 거리에서 필라" +"멘트를 집어넣고 절단합니다. 플러시를 눈에 띄게 줄일 수 있지만 노즐 막힘이나 " +"기타 출력 문제의 위험이 높아질 수도 있습니다." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7196,12 +7256,16 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"실험적 기능: 플러시를 최소화하기 위해 필라멘트 교체 중에 더 먼 거리에서 필라" +"멘트를 집어넣고 절단합니다. 플러시를 크게 줄일 수 있지만 노즐 막힘이나 기타 " +"출력 문제의 위험을 높일 수도 있습니다. 최신 프린터 펌웨어와 함께 사용하십시" +"오." msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add " +"Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" "툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 닦기 타워\"를 추가하는 것이 좋" "습니다\n" @@ -7677,27 +7741,35 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "사전 설정 \"%1%\"의 일부 설정을 변경했습니다. " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"수정한 사전 설정 값을 저장하거나 삭제할 수 있습니다." msgid "" "\n" "You can save or discard the preset values you have modified, or choose to " "transfer the values you have modified to the new preset." msgstr "" +"\n" +"수정한 사전 설정 값을 저장하거나 삭제하거나, 수정한 값을 새 사전 설정으로 전" +"송하도록 선택할 수 있습니다." msgid "You have previously modified your settings." -msgstr "" +msgstr "이전에 설정을 수정했습니다." msgid "" "\n" "You can discard the preset values you have modified, or choose to transfer " "the modified values to the new project" msgstr "" +"\n" +"수정한 사전 설정 값을 삭제하거나 수정된 ​​값을 새 프로젝트로 전송하도록 선택할 " +"수 있습니다" msgid "Extruders count" msgstr "압출기 수" @@ -8197,40 +8269,40 @@ msgid "Done" msgstr "완료" msgid "resume" -msgstr "" +msgstr "재개" msgid "Resume Printing" -msgstr "" +msgstr "출력 재개" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "출력 재개(결함 허용)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "출력 재개(문제 해결)" msgid "Stop Printing" -msgstr "" +msgstr "출력 중지" msgid "Check Assistant" -msgstr "" +msgstr "어시스턴트 확인" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "필라멘트 압출, 계속" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "아직 압출되지 않았습니다. 다시 시도하세요" msgid "Finished, Continue" -msgstr "" +msgstr "완료, 계속" msgid "Load Filament" msgstr "필라멘트 넣기" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "필라멘트 로드됨, 재개" msgid "View Liveview" -msgstr "" +msgstr "실시간 보기" msgid "Confirm and Update Nozzle" msgstr "노즐 확인 및 업데이트" @@ -8913,7 +8985,7 @@ msgid "Printer preset names" msgstr "프린터 사전 설정 이름" msgid "Use 3rd-party print host" -msgstr "타사 인쇄 호스트 사용" +msgstr "타사 출력 호스트 사용" msgid "Allow controlling BambuLab's printer through 3rd party print hosts" msgstr "타사 프린트 호스트를 통해 밤부랩의 프린터 제어 허용" @@ -9098,13 +9170,13 @@ msgid "First layer print sequence" msgstr "첫 레이어 출력 순서" msgid "Other layers print sequence" -msgstr "" +msgstr "다른 레이어 출력 순서" msgid "The number of other layers print sequence" -msgstr "" +msgstr "다른 레이어 수 출력 순서" msgid "Other layers filament sequence" -msgstr "" +msgstr "다른 층 필라멘트 순서" msgid "This G-code is inserted at every layer change before lifting z" msgstr "이 G코드는 Z올리기 전에 모든 레이어 변경에 삽입됩니다" @@ -9378,7 +9450,7 @@ msgid "" "2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" "3. Sacrificial Layer: A full sacrificial bridge layer is created." msgstr "" -"이 옵션은 카운터보어 구멍에 대한 브릿지를 생성하여 지지대 없이 인쇄할 수 있도" +"이 옵션은 카운터보어 구멍에 대한 브릿지를 생성하여 지지대 없이 출력할 수 있도" "록 합니다. 사용 가능한 모드는 다음과 같습니다.\n" "1. 없음: 브릿지가 생성되지 않습니다.\n" "2. 부분적으로 브릿지됨: 지원되지 않는 영역의 일부만 브릿지됩니다.\n" @@ -9534,7 +9606,7 @@ msgid "Intra-layer order" msgstr "레이어 내 순서" msgid "Print order within a single layer" -msgstr "단일 레이어 내의 인쇄 순서" +msgstr "단일 레이어 내의 출력 순서" msgid "As object list" msgstr "개체 목록으로" @@ -9673,14 +9745,14 @@ msgstr "" "이는 데 도움이 될 수 있습니다.\n" "\n" "기본적으로 작은 내부 브릿지는 필터링되고 내부 솔리드 채우기는 희박한 채우기 " -"위에 직접 인쇄됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 크게 " -"저하시키지 않고 인쇄 속도를 높입니다.\n" +"위에 직접 출력됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 크게 " +"저하시키지 않고 출력 속도를 높입니다.\n" "\n" "그러나 특히 너무 낮은 희박 채우기 밀도가 사용되는 심하게 기울어지거나 곡선 모" "델에서는 지지되지 않는 고체 채우기가 말려 베개 현상이 발생할 수 있습니다.\n" "\n" "이 옵션을 활성화하면 약간 지원되지 않는 내부 솔리드 채우기 위에 내부 브릿지 " -"레이어가 인쇄됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 제어합" +"레이어가 출력됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 제어합" "니다.\n" "\n" "비활성화됨 - 이 옵션을 비활성화합니다. 이는 기본 동작이며 대부분의 경우 잘 작" @@ -9964,10 +10036,10 @@ msgid "" msgstr "압출기 주변의 회피 반경. 개체별 출력에서 충돌 방지에 사용됩니다." msgid "Nozzle height" -msgstr "" +msgstr "노즐 높이" msgid "The height of nozzle tip." -msgstr "" +msgstr "노즐 팁의 높이." msgid "Bed mesh min" msgstr "배드 메쉬 최소" @@ -9982,8 +10054,8 @@ msgid "" "your printer manufacturer. The default setting is (-99999, -99999), which " "means there are no limits, thus allowing probing across the entire bed." msgstr "" -"이 옵션은 허용되는 배드 메쉬 영역의 최소 지점을 설정합니다. 프로브의 XY 오프" -"셋으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트" +"이 옵션은 허용되는 배드 메쉬 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋" +"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트" "가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절" "하게 설정해야 합니다. OrcaSlicer는adaptive_bed_mesh_min/" "adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니" @@ -10004,8 +10076,8 @@ msgid "" "your printer manufacturer. The default setting is (99999, 99999), which " "means there are no limits, thus allowing probing across the entire bed." msgstr "" -"이 옵션은 허용되는 침대 메쉬 영역의 최대 지점을 설정합니다. 프로브의 XY 오프" -"셋으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트" +"이 옵션은 허용되는 침대 메쉬 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋" +"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트" "가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절" "하게 설정해야 합니다. OrcaSlicer는adaptive_bed_mesh_min/" "adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니" @@ -10040,7 +10112,7 @@ msgid "Only used as a visual help on UI" msgstr "UI의 시각적 도움말로만 사용됨" msgid "Extruder offset" -msgstr "압출기 오프셋" +msgstr "압출기 옵셋" msgid "Flow ratio" msgstr "유량 비율" @@ -10409,7 +10481,7 @@ msgid "Lightning" msgstr "번개" msgid "Cross Hatch" -msgstr "" +msgstr "크로스 해치" msgid "Sparse infill anchor length" msgstr "드문 채우기 고정점 길이" @@ -10602,10 +10674,10 @@ msgstr "팬 최대 속도 레이어" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" " "의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 " @@ -10681,13 +10753,16 @@ msgstr "" "야 합니다" msgid "Precise Z height" -msgstr "" +msgstr "정확한 Z 높이" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"슬라이싱 후 객체의 정확한 z 높이를 얻으려면 이 옵션을 활성화하세요. 마지막 " +"몇 레이어의 레이어 높이를 미세 조정하여 정확한 개체 높이를 얻습니다. 이는 실" +"험적인 매개변수입니다." msgid "Arc fitting" msgstr "원호 맞춤" @@ -11301,7 +11376,7 @@ msgid "" "cooling is enabled." msgstr "" "더 나은 레이어 냉각을 위해 속도를 낮추는 경우 위의 최소 레이어 시간을 유지하" -"기 위해 프린터가 느려지는 최소 인쇄 속도입니다." +"기 위해 프린터가 느려지는 최소 출력 속도입니다." msgid "Nozzle diameter" msgstr "노즐 직경" @@ -11576,7 +11651,7 @@ msgstr "" "를 뒤로 당깁니다. 후퇴를 비활성화하려면 0을 설정하세요" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "절단 시 긴 후퇴(실험적)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11584,14 +11659,17 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"실험적 기능. 퍼지를 최소화하기 위해 변경하는 동안 더 먼 거리에서 필라멘트를 " +"집어넣고 절단합니다. 이렇게 하면 플러시가 크게 줄어들지만 노즐 막힘이나 기타 " +"출력 문제가 발생할 위험이 높아질 수도 있습니다." msgid "Retraction distance when cut" -msgstr "" +msgstr "절단 시 후퇴 거리" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" -msgstr "" +msgstr "실험적 특징.필라멘트 교환시 절단 전 후퇴길이" msgid "Z hop when retract" msgstr "후퇴 시 Z 올리기" @@ -11726,7 +11804,7 @@ msgstr "설정된 남은 출력 시간 비활성화" msgid "" "Disable generating of the M73: Set remaining print time in the final gcode" -msgstr "M73 생성 비활성화: 최종 G코드에 남은 인쇄 시간 설정" +msgstr "M73 생성 비활성화: 최종 G코드에 남은 출력 시간 설정" msgid "Seam position" msgstr "솔기 위치" @@ -11830,8 +11908,8 @@ msgid "" "percentage (e.g., 80%), the speed is calculated based on the respective " "outer or inner wall speed. The default value is set to 100%." msgstr "" -"이 옵션은 스카프 조인트의 인쇄 속도를 설정합니다. 스카프 조인트를 느린 속도" -"(100mm/s 미만)로 인쇄하는 것이 좋습니다. 또한 설정 속도가 외벽 또는 내벽의 속" +"이 옵션은 스카프 조인트의 출력 속도를 설정합니다. 스카프 조인트를 느린 속도" +"(100mm/s 미만)로 출력하는 것이 좋습니다. 또한 설정 속도가 외벽 또는 내벽의 속" "도와 크게 다른 경우 '압출 속도 평탄화'를 활성화하는 것이 좋습니다. 여기에 지" "정된 속도가 외부 또는 내부 벽의 속도보다 높을 경우 프린터는 기본적으로 두 가" "지 속도 중 더 느린 속도로 설정됩니다. 백분율(예: 80%)로 지정되면 속도는 각각" @@ -11919,13 +11997,13 @@ msgid "" "print order as in these modes it is more likely an external perimeter is " "printed immediately after a deretraction move." msgstr "" -"외부/내부 또는 내부/외부/내부 벽 인쇄 순서로 인쇄할 때 외부 둘레 시작 부분에" +"외부/내부 또는 내부/외부/내부 벽 출력 순서로 출력할 때 외부 둘레 시작 부분에" "서 잠재적인 과잉 압출의 가시성을 최소화하기 위해 외부 둘레 시작 부분에서 내부" "에 후퇴가 약간 수행됩니다. 이렇게 하면 압출에 대한 모든 잠재력이 외부 표면에" "서 숨겨집니다.\n" "\n" -"외부/내부 또는 내부/외부/내부 벽 인쇄 순서로 인쇄할 때 유용합니다. 이러한 모" -"드에서는 후퇴 이동 직후 외부 둘레가 인쇄될 가능성이 더 높기 때문입니다." +"외부/내부 또는 내부/외부/내부 벽 출력 순서로 출력할 때 유용합니다. 이러한 모" +"드에서는 후퇴 이동 직후 외부 둘레가 출력될 가능성이 더 높기 때문입니다." msgid "Wipe speed" msgstr "닦기 속도" @@ -12135,7 +12213,7 @@ msgid "Close holes" msgstr "구멍 닫기" msgid "Z offset" -msgstr "Z 오프셋" +msgstr "Z 옵셋" msgid "" "This value will be added (or subtracted) from all the Z coordinates in the " @@ -12932,8 +13010,8 @@ msgid "" "top-surface. 'One wall threshold' is only visibile if this setting is set " "above the default value of 0.5, or if single-wall top surfaces is enabled." msgstr "" -"짧고 닫히지 않은 벽이 인쇄되는 것을 방지하려면 이 값을 조정하십시오. 이로 인" -"해 인쇄 시간이 늘어날 수 있습니다. 값이 높을수록 더 많은 벽과 긴 벽이 제거됩" +"짧고 닫히지 않은 벽이 출력되는 것을 방지하려면 이 값을 조정하십시오. 이로 인" +"해 출력 시간이 늘어날 수 있습니다. 값이 높을수록 더 많은 벽과 긴 벽이 제거됩" "니다.\n" "\n" "참고: 모델 외부의 시각적 틈을 방지하기 위해 하단 및 상단 표면은 이 값의 영향" @@ -13085,13 +13163,13 @@ msgstr "현재 개체 인덱스" msgid "" "Specific for sequential printing. Zero-based index of currently printed " "object." -msgstr "순차 인쇄에만 해당됩니다. 현재 인쇄된 개체의 0 기반 인덱스입니다." +msgstr "순차 출력에만 해당됩니다. 현재 출력된 개체의 0 기반 인덱스입니다." msgid "Has wipe tower" msgstr "와이프 타워 있음" msgid "Whether or not wipe tower is being generated in the print." -msgstr "인쇄물에 와이프타워가 생성되는지 여부입니다." +msgstr "출력물에 와이프타워가 생성되는지 여부입니다." msgid "Initial extruder" msgstr "초기 압출기" @@ -13100,7 +13178,7 @@ msgid "" "Zero-based index of the first extruder used in the print. Same as " "initial_tool." msgstr "" -"인쇄에 사용된 첫 번째 압출기의 0 기반 인덱스입니다. 초기 도구와 동일합니다." +"출력에 사용된 첫 번째 압출기의 0 기반 인덱스입니다. 초기 도구와 동일합니다." msgid "Initial tool" msgstr "초기 도구" @@ -13109,13 +13187,13 @@ msgid "" "Zero-based index of the first extruder used in the print. Same as " "initial_extruder." msgstr "" -"인쇄에 사용된 첫 번째 압출기의 0 기반 인덱스입니다. 초기_압출기와 동일합니다." +"출력에 사용된 첫 번째 압출기의 0 기반 인덱스입니다. 초기_압출기와 동일합니다." msgid "Is extruder used?" msgstr "압출기를 사용하나요?" msgid "Vector of bools stating whether a given extruder is used in the print." -msgstr "특정 압출기가 인쇄에 사용되는지 여부를 나타내는 값 입니다." +msgstr "특정 압출기가 출력에 사용되는지 여부를 나타내는 값 입니다." msgid "Volume per extruder" msgstr "압출기당 부피" @@ -13127,7 +13205,7 @@ msgid "Total toolchanges" msgstr "총 도구 변경" msgid "Number of toolchanges during the print." -msgstr "인쇄 중 도구 교환 횟수." +msgstr "출력 중 도구 교환 횟수." msgid "Total volume" msgstr "총량" @@ -13152,25 +13230,25 @@ msgid "" "Total weight of the print. Calculated from filament_density value in " "Filament Settings." msgstr "" -"인쇄물의 총 무게입니다. 필라멘트 설정의 filment_density 값에서 계산됩니다." +"출력물의 총 무게입니다. 필라멘트 설정의 filment_density 값에서 계산됩니다." msgid "Total layer count" msgstr "총 레이어 수" msgid "Number of layers in the entire print." -msgstr "전체 인쇄의 레이어 수입니다." +msgstr "전체 출력의 레이어 수입니다." msgid "Number of objects" msgstr "개체 수" msgid "Total number of objects in the print." -msgstr "인쇄물의 총 개체 수입니다." +msgstr "출력물의 총 개체 수입니다." msgid "Number of instances" msgstr "인스턴스 수" msgid "Total number of object instances in the print, summed over all objects." -msgstr "모든 개체에 대해 합산된 인쇄물의 총 개체 인스턴스 수입니다." +msgstr "모든 개체에 대해 합산된 출력물의 총 개체 인스턴스 수입니다." msgid "Scale per object" msgstr "개체당 크기 조정" @@ -13220,13 +13298,13 @@ msgid "Size of the first layer bounding box" msgstr "첫 번째 레이어 경계 상자의 크기" msgid "Bottom-left corner of print bed bounding box" -msgstr "인쇄 베드 경계 상자의 왼쪽 하단 모서리" +msgstr "출력 베드 경계 상자의 왼쪽 하단 모서리" msgid "Top-right corner of print bed bounding box" -msgstr "인쇄 베드 경계 상자의 오른쪽 상단 모서리" +msgstr "출력 베드 경계 상자의 오른쪽 상단 모서리" msgid "Size of the print bed bounding box" -msgstr "인쇄 베드 경계 상자의 크기" +msgstr "출력 베드 경계 상자의 크기" msgid "Timestamp" msgstr "타임스탬프" @@ -13244,10 +13322,10 @@ msgid "Minute" msgstr "분" msgid "Print preset name" -msgstr "사전 설정 이름 인쇄" +msgstr "사전 설정 이름 출력" msgid "Name of the print preset used for slicing." -msgstr "슬라이스에 사용되는 인쇄 사전 설정의 이름입니다." +msgstr "슬라이스에 사용되는 출력 사전 설정의 이름입니다." msgid "Filament preset name" msgstr "필라멘트 사전 설정 이름" @@ -13283,13 +13361,13 @@ msgstr "레이어 z" msgid "" "Height of the current layer above the print bed, measured to the top of the " "layer." -msgstr "레이어 상단까지 측정된 인쇄 베드 위의 현재 레이어 높이입니다." +msgstr "레이어 상단까지 측정된 출력 베드 위의 현재 레이어 높이입니다." msgid "Maximal layer z" msgstr "최대 레이어 z" msgid "Height of the last layer above the print bed." -msgstr "인쇄 베드 위의 마지막 레이어 높이입니다." +msgstr "출력 베드 위의 마지막 레이어 높이입니다." msgid "Filament extruder ID" msgstr "필라멘트 압출기 ID" @@ -13410,7 +13488,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: 구문 분석에 실패" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "obj에 mtl 로드: 구문 ​​분석에 실패했습니다" msgid "The file contains polygons with more than 4 vertices." msgstr "이 파일에는 꼭지점이 4개 이상인 다각형이 포함되어 있습니다." @@ -13542,6 +13620,10 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"이 기계 유형은 노즐당 16개의 기록 결과만 보유할 수 있습니다. 기존 기록 결과" +"를 삭제한 후 교정을 시작할 수 있습니다. 또는 교정을 계속할 수 있지만 새로운 " +"교정 기록 결과를 생성할 수는 없습니다.\n" +"그래도 교정을 계속하시겠습니까?" msgid "Connecting to printer..." msgstr "프린터에 연결하는 중..." @@ -13558,12 +13640,16 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"동일한 이름을 가진 기록 교정 결과가 이미 있습니다: %s. 동일한 이름의 결과 중 " +"하나만 저장됩니다. 과거 결과를 재정의하시겠습니까?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"이 기계 유형은 노즐당 %d개의 기록 결과만 보유할 수 있습니다. 이 결과는 저장되" +"지 않습니다." msgid "Internal Error" msgstr "내부 오류" @@ -13909,7 +13995,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "동적 유량 교정 결과" msgid "New" -msgstr "" +msgstr "새로운" msgid "No History Result" msgstr "기록 결과 없음" @@ -13925,19 +14011,19 @@ msgstr "실행" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "이 기계 유형은 노즐당 %d개의 기록 결과만 보유할 수 있습니다." msgid "Edit Flow Dynamics Calibration" msgstr "동적 유량 교정 편집" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "새로운 흐름 동적 교정" msgid "Ok" -msgstr "" +msgstr "확인" msgid "The filament must be selected." -msgstr "" +msgstr "필라멘트를 선택해야 합니다." msgid "Network lookup" msgstr "네트워크 조회" @@ -14334,6 +14420,9 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"생성한 필라멘트 이름 %s이(가) 이미 존재합니다.\n" +"계속 생성하면 생성된 사전 설정이 전체 이름과 함께 표시됩니다. 계속하시겠습니" +"까?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "다음과 같이 일부 기존 사전 설정을 생성하지 못했습니다.\n" @@ -14346,8 +14435,8 @@ msgstr "" "다시 작성하시겠습니까?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you " +"selected\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n" @@ -14549,6 +14638,9 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"필요한 경우 필라멘트 설정으로 이동하여 사전 설정을 편집하세요.\n" +"노즐 온도, 핫베드 온도 및 최대 체적 속도는 출력 품질에 큰 영향을 미칩니다. 신" +"중하게 설정해 주세요." msgid "" "\n" @@ -14558,6 +14650,11 @@ msgid "" "page. \n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" +"\n" +"\n" +"Studio에서는 사용자 사전 설정 동기화 기능이 활성화되어 있지 않아 장치 페이지" +"에서 필라멘트 설정이 실패할 수 있음을 감지했습니다.\n" +"동기화 기능을 활성화하려면 \"사용자 사전 설정 동기화\"를 클릭하세요." msgid "Printer Setting" msgstr "프린터 설정" @@ -14664,7 +14761,7 @@ msgid "Please select a type you want to export" msgstr "내보내려는 유형을 선택하세요" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "임시 폴더를 생성하지 못했습니다. 구성 내보내기를 다시 시도해 보세요." msgid "Edit Filament" msgstr "필라멘트 편집" @@ -14950,30 +15047,41 @@ msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"레이어 높이가 작기 때문에 레이어 라인이 거의 무시할 수 있고 출력 품질이 높습" +"니다. 대부분의 일반적인 출력 케이스에 적합합니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 속도와 가속도가 낮고 성긴 채우기 패턴" +"은 자이로이드입니다. 따라서 출력 품질은 훨씬 높아지지만 출력 시간은 훨씬 길어" +"집니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 약간 더 크고 레이어 라인" +"이 거의 무시할 수 있으며 출력 시간이 약간 짧아집니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 선이 약간 " +"눈에 띄지만 출력 시간은 더 짧아집니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인이 " +"거의 보이지 않고 출력 품질이 높아지지만 출력 시간은 단축됩니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14981,12 +15089,17 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 라인이 더 작고 속도와 가속도가 " +"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 선이 거의 보이지 않" +"고 출력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인이 " +"최소화되고 출력 품질이 높아지지만 출력 시간은 단축됩니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14994,35 +15107,49 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 라인이 더 작고 속도와 가속도가 " +"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 라인이 최소화되고 " +"출력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"이는 일반적인 레이어 높이를 가지며 일반적인 레이어 선과 출력 품질을 가져옵니" +"다. 대부분의 일반적인 출력 케이스에 적합합니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하여 더 많은 벽 루프와 더 높은 성긴 채우기 " +"밀도를 갖습니다. 따라서 출력 강도는 높아지지만 필라멘트 소비가 늘어나고 출력 " +"시간이 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 더 " +"뚜렷해지고 출력 품질이 낮아지지만 출력 시간은 약간 짧아집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 더 " +"뚜렷해지고 출력 품질이 낮아지지만 출력 시간은 짧아집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선이 덜 " +"뚜렷하고 출력 품질이 높아지지만 출력 시간은 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15030,12 +15157,17 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작고 속도와 가속도가 " +"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 선이 덜 뚜렷해지고 " +"출력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아 레이어 라인이 거" +"의 무시할 수 있고 출력 품질이 높아지지만 출력 시간은 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15043,64 +15175,91 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작고 속도와 가속도가 " +"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 라인은 거의 무시할 " +"수 있고 출력 품질은 훨씬 높지만 출력 시간은 훨씬 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인을 " +"거의 무시할 수 있고 출력 시간이 길어집니다." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"레이어 높이가 커서 레이어 선이 뚜렷이 보이고 출력 품질과 출력 시간이 보통입니" +"다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"0.6mm 노즐의 기본 프로파일과 비교하여 더 많은 벽 루프와 더 높은 성긴 채우기 " +"밀도를 갖습니다. 따라서 출력 강도는 높아지지만 필라멘트 소비가 늘어나고 출력 " +"시간이 길어집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 더 " +"뚜렷해지고 출력 품질이 낮아지지만 일부 출력의 경우 출력 시간이 짧아집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 훨" +"씬 더 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 짧" +"아집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선이 덜 " +"뚜렷해지고 출력 품질이 약간 높아지지만 출력 시간은 길어집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선이 덜 " +"뚜렷하고 출력 품질이 높아지지만 출력 시간이 길어집니다." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"레이어 높이가 매우 커서 레이어 선이 매우 뚜렷하고 출력 품질이 낮으며 일반적" +"인 출력 시간이 소요됩니다." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 매" +"우 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 짧아집" +"니다." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 훨씬 더 크고 레이어 라인" +"이 매우 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 " +"훨씬 짧아집니다." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -15108,12 +15267,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 약간 더 작아서 약간 적지" +"만 여전히 뚜렷한 레이어 라인이 나타나고 출력 품질이 약간 높아지지만 일부 출력" +"의 경우 출력 시간이 길어집니다." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선은 적" +"지만 여전히 뚜렷하고 출력 품질은 약간 높지만 일부 출력의 경우 출력 시간이 길" +"어집니다." msgid "Connected to Obico successfully!" msgstr "Obico에 성공적으로 연결되었습니다!" @@ -15822,8 +15987,8 @@ msgstr "" #~ msgstr "드문 레이어 없음(실험적)" #~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" -#~ "\". \n" +#~ "We would rename the presets as \"Vendor Type Serial @printer you " +#~ "selected\". \n" #~ "To add preset for more prinetrs, Please go to printer selection" #~ msgstr "" #~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n" From 4400220d7931b83ee4bf4e8e6107b2b6d3974fb1 Mon Sep 17 00:00:00 2001 From: KrisMorr <154343071+KrisMorr@users.noreply.github.com> Date: Wed, 1 May 2024 09:08:17 +0200 Subject: [PATCH 09/14] Polish translation update (#5215) fix for tweak unsaved changes message --- localization/i18n/pl/OrcaSlicer_pl.po | 79 +++++++++++++++++---------- 1 file changed, 51 insertions(+), 28 deletions(-) diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index fb4f19c32b..1b9d28651c 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -1951,10 +1951,10 @@ msgid "arrange current plate" msgstr "ustaw bieżącą płytę" msgid "Reload All" -msgstr "" +msgstr "Przeładuj wszystko" msgid "reload all from disk" -msgstr "" +msgstr "Przeładuj z dysku" msgid "Auto Rotate" msgstr "Automatyczna rotacja" @@ -3218,7 +3218,7 @@ msgid "Successfully executed post-processing script" msgstr "Pomyślnie wykonano skrypt post-processingu" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Nieznany błąd podczas eksportowania kodu G." #, boost-format msgid "" @@ -3226,6 +3226,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Kopiowanie tymczasowego G-code do wyjściowego pliku G-code nie powiodło się. " +"Być może karta SD jest zablokowana do zapisu?\n" +"Komunikat błędu: %1%" #, boost-format msgid "" @@ -3233,28 +3236,40 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"Kopiowanie tymczasowego G-code do wyjściowego pliku G-code nie powiodło się. " +"Może być problem z urządzeniem docelowym, spróbuj ponownie wyeksportować lub " +"użyć innego urządzenia. Uszkodzony plik wyjściowego G-code znajduje się w " +"pliku %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"Zmiana nazwy G-code po skopiowaniu pliku do folderu docelowego nie powiodła " +"się. Bieżąca ścieżka to %1%.tmp. Spróbuj ponownie go wyeksportować." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"Kopiowanie tymczasowego G-code zakończono, ale oryginalny G-code w " +"lokalizacji %1% nie mógł być otwarty podczas sprawdzania kopii. Wygenerowany " +"G-code znajduje się w lokalizacji %2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"Kopiowanie tymczasowego G-code zakończono, ale wyeksportowany G-code nie " +"mógł być otwarty podczas sprawdzania kopii. Wygenerowany G-code znajduje się " +"w lokalizacji %1%.tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Plik G-code został wyeksportowany do %1%" msgid "Unknown error when export G-code." msgstr "Nieznany błąd podczas eksportowania kodu G." @@ -7461,8 +7476,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add " +"Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" "Podczas nagrywania timelapse'a bez głowicy narzędziowej zaleca się dodanie " "\"Timelaps - Wieża Czyszcząca\" \n" @@ -7966,21 +7981,29 @@ msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"Możesz zapisać lub odrzucić zmienione wartości w profilu." msgid "" "\n" "You can save or discard the preset values you have modified, or choose to " "transfer the values you have modified to the new preset." msgstr "" +"\n" +"Możesz zapisać lub odrzucić zmodyfikowane wartości profilu, lub kontynuować " +"ich używanie w nowym profilu." msgid "You have previously modified your settings." -msgstr "" +msgstr "Wcześniej zmodyfikowałeś swoje ustawienia." msgid "" "\n" "You can discard the preset values you have modified, or choose to transfer " "the modified values to the new project" msgstr "" +"\n" +"Możesz zapisać lub odrzucić zmodyfikowane wartości w profilu, lub " +"kontynuować ich używanie w nowym profilu" msgid "Extruders count" msgstr "Liczba extruderów" @@ -9350,10 +9373,10 @@ msgid "" msgstr "" "Unikaj ruchów nad obrysami-\n" "Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli " -"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami" -"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować " -"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu " -"bezpośredniego." +"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad " +"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można " +"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z " +"długości ruchu bezpośredniego." msgid "mm or %" msgstr "mm lub %" @@ -9922,9 +9945,9 @@ msgid "" "quality for needle and small details" msgstr "" "Włącz tę opcję, aby zwolnić prędkość druku, aby czas końcowej warstwy nie " -"był krótszy niż próg czasu warstwy w \"Próg maksymalnej prędkości wentylatora" -"\", tak aby warstwa mogła być chłodzona przez dłuższy czas. Może to poprawić " -"jakość chłodzenia dla igieł i małych detali" +"był krótszy niż próg czasu warstwy w \"Próg maksymalnej prędkości " +"wentylatora\", tak aby warstwa mogła być chłodzona przez dłuższy czas. Może " +"to poprawić jakość chłodzenia dla igieł i małych detali" msgid "Normal printing" msgstr "Normalne drukowanie" @@ -11060,10 +11083,10 @@ msgstr "Pełna prędkość wentylatora na warstwie" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie " "\"close_fan_the_first_x_layers\" do maksymalnej na warstwie " @@ -12593,8 +12616,8 @@ msgstr "" "poklatkowy po zakończeniu drukowania. Jeśli wybrany jest tryb \"Wygładź\", " "głowica narzędziowa przesunie się nad wieżę po wydrukowaniu każdej warstwy, " "a następnie zrobi zdjęcie. Ponieważ stopiony filament może wyciekać z dyszy " -"podczas robienia zdjęcia, wieża czyszcząca jest wymagana w trybie \"Wygładź" -"\" do czyszczenia dyszy." +"podczas robienia zdjęcia, wieża czyszcząca jest wymagana w trybie " +"\"Wygładź\" do czyszczenia dyszy." msgid "Traditional" msgstr "Tradycyjny" @@ -12674,10 +12697,10 @@ msgid "" "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar" -"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć " -"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na " -"rozsądnie niskim poziomie." +"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania " +"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może " +"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej " +"wartości na rozsądnie niskim poziomie." msgid "Slicing Mode" msgstr "Tryb cięcia" @@ -15027,8 +15050,8 @@ msgstr "" "Czy chcesz go zastąpić?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you " +"selected\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nazwa profilu zostanie zmieniona na \"Producent Typ Rodzaj @nazwa drukarki, " @@ -17478,8 +17501,8 @@ msgstr "" #~ "Elevation is too low for object. Use the \"Pad around object\" feature to " #~ "print the object without elevation." #~ msgstr "" -#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu" -#~ "\", aby wydrukować model bez podniesienia." +#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół " +#~ "modelu\", aby wydrukować model bez podniesienia." #~ msgid "" #~ "The endings of the support pillars will be deployed on the gap between " From 4e1b105f17c1511865ca8ffbce2cf904ab61bdf8 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 1 May 2024 16:26:45 +0800 Subject: [PATCH 10/14] Fix a regression that cover image was missing --- src/slic3r/GUI/WebGuideDialog.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/WebGuideDialog.cpp b/src/slic3r/GUI/WebGuideDialog.cpp index d08092ecb6..fa5bd9f6ce 100644 --- a/src/slic3r/GUI/WebGuideDialog.cpp +++ b/src/slic3r/GUI/WebGuideDialog.cpp @@ -1476,7 +1476,13 @@ int GuideFrame::LoadProfileFamily(std::string strVendor, std::string strFilePath // wxString strCoverPath = wxString::Format("%s\\%s\\%s_cover.png", strFolder, strVendor, std::string(s1.mb_str())); std::string cover_file = s1 + "_cover.png"; - boost::filesystem::path cover_path = boost::filesystem::absolute(vendor_dir / cover_file).make_preferred(); + boost::filesystem::path cover_path = boost::filesystem::absolute(boost::filesystem::path(resources_dir()) / "/profiles/" / strVendor / cover_file).make_preferred(); + if (!boost::filesystem::exists(cover_path)) { + cover_path = + (boost::filesystem::absolute(boost::filesystem::path(resources_dir()) / "/web/image/printer/") / + cover_file) + .make_preferred(); + } OneModel["cover"] = cover_path.string(); OneModel["nozzle_selected"] = ""; From 004108b4b6d9ce01f60b62de3029d5eba687983b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olcay=20=C3=96REN?= <33813227+olcayoren@users.noreply.github.com> Date: Thu, 2 May 2024 15:08:26 +0300 Subject: [PATCH 11/14] Update OrcaSlicer_tr.po - TURKISH translation update (#5227) --- localization/i18n/tr/OrcaSlicer_tr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 529332d172..8c9362b178 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -2802,10 +2802,10 @@ msgstr "" "Sıcaklık" msgid "max" -msgstr "maks" +msgstr "maksimum" msgid "min" -msgstr "min" +msgstr "minimum" #, boost-format msgid "The input value should be greater than %1% and less than %2%" @@ -3240,7 +3240,7 @@ msgstr "" "Sırasını Yazdır" msgid "Origin" -msgstr "Menşei" +msgstr "Konum" msgid "Size in X and Y of the rectangular plate." msgstr "Dikdörtgen plakanın X ve Y boyutları." @@ -11601,7 +11601,7 @@ msgstr "" "etkinleştirin. G-code komut: M106 P2 S(0-255)" msgid "Min" -msgstr "Min" +msgstr "Minimum" msgid "" "The lowest printable layer height for extruder. Used tp limits the minimum " From 91d7f07d8fb38e85d90f117225605d29711399f3 Mon Sep 17 00:00:00 2001 From: yw4z Date: Thu, 2 May 2024 15:09:35 +0300 Subject: [PATCH 12/14] Fix measure gizmo "Copy to Clipboard" button icon for dark mode (#5230) --- src/imgui/imconfig.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/imgui/imconfig.h b/src/imgui/imconfig.h index aa8a061bf8..e51e1f9e14 100644 --- a/src/imgui/imconfig.h +++ b/src/imgui/imconfig.h @@ -201,14 +201,14 @@ namespace ImGui const wchar_t BlockNotifErrorIcon = 0x0835; const wchar_t ClipboardBtnDarkIcon = 0x0836; - const wchar_t PrevArrowBtnIcon = 0x0836; - const wchar_t PrevArrowHoverBtnIcon = 0x0837; - const wchar_t NextArrowBtnIcon = 0x0838; - const wchar_t NextArrowHoverBtnIcon = 0x0839; - const wchar_t OpenArrowIcon = 0x0840; - const wchar_t CollapseArrowIcon = 0x0841; - const wchar_t ExpandArrowIcon = 0x0842; - const wchar_t CompleteIcon = 0x0843; + const wchar_t PrevArrowBtnIcon = 0x0837; + const wchar_t PrevArrowHoverBtnIcon = 0x0838; + const wchar_t NextArrowBtnIcon = 0x0839; + const wchar_t NextArrowHoverBtnIcon = 0x0840; + const wchar_t OpenArrowIcon = 0x0841; + const wchar_t CollapseArrowIcon = 0x0842; + const wchar_t ExpandArrowIcon = 0x0843; + const wchar_t CompleteIcon = 0x0844; // void MyFunction(const char* name, const MyMatrix44& v); } From d2e76212b1501e0f1a0f8df4234ced83ae5ecb11 Mon Sep 17 00:00:00 2001 From: Ioannis Giannakas <59056762+igiannakas@users.noreply.github.com> Date: Thu, 2 May 2024 14:33:53 +0100 Subject: [PATCH 13/14] Fix wipe tower not showing purged filament volume for non BBL SEMM (#5223) * Fix wipe tower not showing purged filament values for non BBL SEMM --- src/libslic3r/GCode/WipeTower.cpp | 3 +++ src/libslic3r/GCode/WipeTower2.cpp | 10 ++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/GCode/WipeTower.cpp b/src/libslic3r/GCode/WipeTower.cpp index 642b07c9dd..39c603a470 100644 --- a/src/libslic3r/GCode/WipeTower.cpp +++ b/src/libslic3r/GCode/WipeTower.cpp @@ -76,6 +76,9 @@ public: m_gcode_flavor(flavor), m_filpar(filament_parameters) { + // ORCA: This class is only used by BBL printers, so set the parameter appropriately. + // This fixes an issue where the wipe tower was using BBL tags resulting in statistics for purging in the purge tower not being displayed. + GCodeProcessor::s_IsBBLPrinter = true; // adds tag for analyzer: std::ostringstream str; str << ";" << GCodeProcessor::reserved_tag(GCodeProcessor::ETags::Height) << std::to_string(m_layer_height) << "\n"; // don't rely on GCodeAnalyzer knowing the layer height - it knows nothing at priming diff --git a/src/libslic3r/GCode/WipeTower2.cpp b/src/libslic3r/GCode/WipeTower2.cpp index 3c717a063d..5dd5fa0f63 100644 --- a/src/libslic3r/GCode/WipeTower2.cpp +++ b/src/libslic3r/GCode/WipeTower2.cpp @@ -50,6 +50,9 @@ public: m_gcode_flavor(flavor), m_filpar(filament_parameters) { + // ORCA: This class is only used by non BBL printers, so set the parameter appropriately. + // This fixes an issue where the wipe tower was using BBL tags resulting in statistics for purging in the purge tower not being displayed. + GCodeProcessor::s_IsBBLPrinter = false; // adds tag for analyzer: std::ostringstream str; str << ";" << GCodeProcessor::reserved_tag(GCodeProcessor::ETags::Height) << m_layer_height << "\n"; // don't rely on GCodeAnalyzer knowing the layer height - it knows nothing at priming @@ -803,9 +806,11 @@ WipeTower::ToolChangeResult WipeTower2::tool_change(size_t tool) "; CP TOOLCHANGE START\n") .comment_with_value(" toolchange #", m_num_tool_changes + 1); // the number is zero-based - if (tool != (unsigned)(-1)) + if (tool != (unsigned)(-1)){ writer.append(std::string("; material : " + (m_current_tool < m_filpar.size() ? m_filpar[m_current_tool].material : "(NONE)") + " -> " + m_filpar[tool].material + "\n").c_str()) - .append(";--------------------\n"); + .append(";--------------------\n"); + writer.append(";" + GCodeProcessor::reserved_tag(GCodeProcessor::ETags::Wipe_Tower_Start) + "\n"); + } writer.speed_override_backup(); writer.speed_override(100); @@ -825,6 +830,7 @@ WipeTower::ToolChangeResult WipeTower2::tool_change(size_t tool) toolchange_Load(writer, cleaning_box); writer.travel(writer.x(), writer.y()-m_perimeter_width); // cooling and loading were done a bit down the road toolchange_Wipe(writer, cleaning_box, wipe_volume); // Wipe the newly loaded filament until the end of the assigned wipe area. + writer.append(";" + GCodeProcessor::reserved_tag(GCodeProcessor::ETags::Wipe_Tower_End) + "\n"); ++ m_num_tool_changes; } else toolchange_Unload(writer, cleaning_box, m_filpar[m_current_tool].material, m_filpar[m_current_tool].temperature); From 1ed6298cecb855ef6d2225e6654994ac1ad77eb3 Mon Sep 17 00:00:00 2001 From: HYzd766 <108379794+HYzd766@users.noreply.github.com> Date: Thu, 2 May 2024 21:46:40 +0800 Subject: [PATCH 14/14] Update Qidi Q1 Pro 0.4 nozzle.json (#5234) Made a display modification --- resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json index 22fc68b7ff..8d849c8dcf 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json @@ -62,9 +62,9 @@ ], "layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nLOG_Z\nG92 E0\n", "machine_end_gcode": "M141 S0\nM104 S0\nM140 S0\nG1 E-3 F1800\nG91\nG0 Z5 F600\nG90\nG0 X0 Y0 F12000\n{if max_layer_z < max_print_height / 2}G1 Z{max_print_height / 2 + 10} F600{else}G1 Z{min(max_print_height, max_layer_z + 3)}{endif}", - "machine_start_gcode": "PRINT_START BED=[first_layer_bed_temperature] HOTEND=[first_layer_temperature] CHAMBER=[chamber_temperature]\nM83\nG4 P3000\nG0 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0)} Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0)} Z5 F6000\nG0 Z[first_layer_height] F600\nG1 E3 F1800\nG1 X{(min(print_bed_max[0], first_layer_print_min[0] + 80))} E{85 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0) + 2} E{2 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0)} E{85 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0) + 85} E{83 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0) + 2} E{2 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0) + 3} E{82 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0) + 3} Z0\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0) + 6}\nG1 Z1 F600", + "machine_start_gcode": "PRINT_START BED=[first_layer_bed_temperature] HOTEND=[first_layer_temperature] CHAMBER=[chamber_temperature]\nM83\nM140 S[first_layer_bed_temperature]\nM104 S[first_layer_temperature]\nG4 P3000\nG0 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0)} Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0)} Z5 F6000\nG0 Z[first_layer_height] F600\nG1 E3 F1800\nG1 X{(min(print_bed_max[0], first_layer_print_min[0] + 80))} E{85 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0) + 2} E{2 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0)} E{85 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0) + 85} E{83 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0) + 2} E{2 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 Y{max((min(print_bed_max[1], first_layer_print_min[1] + 80) - 85),0) + 3} E{82 * 0.5 * first_layer_height * nozzle_diameter[0]} F3000\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0) + 3} Z0\nG1 X{max((min(print_bed_max[0], first_layer_print_min[0] + 80) - 85),0) + 6}\nG1 Z1 F600", "thumbnails_format": "PNG", "default_filament_profile": [ "Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle" ] -} \ No newline at end of file +}