From 1aedf8f22ca66054e34765b821184ecfe1c2fe29 Mon Sep 17 00:00:00 2001 From: ExPikaPaka <112851715+ExPikaPaka@users.noreply.github.com> Date: Wed, 20 May 2026 06:18:08 +0200 Subject: [PATCH 01/30] =?UTF-8?q?Added=20UI=20force-sync=20button=20and=20?= =?UTF-8?q?fixed=20bug=20that=20didn't=20sync=20in=20one=20case=E2=80=A6?= =?UTF-8?q?=20(#13745)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added UI force-sync button and fixed bug that didn't sync in one case and caused orange highlight * Fix sync preset race: join old thread before starting new one --------- Co-authored-by: Mykola Nahirnyi Co-authored-by: SoftFever --- src/libslic3r/Preset.cpp | 4 ++++ src/slic3r/GUI/GUI_App.cpp | 39 ++++++++++++++++++++++++++++++++---- src/slic3r/GUI/GUI_App.hpp | 2 ++ src/slic3r/GUI/MainFrame.cpp | 18 +++++++++++++++++ 4 files changed, 59 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 68f103fdc2..2c894450dd 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -2259,6 +2259,10 @@ bool PresetCollection::load_user_preset(std::string name, std::mapname == m_edited_preset.name && iter->is_dirty) { // Keep modifies when update from remote new_config.apply_only(m_edited_preset.config, m_edited_preset.config.diff(iter->config)); + } else if (iter->name == m_edited_preset.name) { + // Preset is not dirty (no local unsaved changes) — also update the edited preset + // to prevent a false "dirty" indication (orange highlight) after a silent cloud sync + m_edited_preset.config = new_config; } iter->config = new_config; iter->updated_time = cloud_update_time; diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 0339805304..aa58a2e3a1 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -6577,8 +6577,8 @@ void GUI_App::start_sync_user_preset(bool with_progress_dlg) dlg->Update(percent, _L("Loading user preset")); }); }; - cancelFn = [this, dlg]() { - return is_closing() || dlg->WasCanceled(); + cancelFn = [this, dlg, t = std::weak_ptr(m_user_sync_token)]() { + return is_closing() || dlg->WasCanceled() || t.expired(); }; finishFn = [this, dlg](bool) { CallAfter([=]{ dlg->Destroy(); }); @@ -6586,8 +6586,8 @@ void GUI_App::start_sync_user_preset(bool with_progress_dlg) } else { finishFn = [](bool) {}; // reload_settings() is now triggered from the background thread - cancelFn = [this]() { - return is_closing(); + cancelFn = [this, t = std::weak_ptr(m_user_sync_token)]() { + return is_closing() || t.expired(); }; } @@ -6819,6 +6819,37 @@ void GUI_App::stop_sync_user_preset() } } +void GUI_App::restart_sync_user_preset() +{ + if (!m_user_sync_token) { + // No sync running. If a restart helper is already in flight it will + // start the new sync once the old thread is joined — don't race it. + if (!m_restart_sync_pending) + start_sync_user_preset(true); + return; + } + + // Resetting the token signals the old thread to stop (cancelFn checks + // t.expired(), so it exits after its current HTTP request completes). + // A helper thread joins the old thread off the UI thread — no freeze — + // then starts the new sync via CallAfter once the old one is fully done. + m_user_sync_token.reset(); + m_restart_sync_pending = true; + + auto old_thread = std::move(m_sync_update_thread); + + std::thread([this, old_thread = std::move(old_thread)]() mutable { + if (old_thread.joinable()) + old_thread.join(); + m_restart_sync_pending = false; + if (!is_closing()) + CallAfter([this]() { + if (!is_closing()) + start_sync_user_preset(true); + }); + }).detach(); +} + void GUI_App::on_stealth_mode_enter() { stop_sync_user_preset(); diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index 3212c719f5..7244425cfb 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -321,6 +321,7 @@ private: boost::thread m_sync_update_thread; std::shared_ptr m_user_sync_token; + std::atomic m_restart_sync_pending {false}; bool m_is_dark_mode{ false }; bool m_adding_script_handler { false }; bool m_side_popup_status{false}; @@ -530,6 +531,7 @@ public: void sync_preset(Preset* preset); void start_sync_user_preset(bool with_progress_dlg = false); void stop_sync_user_preset(); + void restart_sync_user_preset(); void on_stealth_mode_enter(); // Bundle subscription sync diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index f4aeae01f6..d83cc1445a 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -2780,6 +2780,24 @@ void MainFrame::init_menubar_as_editor() append_submenu(fileMenu, export_menu, wxID_ANY, _L("Export"), ""); fileMenu->AppendSeparator(); + append_menu_item(fileMenu, wxID_ANY, _L("Sync Presets"), _L("Pull and apply the latest presets from OrcaCloud"), + [this](wxCommandEvent&) { + if (!wxGetApp().is_user_login()) { + MessageDialog info_dlg(this, _L("You must be logged in to sync presets from cloud."), + _L("Sync Presets"), wxOK | wxICON_INFORMATION); + info_dlg.ShowModal(); + return; + } + if (m_plater) + m_plater->get_notification_manager()->push_notification( + into_u8(_L("Syncing presets from cloud\u2026"))); + wxGetApp().restart_sync_user_preset(); + }, "", nullptr, + [this]() { + return wxGetApp().is_user_login() && !wxGetApp().app_config->get_stealth_mode(); + }, this); + + fileMenu->AppendSeparator(); #ifndef __APPLE__ append_menu_item(fileMenu, wxID_EXIT, _L("Quit"), wxString::Format(_L("Quit")), From b7f872541d277d767ae818bb0f479f75272ee826 Mon Sep 17 00:00:00 2001 From: raistlin7447 Date: Tue, 19 May 2026 23:32:53 -0500 Subject: [PATCH 02/30] Fix input_filename_base using object name instead of project name (#13753) --- src/slic3r/GUI/Plater.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index c3f62f90d4..a015c8624e 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -14839,7 +14839,8 @@ void Plater::export_gcode(bool prefer_removable) unsigned int state = this->p->update_restart_background_process(false, false); if (state & priv::UPDATE_BACKGROUND_PROCESS_INVALID) return; - default_output_file = this->p->background_process.output_filepath_for_project(""); + default_output_file = this->p->background_process.output_filepath_for_project( + into_path(this->p->get_project_filename(".3mf"))); } catch (const Slic3r::PlaceholderParserError &ex) { // Show the error with monospaced font. show_error(this, ex.what(), true); @@ -14942,7 +14943,8 @@ void Plater::export_gcode_3mf(bool export_all) unsigned int state = this->p->update_restart_background_process(false, false); if (state & priv::UPDATE_BACKGROUND_PROCESS_INVALID) return; - default_output_file = this->p->background_process.output_filepath_for_project(""); + default_output_file = this->p->background_process.output_filepath_for_project( + into_path(this->p->get_project_filename(".3mf"))); } catch (const Slic3r::PlaceholderParserError& ex) { // Show the error with monospaced font. @@ -16089,7 +16091,8 @@ void Plater::send_gcode_legacy(int plate_idx, Export3mfProgressFn proFn, bool us unsigned int state = this->p->update_restart_background_process(false, false); if (state & priv::UPDATE_BACKGROUND_PROCESS_INVALID) return; - default_output_file = this->p->background_process.output_filepath_for_project(""); + default_output_file = this->p->background_process.output_filepath_for_project( + into_path(this->p->get_project_filename(".3mf"))); } catch (const Slic3r::PlaceholderParserError& ex) { // Show the error with monospaced font. show_error(this, ex.what(), true); From 4542a1500976fd8f3d2d396d001946dba9ec04df Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Wed, 20 May 2026 19:20:09 +0800 Subject: [PATCH 03/30] fix: use bambu's network plugin (#13756) --- src/slic3r/GUI/MediaPlayCtrl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp index 0a6902e11d..3478c91fa6 100644 --- a/src/slic3r/GUI/MediaPlayCtrl.cpp +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp @@ -184,7 +184,7 @@ void MediaPlayCtrl::SetMachineObject(MachineObject* obj) && m_last_user_play + wxTimeSpan::Seconds(3) < wxDateTime::Now()) { // resend ttcode to printer if (auto agent = wxGetApp().getAgent()) - agent->get_camera_url(machine, [](auto) {}); + agent->get_camera_url(machine, [](auto) {}, wxGetApp().get_printer_cloud_provider()); m_last_user_play = wxDateTime::Now(); } return; @@ -252,7 +252,7 @@ void refresh_agora_url(char const* device, char const* dev_ver, char const* chan device2 += channel; wxGetApp().getAgent()->get_camera_url(device2, [context, callback](std::string url) { callback(context, url.c_str()); - }); + }, wxGetApp().get_printer_cloud_provider()); } void MediaPlayCtrl::Play() @@ -378,7 +378,7 @@ void MediaPlayCtrl::Play() BOOST_LOG_TRIVIAL(info) << "MediaPlayCtrl drop late ttcode for state: " << m_last_state; } }); - }); + }, wxGetApp().get_printer_cloud_provider()); } } @@ -580,7 +580,7 @@ void MediaPlayCtrl::ToggleStream() file.close(); m_streaming = true; }); - }); + }, wxGetApp().get_printer_cloud_provider()); } void MediaPlayCtrl::msw_rescale() { From 62d4344e5976f917b808810af7d77c5e3cf389e6 Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Wed, 20 May 2026 19:21:02 +0800 Subject: [PATCH 04/30] feat: Updated UI for better distinction of orca cloud and bambu cloud (#13755) * feat: Updated UI for better distinction of orca cloud and bambu cloud * refined UI --- resources/web/data/text.js | 3493 ++++++++++++++------------- resources/web/homepage/css/dark.css | 7 +- resources/web/homepage/css/home.css | 33 +- resources/web/homepage/index.html | 17 +- resources/web/homepage/js/home.js | 6 + 5 files changed, 1839 insertions(+), 1717 deletions(-) diff --git a/resources/web/data/text.js b/resources/web/data/text.js index 285b5c1a31..4a1fd7ea51 100644 --- a/resources/web/data/text.js +++ b/resources/web/data/text.js @@ -1,1709 +1,1784 @@ -var LangText = { - en: { - t1: "Welcome to Orca Slicer", - t2: "Orca Slicer will be setup in several steps. Let's start!", - t3: "User Agreement", - t4: "Disagree", - t5: "Agree", - t6: "We kindly request your help to improve everyone's printing.
Come and Join our Customer Experience Improvement Program", - t7: "Join our Customer Experience Improvement Program", - t8: "Back", - t9: "Next", - t10: "Printer Selection", - t11: "All", - t12: "Clear all", - t13: "mm nozzle", - t14: "Filament Selection", - t15: "Printer", - t16: "Filament type", - t17: "Vendor", - t18: "Error", - t19: "At least one filament must be selected.", - t20: "Do you want to use default filament ?", - t21: "Yes", - t22: "No", - t23: "Release note", - t24: "Get Started", - t25: "Finish", - t26: "Login", - t27: "Register", - t28: "Recent", - t29: "Mall", - t30: "Manual", - t31: "New Project", - t32: "Create new project", - t33: "Open Project", - t34: "hotspot", - t35: "Recently opened", - t36: "OK", - t37: "At least one printer must be selected.", - t38: "Cancel", - t39: "Confirm", - t40: "Network disconnect, please check and try again later.", - t47: "Please select your login region", - t48: "Asia-Pacific", - t49: "China", - t50: "Log out", - t52: "Skip", - t53: "Join", - t54: "In the 3D Printing community, we learn from each other's successes and failures to adjust our own slicing parameters and settings. Orca Slicer follows the same principle and uses machine learning to improve its performance from the successes and failures of the vast number of prints by our users. We are training Orca Slicer to be smarter by feeding them the real-world data. If you are willing, this service will access information from your error logs and usage logs, which may include information described in ", - t55: "Privacy Policy", - t56: ". We will not collect any Personal Data by which an individual can be identified directly or indirectly, including without limitation names, addresses, payment information, or phone numbers. By enabling this service, you agree to these terms and the statement about Privacy Policy.", - t57: "", - t58: "", - t59: ".", - t60: "Europe", - t61: "North America", - t62: "Others", - t63: "After changing the region, your account will be logged out. Please log in again later.", - t64: "Proprietary Plugins", - t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", - t66: "Full remote control", - t67: "Liveview streaming", - t68: "User data synchronization", - t69: "Install Bambu Network plug-in", - t70: "", - t71: "Downloading", - t72: "Downloading failed", - t73: "Installation successful.", - t74: "Restart", - t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", - t76: "Bambu Network plug-in not detected. Click ", - t77: "here", - t78: " to install it.", - t79: "Failed to install plug-in. ", - t80: "Try the following steps:", - t81: "1, Click ", - t82: " to open the plug-in directory", - t83: "2, Close all open Orca Slicer", - t84: "3, Delete all files under the plug-in directory", - t85: "4, Reopen Orca Slicer and install the plug-in again", - t86: "Close", - t87: "User Manual", - t88: "Remove", - t89: "Open Containing Folder", - t90: "3D Model", - t91: "Download 3D models", - t92: "Create by", - t93: "Remixed by", - t94: "Shared by", - t95: "Model Information", - t96: "Accessories", - t97: "Profile Information", - t98: "Model name", - t100: "Model description", - t101: "BOM", - t102: "Assembly Guide", - t103: "Other", - t104: "Profile name", - t105: "Profile Author", - t106: "Profile description", - t107: "Online Models", - t108: "MORE", - t109: "System Filaments", - t110: "Custom Filaments", - t111: "Create New", - t112: "Join the Program", - t113: "You may change your choice in preference anytime.", - t126: "Loading……", - orca1: "Edit Project Info", - orca2: "No model information", - orca3: "Stealth Mode", - orca4: "This stops the transmission of data to Bambu's cloud services. Users who don't use BBL machines or use LAN mode only can safely turn on this function.", - orca5: "Enable Stealth Mode.", - orca6: "Bambu Cloud", - }, - ca_ES: { - t1: "Benvingut a Orca Slicer", - t2: "Orca Slicer es configurarà en diversos passos. Comencem!", - t3: "Acord de l'Usuari", - t4: "No accepto", - t5: "Accepto", - t6: "Sol·licitem la vostra ajuda per millorar la impressió de tothom.
Vine i uneix-te al nostre Programa de Millora de l'Experiència del Client", - t7: "Uneix-te al nostre Programa de Millora de l'Experiència del Client", - t8: "Enrere", - t9: "Següent", - t10: "Selecció d'Impressora", - t11: "Totes", - t12: "Netejar tot", - t13: "mm broquet", - t14: "Selecció de Filament", - t15: "Impressora", - t16: "Tipus de filament", - t17: "Proveïdor", - t18: "Error", - t19: "S'ha de seleccionar almenys un filament.", - t20: "Vols utilitzar el filament per defecte?", - t21: "sí", - t22: "no", - t23: "Nota de llançament", - t24: "Comença", - t25: "Finalitzar", - t26: "Iniciar sessió", - t27: "Registrar", - t28: "Recent", - t29: "Botiga", - t30: "Manual", - t31: "Nou Projecte", - t32: "Crear nou projecte", - t33: "Obrir Projecte", - t34: "hotspot", - t35: "Obert recentment", - t36: "D'acord", - t37: "S'ha de seleccionar almenys una impressora.", - t38: "Cancel·lar", - t39: "Confirmar", - t40: "Desconnexió de la xarxa, si us plau comprova i intenta-ho de nou més tard.", - t47: "Si us plau selecciona la teva regió d'inici de sessió", - t48: "Àsia-Pacífic", - t49: "Xina", - t50: "Tancar sessió", - t52: "Saltar", - t53: "Unir-se", - t54: "A la comunitat d'Impressió 3D, aprenem dels èxits i fracassos dels altres per ajustar els nostres propis paràmetres i configuracions de laminació. Orca Slicer segueix el mateix principi i utilitza l'aprenentatge automàtic per millorar el seu rendiment a partir dels èxits i fracassos d'un gran nombre d'impressions dels nostres usuaris. Estem entrenant Orca Slicer per ser més intel·ligent alimentant-lo amb dades del món real. Si estàs disposat, aquest servei accedirà a informació dels teus registres d'errors i registres d'ús, que poden incloure informació descrita a la ", - t55: "Política de Privacitat", - t56: ". No recopilarem cap dada personal que pugui identificar directament o indirectament a un individu, incloent-hi noms, adreces, informació de pagament o números de telèfon. En habilitar aquest servei, acceptes aquests termes i la declaració sobre la Política de Privacitat.", - t57: "", - t58: "", - t59: ".", - t60: "Europa", - t61: "Amèrica del Nord", - t62: "Altres", - t63: "Després de canviar la regió, el teu compte es tancarà la sessió. Si us plau inicia sessió de nou més tard.", - t64: "Connectors propietaris", - t65: "Tingues en compte que aquests connectors no són desenvolupats ni mantinguts per OrcaSlicer. S'han d'utilitzar a la teva discreció i risc.", - t66: "Control remot complet", - t67: "Transmissió en directe", - t68: "Sincronització de dades de l'usuari", - t69: "Instal·lar connector Bambu Network", - t70: "", - t71: "Descarregant", - t72: "Descàrrega fallida", - t73: "Instal·lació exitosa.", - t74: "Reiniciar", - t75: "Alguns proveïdors d'impressora requereixen connectors propietaris per comunicar-se amb les seves impressores. Si us plau selecciona el connector corresponent si utilitzes aquestes impressores.", - t76: "No s'ha detectat el connector Bambu Network. Fes clic ", - t77: "aquí", - t78: " per instal·lar-lo.", - t79: "No s'ha pogut instal·lar el connector.", - t80: "Prova els següents passos:", - t81: "1, Fes clic ", - t82: " per obrir el directori de connectors", - t83: "2, Tanca totes les Orca Slicer obertes", - t84: "3, Elimina tots els fitxers del directori de connectors", - t85: "4, Reobre Orca Slicer i instal·la el connector de nou", - t86: "Tancar", - t87: "Manual de l'Usuari", - t88: "Eliminar", - t89: "Obrir Carpeta Contenidora", - t90: "Model 3D", - t91: "Descarregar models 3D", - t92: "Creat per", - t93: "Remesclat per", - t94: "Compartit per", - t95: "Informació del Model", - t96: "Accessoris", - t97: "Informació del Perfil", - t98: "Nom del model", - t100: "Descripció del model", - t101: "BOM", - t102: "Guia d'Assemblea", - t103: "Altres", - t104: "Nom del perfil", - t105: "Autor del perfil", - t106: "Descripció del perfil", - t107: "Models en línia", - t108: "MÉS", - t109: "Filaments del Sistema", - t110: "Filaments Personalitzats", - t111: "Crear Nou", - t112: "Unir-se al Programa", - t113: "Pots canviar la teva elecció en les preferències en qualsevol moment.", - orca1: "Editar Informació del Projecte", - orca2: "No hi ha informació del model", - orca6: "Bambu Cloud", - }, - es_ES: { - t1: "Bienvenido a Orca Slicer", - t2: "Orca Slicer se configurará mediante varios pasos. ¡Comencemos!", - t3: "Términos de uso", - t4: "No acepto", - t5: "Acepto", - t6: "Le rogamos su ayuda para mejorar la experiencia de impresión de todos.
Únase a nuestro Programa de Mejora de la Experiencia del Cliente", - t7: "Permitir enviar datos anónimos", - t8: "Volver", - t9: "Siguiente", - t10: "Selección de impresora", - t11: "Todo", - t12: "Limpiar todo", - t13: "mm de boquilla", - t14: "Selección de filamento", - t15: "Impresora", - t16: "Tipo de filamento", - t17: "Fabricante", - t18: "Error", - t19: "Al menos se debe seleccionar un filamento.", - t20: "¿Desea usar el filamento por defecto?", - t21: "Sí", - t22: "No", - t23: "Notas de la versión", - t24: "Comenzar", - t25: "Finalizar", - t26: "Iniciar sesión", - t27: "Registrarse", - t28: "Reciente", - t29: "Tienda", - t30: "Manual", - t31: "Nuevo proyecto", - t32: "Crear nuevo proyecto", - t33: "Abrir proyecto", - t34: "punto de acceso", - t35: "Abiertos recientemente", - t36: "OK", - t37: "Al menos se debe seleccionar una impresora.", - t38: "Cancelar", - t39: "Confirmar", - t40: "Desconectado, por favor compruebe la conexión de red e inténtelo de nuevo.", - t47: "Por favor, seleccione su región:", - t48: "Asia-Pacífico", - t49: "China", - t50: "Cerrar sesión", - t52: "Omitir", - t53: "Unirse", - t54: "En la comunidad de impresión 3D aprendemos de los éxitos y fracasos de los demás para ajustar nuestros propios parámetros y configuraciones de corte. Orca Slicer sigue el mismo principio y utiliza el aprendizaje automático para mejorar su rendimiento a partir de los éxitos y fallos del gran número de impresiones realizadas por nuestros usuarios. Estamos entrenando a Orca Slicer para que sea más inteligente proporcionándole datos del mundo real. Si lo desea, este servicio accederá a la información de sus registros de errores y de uso, que pueden incluir la información descrita en nuestra ", - t55: "Política de privacidad", - t56: ". No recopilaremos ningún dato personal que pueda identificar directa o indirectamente a una persona, incluyendo, sin limitación, nombres, direcciones, información de pago o números de teléfono. Al habilitar este servicio, acepta estos términos y la declaración sobre la Política de privacidad.", - t57: "", - t58: "", - t59: ".", - t60: "Europa", - t61: "América del Norte", - t62: "Otras", - t63: "Después de cambiar la región, su cuenta se cerrará la sesión. Por favor, vuelva a iniciar sesión.", - t64: "Complementos propietarios", - t65: "Tenga en cuenta que estos complementos no están desarrollados ni mantenidos por OrcaSlicer. Deben usarse bajo su propia responsabilidad.", - t66: "Control remoto total", - t67: "Transmisión en vivo", - t68: "Sincronización de datos de usuario", - t69: "Instalar plug-in Bambu Network", - t70: "", - t71: "Descargando", - t72: "Descarga fallida", - t73: "Instalación exitosa.", - t74: "Reiniciar", - t75: "Algunos proveedores de impresoras requieren complementos propietarios para la comunicación con sus impresoras. Seleccione el complemento correspondiente si utiliza tales impresoras.", - t76: "Plug-in de Bambu Network no detectado. Haga clic ", - t77: "aquí", - t78: " para instalarlo.", - t79: "Fallo al instalar el complemento. ", - t80: "Intente los siguientes pasos:", - t81: "1. Haga clic ", - t82: " para abrir el directorio de complementos", - t83: "2. Cierre todas las instancias de Orca Slicer", - t84: "3. Elimine todos los archivos del directorio de complementos", - t85: "4. Vuelva a abrir Orca Slicer e instale el complemento de nuevo", - t86: "Cerrar", - t87: "Manual de usuario", - t88: "Eliminar", - t89: "Abrir carpeta contenedora", - t90: "Modelo 3D", - t91: "Descargar modelos 3D", - t92: "Creado por", - t93: "Remixado por", - t94: "Compartido por", - t95: "Información del modelo", - t96: "Accesorios", - t97: "Información del perfil", - t98: "Nombre del modelo", - t100: "Descripción del modelo", - t101: "Lista de materiales", - t102: "Guía de ensamblaje", - t103: "Otros", - t104: "Nombre del perfil", - t105: "Autor del perfil", - t106: "Descripción del perfil", - t107: "Modelos en línea", - t108: "Más", - t109: "Filamentos del sistema", - t110: "Filamentos personalizados", - t111: "Crear nuevo", - t112: "Unirse al programa", - t113: "Puede cambiar su elección en Preferencias en cualquier momento.", - t126: "Cargando……", - orca1: "Editar información del proyecto", - orca2: "No hay información sobre el modelo", - orca3: "Modo sigiloso", - orca4: "Esta función detiene la transmisión de datos a los servicios en la nube de Bambu. Los usuarios que no utilicen máquinas BBL o que solo usen el modo LAN pueden activar esta función con seguridad.", - orca5: "Activar modo sigiloso.", - orca6: "Bambu Cloud", - }, - it_IT: { - t1: "Benvenuti in OrcaSlicer", - t2: "OrcaSlicer verrà configurato seguendo diversi passaggi. Cominciamo!", - t3: "Condizioni d'uso", - t4: "Non accetto", - t5: "Accetto", - t6: "Chiediamo gentilmente il tuo aiuto per migliorare la qualità delle stampe.
Iscriviti al nostro programma di miglioramento dell'esperienza utente", - t7: "Iscriviti al nostro programma di miglioramento dell'esperienza utente", - t8: "Indietro", - t9: "Avanti", - t10: "Selezione della stampante", - t11: "Tutto", - t12: "Cancella tutto", - t13: "mm ugello", - t14: "Selezione del filamento", - t15: "Stampante", - t16: "Tipo di filamento", - t17: "Produttore", - t18: "Errore", - t19: "È necessario selezionare almeno un filamento.", - t20: "Vuoi utilizzare il filamento predefinito?", - t21: "Sì", - t22: "No", - t23: "Note di rilascio", - t24: "Inizia", - t25: "Fine", - t26: "Accedi", - t27: "Registrati", - t28: "Recente", - t29: "Negozio", - t30: "Manuale", - t31: "Nuovo progetto", - t32: "Crea un nuovo progetto", - t33: "Apri progetto", - t34: "hotspot", - t35: "Aperti di recente", - t36: "OK", - t37: "È necessario selezionare almeno una stampante.", - t38: "Annulla", - t39: "Conferma", - t40: "Disconnesso, controlla la connessione di rete e riprova.", - t47: "Seleziona la tua regione di accesso", - t48: "Asia-Pacifico", - t49: "Cina", - t50: "Disconnettiti", - t52: "Salta", - t53: "Iscriviti", - t54: "Nella comunità di stampa 3D, impariamo dai successi e dagli insuccessi di ognuno per adattare i nostri parametri e le nostre impostazioni di slicing. OrcaSlicer segue lo stesso principio, utilizzando l'apprendimento automatico per migliorare le sue prestazioni sfruttando i successi e gli insuccessi delle numerose stampe dei nostri utenti. Stiamo addestrando OrcaSlicer ad essere più intelligente, fornendogli dati del mondo reale. Se lo desideri, questo servizio accederà alle informazioni dei tuoi registri di errore e di utilizzo, i quali possono includere informazioni descritte in ", - t55: "Politica sulla riservatezza", - t56: ". Non raccoglieremo alcun Dato Personale tramite il quale un individuo possa essere identificato direttamente o indirettamente, inclusi (senza limitazioni) nomi, indirizzi, informazioni di pagamento o numeri di telefono. Abilitando questo servizio, accetti questi termini e la dichiarazione sulla Politica sulla riservatezza.", - t57: "", - t58: "", - t59: ".", - t60: "Europa", - t61: "Nord America", - t62: "Altri", - t63: "Dopo aver cambiato la regione, il tuo profilo verrà disconnesso. Sarà necessario accedere di nuovo.", - t64: "Moduli proprietari", - t65: "Si prega di notare che questi moduli non sono sviluppati o mantenuti da OrcaSlicer. Dovrebbero essere utilizzati a proprio rischio e discrezione.", - t66: "Controllo remoto completo", - t67: "Video in diretta", - t68: "Sincronizzazione dei dati utente", - t69: "Installa il modulo di rete Bambu", - t70: "", - t71: "Scaricamento", - t72: "Scaricamento non riuscito", - t73: "Installazione riuscita.", - t74: "Riavvia", - t75: "Le stampanti di alcuni produttori richiedono dei moduli proprietari per far in modo che la comunicazione abbia successo. Seleziona il modulo corrispondente se utilizzi tali stampanti.", - t76: "Modulo di rete Bambu non rilevato. Fai clic ", - t77: "qui", - t78: " per installarlo.", - t79: "Impossibile installare il modulo. ", - t80: "Prova i seguenti passaggi:", - t81: "1, Fare clic ", - t82: " per aprire la directory del modulo", - t83: "2, Chiudere tutte le istanze di OrcaSlicer", - t84: "3, Eliminare tutti i file all'interno della directory del modulo", - t85: "4, Riaprire OrcaSlicer e installare nuovamente il modulo", - t86: "Chiudi", - t87: "Manuale d'uso", - t88: "Rimuovi", - t89: "Apri cartella con contenuto", - t90: "Modello 3D", - t91: "Scarica modelli 3D", - t92: "Creato da", - t93: "Modificato da", - t94: "Condiviso da", - t95: "Informazioni sul modello", - t96: "Accessori", - t97: "Informazioni sul profilo", - t98: "Nome del modello", - t100: "Descrizione del modello", - t101: "Elenco dei materiali", - t102: "Istruzioni di montaggio ", - t103: "Altro", - t104: "Nome del profilo", - t105: "Autore del profilo", - t106: "Descrizione del profilo", - t107: "Modelli online", - t108: "ALTRO", - t109: "Filamenti di sistema", - t110: "Filamenti personalizzati", - t111: "Crea Nuovo", - t112: "Unisciti al programma", - t113: "Puoi modificare la tua scelta in 'Preferenze' in qualsiasi momento.", - orca1: "Modifica informazioni progetto", - orca2: "Nessuna informazione sul modello", - orca3: "Modalità invisibile", - orca4: "Con questa modalità, la trasmissione dei dati ai servizi cloud di Bambu sarà interrotta. Gli utenti che non utilizzano macchine BBL o che usano solo la modalità LAN possono attivare questa funzione in modo sicuro.", - orca5: "Abilita la modalità invisibile.", - orca6: "Bambu Cloud", - }, - de_DE: { - t1: "Willkommen im Orca Slicer", - t2: "Das Orca Slicer wird in mehreren Schritten eingerichtet. Lass uns anfangen!", - t3: "Nutzervereinbarung", - t4: "Ablehnen", - t5: "Zustimmen", - t6: "Wir bitten um deine Hilfe, um den Druck für alle zu verbessern", - t7: "Anonyme Daten senden erlauben", - t8: "Zurück", - t9: "Weiter", - t10: "Druckerauswahl", - t11: "Alle", - t12: "Keinen", - t13: "mm Düse", - t14: "Filamentauswahl", - t15: "Drucker", - t16: "Filamenttyp", - t17: "Hersteller", - t18: "Fehler", - t19: "Es muss mindestens ein Filament ausgewählt sein.", - t20: "Möchten Sie das Standard-Filament verwenden?", - t21: "Ja", - t22: "Nein", - t23: "Versionshinweise", - t24: "Loslegen", - t25: "Fertig", - t26: "Anmelden", - t27: "Registrieren", - t28: "Neueste", - t29: "Einkaufszentrum", - t30: "Handbuch", - t31: "Neues Projekt", - t32: "Neues Projekt erstellen", - t33: "Projekt öffnen", - t34: "Hotspot", - t35: "Zuletzt geöffnet", - t36: "OK", - t37: "Es muss mindestens ein Drucker ausgewählt sein.", - t38: "Abbrechen", - t39: "Bestätigen", - t40: "Netzwerkunterbrechung, bitte überprüfen und später erneut versuchen.", - t47: "Bitte wählen Sie Ihre Login-Region aus", - t48: "Asien-Pazifik", - t49: "China", - t50: "Abmelden", - t52: "Überspringen", - t53: "Beitreten", - t54: "In der 3D-Druck-Community lernen wir aus den Erfolgen und Misserfolgen der anderen Benutzer, um unsere eigenen Schneideparameter und Einstellungen anzupassen. Orca Slicer folgt demselben Prinzip und verbessert seine Leistung durch die Erfolge und Misserfolge der Vielzahl von Drucken unserer Benutzer mittels maschinellem Lernen. Wir trainieren Orca Slicer, indem wir ihnen die realen Daten zuführen. Wenn Sie bereit sind, greift dieser Dienst auf Informationen aus Ihren Fehler- und Nutzungsprotokollen zu, die Informationen enthalten können, die in der ", - t55: "Datenschutzrichtlinie", - t56: ". Wir werden keine personenbezogenen Daten sammeln, durch die eine Person direkt oder indirekt identifiziert werden kann, einschließlich, aber nicht beschränkt auf Namen, Adressen, Zahlungsinformationen oder Telefonnummern. Durch Aktivieren dieses Dienstes stimmen Sie diesen Bedingungen und der Erklärung zur Datenschutzrichtlinie zu.", - t57: "", - t58: "", - t59: ".", - t60: "Europa", - t61: "Nordamerika", - t62: "Andere", - t63: "Nach Ändern der Region wird Ihr Konto abgemeldet. Bitte melden Sie sich später erneut an.", - t64: "Bambu Network-Plug-in", - t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", - t66: "Vollständige Fernsteuerung", - t67: "Live-View-Streaming", - t68: "Synchronisierung von Benutzerdaten", - t69: "Bambu Network-Plug-in installieren", - t70: "", - t71: "Herunterladen", - t72: "Herunterladen fehlgeschlagen", - t73: "Installation erfolgreich.", - t74: "Neustart", - t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", - t76: "Das Bambu Network-Plug-in wurde nicht erkannt. Klicken Sie ", - t77: "hier", - t78: ", um es zu installieren.", - t79: "Fehler beim Installieren des Plug-ins. ", - t80: "Versuchen Sie die folgenden Schritte:", - t81: "1, Klicken Sie auf ", - t82: ", um das Plug-in-Verzeichnis zu öffnen", - t83: "2, Schließen Sie alle geöffneten Orca Slicer", - t84: "3, Löschen Sie alle Dateien im Plug-in-Verzeichnis", - t85: "4, Öffnen Sie Orca Slicer erneut und installieren Sie das Plug-in erneut", - t86: "Schließen", - t87: "Benutzerhandbuch", - t88: "Entfernen", - t89: "Enthaltenden Ordner öffnen", - t90: "3D-Modell", - t91: "3D-Modelle herunterladen", - t92: "Erstellt von", - t93: "Remixed von", - t94: "Geteilt von", - t95: "Modellinformationen", - t96: "Zubehör", - t97: "Profilinformationen", - t98: "Modellname", - t100: "Modellbeschreibung", - t101: "Stückliste", - t102: "Montageanleitung", - t103: "Andere", - t104: "Profilname", - t105: "Profilautor", - t106: "Profilbeschreibung", - t126: "Laden……", - orca1: "Edit Project Info", - orca2: "No model information", - orca6: "Bambu Cloud", - }, - cs_CZ: { - t1: "Vítejte v Orca Slicer", - t2: "Orca Slicer bude nastaven v několika krocích. Začněme!", - t3: "Uživatelská smlouva", - t4: "Nesouhlasím", - t5: "Souhlasím", - t6: "Prosíme o vaši pomoc se zlepšením všech tisků", - t7: "Povolit odesílání anonymních dat", - t8: "Zpět", - t9: "Další", - t10: "Výběr tiskárny", - t11: "Všechny", - t12: "Vymazat vše", - t13: "Tryska mm", - t14: "Výběr Filamentu", - t15: "Tiskárna", - t16: "Typ Filamentu", - t17: "Dodavatel", - t18: "Chyba", - t19: "Musí být vybraný alespoň jeden Filament.", - t20: "Chcete použít výchozí Filament?", - t21: "Ano", - t22: "Ne", - t23: "Poznámka k vydání", - t24: "Začínáme", - t25: "Dokončit", - t26: "Přihlásit", - t27: "Registrovat", - t28: "Poslední", - t29: "Obchodní centrum", - t30: "Manuální", - t31: "Nový projekt", - t32: "Vytvořit nový projekt", - t33: "Otevřít projekt", - t34: "Hotspot", - t35: "Nedávno otevřeno", - t36: "OK", - t37: "Musí být vybrána alespoň jedna tiskárna.", - t38: "Zrušit", - t39: "Potvrdit", - t40: "Síť je odpojena, prosím zkontrolujte a zkuste to znovu později.", - t47: "Vyberte prosím svou oblast přihlášení", - t48: "Asie-Pacifik", - t49: "Čína", - t50: "Odhlásit se", - t52: "Přeskočit", - t53: "Připojit se", - t54: "V komunitě 3D tisku se ze vzájemných úspěchů a neúspěchů učíme upravovat vlastní parametry a nastavení krájení. Orca Slicer se řídí stejným principem a využívá strojové učení ke zlepšení svého výkonu na základě úspěchů a neúspěchů počet výtisků našimi uživateli. Orca Slicer školíme, aby byl chytřejší tím, že jim poskytuje data z reálného světa. Pokud budete chtít, bude tato služba přistupovat k informacím z vašich protokolů chyb a protokolů použití, které mohou zahrnovat informace popsané v ", - t55: "Zásady ochrany osobních údajů", - t56: ". Nebudeme shromažďovat žádné osobní údaje, pomocí kterých lze přímo nebo nepřímo identifikovat jednotlivce, včetně jmen, adres, platebních údajů nebo telefonních čísel. Povolením této služby souhlasíte s těmito podmínkami a prohlášení o zásadách ochrany osobních údajů.", - t57: "", - t58: "", - t59: ".", - t60: "Evropa", - t61: "Severní Amerika", - t62: "Ostatní", - t63: "Po změně regionu bude váš účet odhlášen. Přihlaste se prosím znovu později.", - t64: "Proprietary Plugins", - t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", - t66: "Plné dálkové ovládání", - t67: "Streamování v přímém přenosu", - t68: "Synchronizace uživatelských dat", - t69: "Instalovat Bambu Network plug-in", - t70: "", - t71: "Stahování", - t72: "Stahování se nezdařilo", - t73: "Instalace úspěšná.", - t74: "Restartovat", - t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", - t76: "Síťový plug-in Bambu nebyl zjištěn. Klikněte na ", - t77: "zde", - t78: " k instalaci.", - t79: "Nepodařilo se nainstalovat plugin.", - t80: "Zkuste následující kroky:", - t81: "1, klikněte", - t82: "otevřete adresář plug-in", - t83: "2, Zavřete všechny otevřené Orca Slicer", - t84: "3, Smažte všechny soubory v adresáři plug-in", - t85: "4, znovu otevřete Orca Slicer a znovu nainstalujte zásuvný modul", - t86: "Zavřít", - t87: "Uživatelská příručka", - t88: "Odstranit", - t89: "Otevřít složku obsahující", - t90: "3D model", - t91: "Stáhnout 3D modely", - t92: "Vytvořil", - t93: "Přepracováno", - t94: "Sdíleno", - t95: "Informace o modelu", - t96: "Příslušenství", - t97: "Informace o profilu", - t98: "Název modelu", - t100: "Popis modelu", - t101: "Seznam součástek (BOM)", - t102: "Průvodce sestavením", - t103: "Jiné", - t104: "Název profilu", - t105: "Autor profilu", - t106: "Popis profilu", - t126: "Načtení probíhá……", - orca1: "Edit Project Info", - orca2: "No model information", - orca6: "Bambu Cloud", - }, - fr_FR: { - t1: "Bienvenue sur Orca Slicer", - t2: "Orca Slicer sera configuré en plusieurs étapes. Commençons !", - t3: "Accord d'utilisation", - t4: "Décliner", - t5: "Accepter", - t6: "Nous sollicitons votre aide pour améliorer
l'impression de chacun", - t7: "Autoriser l'envoi de données anonymes", - t8: "Retour", - t9: "Suivant", - t10: "Sélection de l'imprimante", - t11: "Tous", - t12: "Supprimer", - t13: "mm", - t14: "Sélection des filaments", - t15: "Imprimante", - t16: "Type de filament", - t17: "Fournisseur", - t18: "Erreur", - t19: "Au moins un filament doit être sélectionné.", - t20: "Voulez-vous utiliser le filament par défaut ?", - t21: "Oui", - t22: "Non", - t23: "Note de version", - t24: "Commencer", - t25: "Terminer", - t26: "Connexion", - t27: "Inscription", - t28: "Récent", - t29: "Mail", - t30: "Manuel", - t31: "Nouveau Projet", - t32: "Créer un nouveau projet", - t33: "Ouvrir un Projet", - t34: "hotspot", - t35: "Récemment ouvert", - t36: "OK", - t37: "Au moins une imprimante doit être sélectionnée.", - t38: "Annuler", - t39: "Confirmer", - t40: "Déconnexion du réseau, veuillez vérifier et réessayer plus tard.", - t47: "Veuillez sélectionner votre région de connexion", - t48: "Asie-Pacifique", - t49: "Chine", - t50: "Se déconnecter", - t52: "Passer", - t53: "Rejoindre", - t54: "Dans la communauté de l'impression 3D, nous apprenons des succès et des échecs des uns et des autres pour ajuster nos propres paramètres et paramètres de découpage. Orca Slicer suit le même principe et utilise l'apprentissage automatique pour améliorer ses performances à partir des succès et des échecs du grand nombre d'impressions de nos utilisateurs. Nous formons Orca Slicer à être plus intelligent en leur fournissant les données du monde réel. Si vous le souhaitez, ce service accédera aux informations de vos journaux d'erreurs et de vos journaux d'utilisation, qui peuvent inclure des informations décrites dans ", - t55: "Politique de confidentialité", - t56: ". Nous ne collecterons aucune donnée personnelle par laquelle un individu peut être identifié directement ou indirectement, y compris, sans s'y limiter, les noms, adresses, informations de paiement ou numéros de téléphone. En activant ce service, vous acceptez ces conditions et la déclaration sur la politique de confidentialité.", - t57: "", - t58: "", - t59: ".", - t60: "Europe", - t61: "Amérique du Nord", - t62: "Autres", - t63: "Après avoir changé de région, votre compte sera déconnecté. Veuillez vous reconnecter ensuite.", - t64: "Plug-in Bambu Network", - t65: "Veuillez noter que ces plugins ne sont pas développés ou maintenus par OrcaSlicer. Ils doivent être utilisés à votre propre discrétion et à vos propres risques.", - t66: "Commande à distance complète", - t67: "Diffusion en direct", - t68: "Synchronisation des données utilisateur", - t69: "Installer Bambu Network", - t70: "", - t71: "Téléchargement", - t72: "Échec du téléchargement", - t73: "Installation réussie.", - t74: "Redémarrer", - t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", - t76: "Le plug-in Bambu Network n'est pas détecté. Cliquez ", - t77: "ici", - t78: " pour l'installer.", - t79: "Échec de l'installation du plug-in. ", - t80: "Essayez les étapes suivantes :", - t81: "1, Cliquez ", - t82: " pour ouvrir le répertoire des plug-ins", - t83: "2, Fermez toutes les fenêtres de Orca Slicer", - t84: "3, Supprimez tous les fichiers dans le répertoire du plug-in", - t85: "4, Relancez Orca Slicer et réinstallez le plug-in.", - t86: "Fermer", - t87: "Manuel d'utilisation", - t88: "Supprimer", - t89: "Ouvrir le dossier contenant", - t90: "Modèle 3D", - t91: "Télécharger des modèles 3D", - t92: "Créé par", - t93: "Remixé par", - t94: "Partagé par", - t95: "Informations sur le modèle", - t96: "Accessoires", - t97: "Informations de profil", - t98: "Nom du modèle", - t100: "Description du modèle", - t101: "BOM", - t102: "Guide d'assemblage", - t103: "Autre", - t104: "Nom du profil", - t105: "Auteur du profil", - t106: "Description du profil", - t109: "Filaments du système", - t110: "Filaments personnalisés", - t111: "Créer un nouveau filament", - t126: "Chargement en cours……", - orca1: "Modifier les informations du projet", - orca2: "Pas d'information sur le modèle", - wk1: "Démarrage rapide", - wk2: "Cet article présente l'utilisation la plus basique de Orca Slicer. Il guide les utilisateurs pour configurer le logiciel, créer des projets et effectuer la première tâche d'impression étape par étape.", - wk3: "Workflow basé sur des projets", - wk4: "Orca Slicer met en avant un workflow de pointe pour véritablement réaliser un projet « tout en un ». Basé sur le format de projet 3MF grand public, il fournit une série de nouvelles fonctionnalités révolutionnaires, telles que la prise en charge de plusieurs plaques, un gestionnaire de ressources de projet et une vue d'assemblage/de pièce. Cela améliore considérablement l'efficacité des créateurs et des utilisateurs réguliers", - wk5: "Impression haute vitesse de qualité", - wk6: "Il est difficile d'imprimer à grande vitesse tout en maintenant une qualité élevée. Orca Slicer rend cela possible. « Arch Move » permet à la hotend de se déplacer en douceur et réduit les vibrations de la machine. Le refroidissement intelligent est basé sur des paramètres de refroidissement affinés pour chaque type de filament. Le « ralentissement automatique » pour les paroies en porte-à-faux permet d'éviter la déformation à grande vitesse.", - wk7: "Impression multi-couleur", - wk8: "Orca Slicer fournit des outils de colorisation polyvalents pour créer un modèle coloré. Vous pouvez librement ajouter/supprimer des filaments dans un projet et coloriser votre modèle avec différents pinceaux. Avant l'impression, chaque filament sera automatiquement mappé sur un emplacement AMS, sans avoir besoin de modifier manuellement le placement de la bobine dans l'AMS.", - wk9: "Guide de réglage des paramètres de découpage", - wk10: "Les fonctionnalités de gestion des paramètres de Orca Slicer offrent un contrôle très flexible et puissant sur le processus de découpage. Cet article présente l'organisation des paramètres et fournit quelques compétences pour tirer pleinement parti de ces fonctionnalités.", - wk11: "Contrôle et surveillance à distance", - wk12: "Orca Slicer prend en charge l'envoi du travail d'impression à votre imprimante via le réseau WAN/LAN, contrôlant et surveillant chaque aspect de votre imprimante 3D et des travaux d'impression. Si vous avez plusieurs imprimantes, vous pouvez facilement basculer entre elles dans la liste des périphériques.", - wk13: "Format STEP", - wk14: "Par rapport au format STL, le format STEP apporte des informations plus efficaces. Grâce à la grande précision de ce format, de nombreuses trajectoires d'extrusion peuvent être générées sous forme d'arcs. Il inclut également la relation d'assemblage de chaque pièce d'un modèle, qui peut être utilisée pour restaurer la vue d'assemblage après la coupe d'un modèle.", - wk15: "Texte 3D", - wk16: "Avec l'outil Texte 3D, les utilisateurs peuvent facilement créer diverses formes de texte 3D dans le projet, ce qui rend le modèle plus personnalisé. Orca Slicer fournit des dizaines de polices et prend en charge les styles gras et italique pour donner au texte une plus grande flexibilité.", - orca6: "Bambu Cloud", - }, - zh_CN: { - t1: "欢迎使用Orca Slicer", - t2: "Orca Slicer需要几步安装步骤,让我们开始吧!", - t3: "用户使用协议", - t4: "拒绝", - t5: "同意", - t6: "帮助提升Orca Slicer性能", - t7: "允许发送匿名数据", - t8: "上一步", - t9: "下一步", - t10: "选择打印机", - t11: "全部", - t12: "清空", - t13: "mm 喷嘴", - t14: "选择材料", - t15: "打印机", - t16: "材料类型", - t17: "供应商", - t18: "错误", - t19: "至少要选择一款材料。", - t20: "你希望使用默认的材料列表吗?", - t21: "是", - t22: "否", - t23: "发布说明", - t24: "开始", - t25: "结束", - t26: "登录", - t27: "注册", - t28: "近期", - t29: "商城", - t30: "使用手册", - t31: "新建项目", - t32: "创建一个新项目", - t33: "打开项目", - t34: "热点", - t35: "近期打开文件", - t36: "确定", - t37: "至少需要选择一款打印机。", - t38: "取消", - t39: "确定", - t40: "网络不通,请检查并稍后重试。", - t47: "请选择登录区域", - t48: "亚太", - t49: "中国", - t50: "退出登录", - t52: "忽略", - t53: "同意", - t54: "在3D打印社区,我们从彼此的成功和失败中学习调整自己的切片参数和设置。Orca Slicer遵循同样的原则,通过机器学习的方式从大量用户打印的成功和失败中获取经验,从而改善打印性能。我们正在通过向Orca Slicer提供真实世界的数据来训练他们变得更聪明。如果您愿意,此服务将访问您的错误日志和使用日志中的信息,其中可能包括", - t55: "隐私政策", - t56: "中描述的信息。我们不会收集任何可以直接或间接识别个人的个人数据,包括但不限于姓名、地址、支付信息或电话号码。启用此服务即表示您同意这些条款和有关隐私政策的声明。", - t57: "", - t58: "", - t59: "。", - t60: "欧洲", - t61: "北美", - t62: "其他", - t63: "切换区域后,你的账号会被登出。稍后请重新登录。", - t64: "Bambu网络插件", - t65: "注意:这些插件不是由OrcaSlicer开发或维护的。使用它们需自担风险", - t66: "强大的远程控制功能", - t67: "实时视频流", - t68: "用户数据同步", - t69: "安装Bambu网络插件", - t70: "", - t71: "正在下载", - t72: "下载失败", - t73: "安装成功。", - t74: "重启", - t75: "一些打印机厂商需要安装他们的专有插件才能与打印机通信。如果您使用这类打印机,请选择相应的插件", - t76: "没有发现Bambu网络插件,请", - t77: "下载", - t78: "并安装。", - t79: "安装插件失败。", - t80: "请尝试如下步骤:", - t81: "1, 点击", - t82: "打开插件所在目录", - t83: "2, 关闭所有Orca Slicer", - t84: "3, 删除插件所在目录下的所有文件", - t85: "4, 重新启动Orca Slicer并尝试安装插件", - t86: "关闭", - t87: "使用引导", - t88: "移除", - t89: "打开所在的文件夹", - t90: "3D 模型", - t91: "下载3D模型", - t92: "创作", - t93: "修改", - t94: "分享", - t95: "模型信息", - t96: "附件", - t97: "配置信息", - t98: "模型名称", - t100: "模型介绍", - t101: "物料清单", - t102: "装备指导", - t103: "其他", - t104: "配置名称", - t105: "配置作者", - t106: "配置介绍", - t107: "在线模型", - t108: "更多", - t109: "系统材料", - t110: "自建材料", - t111: "新建", - t112: "加入该计划", - t113: "您可以随时更改您的偏好。", - t126: "正在加载……", - wk1: "快速入门指南", - wk2: "本文介绍了Orca Slicer的最基本用法。它指导用户配置软件,创建项目,并逐步完成第一个打印任务。", - wk3: "基于项目的工作流", - wk4: "Orca Slicer提出了领先的工作流程,真正实现了“一体化”项目。基于主流的3MF项目格式,它提供了一系列革命性的新功能,如支持多盘、项目资源管理器和装配/零件视图。它可以大幅提高模型创作者及普通用户的使用效率。", - wk5: "质量卓越的高速打印", - wk6: "在保持高质量的前提下进行高速打印是非常具有挑战性的。Orca Slicer让这一切发生。支持“圆弧移动”特性使工具头移动更加顺滑,有效减少机器振动。基于不同材料类型的精细标定过的冷却控制参数,使得冷却过程可以自动开展。在悬垂区域进行“自动减速”,可防止高速打印时在此区域的外观瑕疵。", - wk7: "多色打印", - wk8: "Orca Slicer提供了多种着色工具来制作彩色模型。您可以在项目中自由添加/移除打印材料,并使用不同的笔刷为模型着色。开始打印时,打印任务中的各个材料将自动映射到匹配的AMS槽位,无需手动调整AMS中的料卷位置。", - wk9: "切片参数设置指南", - wk10: "Orca Slicer中的参数管理功能为切片过程提供了非常灵活和强大的控制。本文介绍了切片参数的组织分类和设置方法,并提供了一些使用技巧。", - wk11: "远程控制和监控", - wk12: "Orca Slicer支持通过WAN/LAN网络向打印机发送打印任务,控制和查看3D打印机和打印任务的各个方面。如果您有多台打印机,还可以在设备列表中轻松切换。", - wk13: "STEP格式", - wk14: "与STL相比,STEP带来了更多有效的信息。由于STEP的高精度,切片时可以生成更多的圆弧路径。STEP还包括模型每个零件的装配关系,可分割模型后恢复装配视图。", - wk15: "3D文本", - wk16: "使用3D文本工具,用户可以轻松地在项目中创建各种3D文本形状,使模型更加个性化。Orca Slicer提供了数十种字体,并支持粗体和斜体样式,使文本具有更大的灵活性。", - orca1: "编辑项目信息", - orca2: "该模型没有相关信息", - orca6: "Bambu Cloud", - }, - zh_TW: { - t1: "歡迎使用 Orca Slicer", - t2: "Orca Slicer 需要幾步安裝步驟,讓我們開始吧!", - t3: "使用者協議", - t4: "拒絕", - t5: "同意", - t6: "幫助提升 Orca Slicer 性能", - t7: "允許傳送匿名數據", - t8: "上一步", - t9: "下一步", - t10: "選擇3D列印機", - t11: "全部", - t12: "清空", - t13: "mm 噴嘴", - t14: "選擇線材", - t15: "3D列印機", - t16: "線材類型", - t17: "供應商", - t18: "錯誤", - t19: "至少要選擇一款線材。", - t20: "你希望使用預設的線材列表嗎?", - t21: "是", - t22: "否", - t23: "發布說明", - t24: "開始", - t25: "結束", - t26: "登入", - t27: "註冊", - t28: "最近", - t29: "商城", - t30: "使用手冊", - t31: "新建項目", - t32: "創建一個新項目", - t33: "打開項目", - t34: "熱點", - t35: "最近打開文件", - t36: "確定", - t37: "至少需要選擇一款3D列印機。", - t38: "取消", - t39: "確定", - t40: "網路不通,請檢查並稍後重試。", - t47: "請選擇登入區域", - t48: "亞太", - t49: "中國", - t50: "登出", - t52: "忽略", - t53: "同意", - t54: "在3D列印社區,我們從彼此的成功和失敗中學習調整自己的切片參數和設置。Orca Slicer 遵循同樣的原則,透過機器學習的方式從大量用戶列印的成功和失敗中獲取經驗,從而改善列印性能。我們正在通過向 Orca Slicer 提供真實世界的數據來訓練他們變得更聰明。如果您願意,此服務將訪問您的錯誤日誌和使用日誌中的資訊,其中可能包括", - t55: "隱私政策", - t56: "中描述的資訊。我們不會收集任何可以直接或間接識別個人的個人數據,包括但不限於姓名、地址、支付資訊或電話號碼。啟用此服務即表示您同意這些條款和有關隱私政策的聲明。", - t57: "", - t58: "", - t59: "。", - t60: "歐洲", - t61: "北美", - t62: "其他", - t63: "切換區域後,你的帳號會被登出。稍後請重新登入。", - t64: "Bambu網路插件", - t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", - t66: "強大的遠端控制功能", - t67: "即時影片串流", - t68: "使用者數據同步", - t69: "安裝 Bambu網路插件", - t70: "", - t71: "正在下載", - t72: "下載失敗", - t73: "安裝成功。", - t74: "重啟", - t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", - t76: "沒有發現Bambu網路插件,請", - t77: "下載", - t78: "並安裝。", - t79: "安裝插件失敗。", - t80: "請嘗試如下步驟:", - t81: "1, 點擊", - t82: "打開插件所在目錄", - t83: "2, 關閉所有 Orca Slicer", - t84: "3, 刪除插件所在目錄下的所有文件", - t85: "4, 重新啟動 Orca Slicer 並嘗試安裝插件", - t86: "關閉", - t87: "使用引導", - t88: "移除", - t89: "打開所在的文件夾", - t90: "3D 模型", - t91: "下載3D模型", - t92: "Bambu聖誕小屋", - wk1: "快速入門指南", - wk2: "本文介紹了 Orca Slicer 的最基本用法。它指導用戶配置軟體,創建項目,並逐步完成第一個列印任務。", - wk3: "基於項目的工作流", - wk4: "Orca Slicer 提出了領先的工作流程,真正實現了“一體化”項目。基於主流的3MF項目格式,它提供了一系列革命性的新功能,如支持多盤、項目資源管理器和裝配/零件視圖。它可以大幅提高模型創作者及普通用戶的使用效率。", - wk5: "質量卓越的高速列印", - wk6: "在保持高品質的前提下進行高速列印是非常具有挑戰性的。Orca Slicer 讓這一切發生。支持“圓弧移動”特性使工具頭移動更加順滑,有效減少機器振動。基於不同線材類型的精細標定過的冷卻控制參數,使得冷卻過程可以自動開展。在懸垂區域進行“自動減速”,可防止高速列印時在此區域的外觀瑕疵。", - wk7: "多色列印", - wk8: "Orca Slicer 提供了多種著色工具來製作彩色模型。您可以在項目中自由添加/移除列印材料,並使用不同的筆刷為模型著色。開始列印時,列印任務中的各個線材將自動映射對應到 AMS 槽位,無需手動調整 AMS 中的線材位置。", - wk9: "切片參數設置指南", - wk10: "Orca Slicer 中的參數管理功能為切片過程提供了非常靈活和強大的控制。本文介紹了切片參數的組織分類和設置方法,並提供了一些使用技巧。", - wk11: "遠端控制和監控", - wk12: "Orca Slicer 支持透過無線網路/區域網路向3D列印機發送列印任務,控制和查看3D列印機和列印任務的各個方面。如果您有多台3D列印機,還可以在設備清單中輕鬆切換。", - wk13: "STEP格式", - wk14: "與 STL 相比,STEP 帶來了更多有效的資訊。由於 STEP 的高精度,切片時可以生成更多的圓弧路徑。STEP 還包括模型每個零件的組裝關係,可分割模型後恢復裝配視圖。", - wk15: "3D文本", - wk16: "使用3D文字工具,使用者可以輕鬆地在項目中建立各種3D文字形狀,使模型更加個性化。Orca Slicer 提供了數十種字體,並支援粗體和斜體樣式,使文字具有更大的靈活性。", - orca1: "編輯專案資訊", - orca2: "沒有模型相關資訊", - orca6: "Bambu Cloud", - }, - ru_RU: { - t1: "Приветствуем в Orca Slicer!", - t2: "Для настройки Orca Slicer необходимо пройти несколько этапов. Давайте начнём!", - t3: "Пользовательское соглашение", - t4: "Отказаться", - t5: "Принять", - t6: "Мы просим вашей помощи,
чтобы улучшить печать", - t7: "Разрешить отправку анонимных данных для совершенствования программы", - t8: "Назад", - t9: "Далее", - t10: "Выбор принтера", - t11: "Все", - t12: "Очистить", - t13: "мм сопло", - t14: "Выбор материала", - t15: "Принтер", - t16: "Тип материала", - t17: "Производитель", - t18: "Oшибка", - t19: "Должна быть выбрана хотя бы одна пластиковая нить.", - t20: "Выбрать пластиковые нити по умолчанию?", - t21: "Да", - t22: "Нет", - t23: "Информация о версии", - t24: "Начать", - t25: "Закончить", - t26: "Войти", - t27: "Регистрация", - t28: "Недавние", - t29: "Mall", - t30: "Инструкции", - t31: "Новый проект", - t32: "Создать новый проект", - t33: "Открыть проект", - t34: "точка доступа", - t35: "Недавно открытые", - t36: "OK", - t37: "Должен быть выбран хотя бы один принтер.", - t38: "Отмена", - t39: "Принять", - t40: "Сеть отключена. Проверьте подключение и попробуйте снова.", - t47: "Выбор региона", - t48: "Азиатско-Тихоокеанский регион", - t49: "Китай", - t50: "Выйти", - t52: "Пропустить", - t53: "Войти", - t54: "Для поиска наилучших параметров нарезки и улучшения печати участники сообщества 3D-печати учатся на успехах и неудачах друг друга. Orca Slicer следует тому же принципу и использует машинное обучение для улучшения своей работы на основе успешного и неудачного опыта печати наших пользователей. Мы обучаем Orca Slicer быть умнее на основе реальных данных. По вашему согласию эта служба получит доступ к вашим журналам ошибок и журналам использования, в которых содержатся сведения, описанные в ", - t55: "политике конфиденциальности", - t56: ". Мы не собираем никаких личных данных, которые могут прямо или косвенно идентифицировать отдельного человека, включая, помимо прочего, имена, адреса, платёжную информацию или номера телефонов. Разрешая отправку, вы соглашаетесь с этими условиями и заявлением о политике конфиденциальности.", - t57: "", - t58: "", - t59: ".", - t60: "Европа", - t61: "Северная Америка", - t62: "Другой", - t63: "После смены региона произойдёт выход из аккаунта и понадобится войти снова.", - t64: "Сетевой плагин Bambu", - t65: "Имейте в виду, что эти плагины не разрабатываются и не поддерживаются OrcaSlicer. Используйте их на свой страх и риск.", - t66: "Полное дистанционное управление", - t67: "Просмотр прямой трансляции с камеры", - t68: "Синхронизация данных пользователя", - t69: "Установить сетевой плагин Bambu", - t70: "", - t71: "Загрузка", - t72: "Загрузка не удалась", - t73: "Установка выполнена успешно.", - t74: "Перезагрузка", - t75: "Для связи с некоторыми моделями принтеров требуются проприетарные плагины. Выберите соответствующий плагин, если у вас такой принтер.", - t76: "Сетевой плагин Bambu не обнаружен. Нажмите ", - t77: "здесь", - t78: ", чтобы установить его.", - t79: "Ошибка установки плагина. ", - t80: "Попробуйте выполнить следующие действия:", - t81: "1, Нажмите ", - t82: " для открытия папки плагина", - t83: "2, Закройте все окна Orca Slicer", - t84: "3, Удалите все файлы в папке плагина", - t85: "4, Откройте Orca Slicer и снова установите плагин.", - t86: "Закрыть", - t87: "Инструкции", - t88: "Удалить", - t89: "Открыть папку с файлом", - t90: "3D-модель", - t91: "Скачать 3D-модели", - t92: "Автор", - t93: "Модифицировано", - t94: "Поделиться", - t95: "Информация о модели", - t96: "Прикреплённые файлы", - t97: "Информация о профиле", - t98: "Имя модели", - t100: "Описание модели", - t101: "Список материалов", - t102: "Памятка по сборке", - t103: "Прочее", - t104: "Имя профиля", - t105: "Профиль автора", - t106: "Описание профиля", - t107: "Модели в сети", - t108: "Больше", - t109: "Системные материалы", - t110: "Пользовательские материалы", - t111: "Создать новый", - t112: "Присоединяйтесь к программе", - t113: "Вы можете изменить свой выбор в любое время.", - t126: "Загрузка...", - orca1: "Изменить информацию", - orca2: "Информация отсутствует", - orca3: "Режим конфиденциальности", - orca4: "Это остановит передачу данных в облачные сервисы Bambu. Помешает только владельцам Bambu Lab, не использующим режим «Только LAN».", - orca5: "Включить режим конфиденциальности", - orca6: "Bambu Cloud", - }, - ko_KR: { - t1: "Orca Slicer에 오신 것을 환영합니다", - t2: "Orca Slicer는 여러 단계로 설정됩니다. 시작!", - t3: "사용자 약관", - t4: "거부", - t5: "동의", - t6: "모든 사람의 출력 품질 개선을 위해
여러분의 도움이 필요합니다.", - t7: "익명 데이터 전송 허용", - t8: "뒤로", - t9: "다음", - t10: "프린터 선택", - t11: "전체", - t12: "전체 해제", - t13: "mm 노즐", - t14: "필라멘트 선택", - t15: "프린터", - t16: "필라멘트 종류", - t17: "공급업체", - t18: "오류", - t19: "하나 이상의 필라멘트를 선택해야 합니다.", - t20: "기본 필라멘트를 사용하시겠습니까?", - t21: "예", - t22: "아니오", - t23: "릴리스 노트", - t24: "시작", - t25: "완료", - t26: "로그인", - t27: "등록", - t28: "최근", - t29: "상점", - t30: "메뉴얼", - t31: "새 프로젝트", - t32: "새 프로젝트 생성", - t33: "프로젝트 열기", - t34: "핫스팟", - t35: "최근 사용", - t36: "예", - t37: "하나 이상의 프린터를 선택해야 합니다.", - t38: "취소", - t39: "수락", - t40: "네트워크 연결이 끊겼습니다. 확인하고 나중에 다시 시도하세요.", - t47: "로그인 지역을 선택해주세요", - t48: "아시아 태평양", - t49: "중국", - t50: "로그 아웃", - t52: "건너뛰기", - t53: "가입", - t54: "3D 프린팅 커뮤니티에서 우리는 각자의 슬라이싱 매개변수와 설정을 조정하는 과정에서 서로의 성공과 실패를 통해 배웁니다. Orca Slicer는 동일한 원칙을 따르며 기계 학습을 사용하여 사용자의 방대한 출력물의 성공과 실패를 통해 성능을 향상시킵니다. 우리는 실제 데이터를 제공하여 Orca Slicer가 더욱 똑똑해지도록 교육하고 있습니다. 귀하가 원할 경우 이 서비스는 오류 로그 및 사용 로그의 정보에 액세스합니다. 여기에는 다음에 설명된 정보가 포함될 수 있습니다.", - t55: "개인 정보 정책", - t56: ". 당사는 이름, 주소, 결제 정보 또는 전화번호를 포함하되 이에 국한되지 않고 개인을 직간접적으로 식별할 수 있는 개인 데이터를 수집하지 않습니다. 이 서비스를 활성화함으로써 귀하는 본 약관과 개인정보 보호정책에 대한 설명에 동의하게 됩니다.", - t57: "", - t58: "", - t59: ".", - t60: "유럽", - t61: "북미", - t62: "다른 지역", - t63: "지역을 변경하면 계정이 로그아웃됩니다. 나중에 다시 로그인해 주세요.", - t64: "Bambu 네트워크 플러그인", - t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", - t66: "전체 원격 제어", - t67: "라이브뷰 스트리밍", - t68: "사용자 데이터 동기화", - t69: "Bambu 네트워크 플러그인 설치", - t70: "", - t71: "다운로드 중", - t72: "다운로드 실패", - t73: "설치 완료.", - t74: "재시작", - t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", - t76: "Bambu 네트워크 플러그인이 감지되지 않습니다. 여기를 ", - t77: "클릭", - t78: " 하여 설치하세요.", - t79: "플러그인을 설치하지 못했습니다. ", - t80: "다음 단계를 시도해 보세요:", - t81: "1, 클릭 ", - t82: " 하여 플러그인 디렉토리를 엽니다.", - t83: "2, 열려 있는 모든 Orca Slicer를 닫습니다.", - t84: "3, 플러그인 디렉터리 아래의 모든 파일 삭제합니다", - t85: "4, Orca Slicer를 다시 열고 플러그인을 다시 설치하세요.", - t86: "닫기", - t87: "사용자 메뉴얼", - t88: "제거", - t89: "포함된 폴더 열기", - t90: "3D 모델", - t91: "3D 모델 다운로드", - t92: "Bambu Christmas Cabin", - t93: "프린터 연결", - t94: "장치를 보려면 프린터 연결을 설정하세요.", - t126: "로딩 중……", - orca1: "Edit Project Info", - orca2: "No model information", - orca6: "Bambu Cloud", - }, - tr_TR: { - t1: "Orca Slicer'a hoş geldiniz", - t2: "Orca Dilimleyici birkaç adımda kurulacaktır. Hadi başlayalım!", - t3: "Kullanıcı Sözleşmesi", - t4: "Reddet", - t5: "Onayla", - t6: "Herkesin yazdırma işini iyileştirmek için
yardımınızı rica ediyoruz", - t7: "Anonim verilerin gönderilmesine izin ver", - t8: "Geri", - t9: "İleri", - t10: "Yazıcı Seçimi", - t11: "Hepsi", - t12: "Hepsini temizle", - t13: "mm nozul", - t14: "Filament Seçimi", - t15: "Yazıcı", - t16: "Filament türü", - t17: "Üretici", - t18: "Hata", - t19: "En az bir filament seçilmelidir.", - t20: "Varsayılan filamenti kullanmak ister misiniz ?", - t21: "Evet", - t22: "Hayır", - t23: "Sürüm notu", - t24: "Başla", - t25: "Bitir", - t26: "Giriş Yap", - t27: "Kayıt Ol", - t28: "Son", - t29: "Mağaza", - t30: "Manual", - t31: "Yeni proje", - t32: "Yeni proje oluştur", - t33: "Projeyi Aç", - t34: "Erişim noktası", - t35: "Yakın zamanda açıldı", - t36: "OK", - t37: "En az bir yazıcı seçilmelidir.", - t38: "İptal Et", - t39: "Onayla", - t40: "Ağ bağlantısı kesildi, lütfen kontrol edin ve daha sonra tekrar deneyin.", - t47: "Lütfen giriş bölgenizi seçin", - t48: "Asya-Pasifik", - t49: "Çin", - t50: "Çıkış Yap", - t52: "Atla", - t53: "Katıl", - t54: "3D Baskı topluluğunda, kendi dilimleme parametrelerimizi ve ayarlarımızı düzenlerken birbirimizin başarılarından ve başarısızlıklarından öğreniyoruz. Orca Slicer da aynı prensibi takip ediyor ve kullanıcılarımızın yaptığı çok sayıda baskının başarı ve başarısızlıklarından performansını artırmak için makine öğrenimini kullanıyor. Orca Slicer'ı gerçek dünya verileriyle besleyerek daha akıllı olması için eğitiyoruz. İsterseniz bu hizmet, hata günlüklerinizden ve kullanım günlüklerinizden, burada açıklanan bilgileri de içerebilecek bilgilere erişecektir. ", - t55: "Gizlilik Politikası", - t56: ". İsimler, adresler, ödeme bilgileri veya telefon numaraları dahil ancak bunlarla sınırlı olmamak üzere, bir bireyin doğrudan veya dolaylı olarak tanımlanmasını sağlayacak hiçbir Kişisel Veri toplamayacağız. Bu hizmeti etkinleştirerek bu şartları ve Gizlilik Politikasına ilişkin beyanı kabul etmiş olursunuz.", - t57: "", - t58: "", - t59: ".", - t60: "Avrupa", - t61: "Kuzey Amerika", - t62: "Diğerleri", - t63: "Bölgeyi değiştirdikten sonra hesabınızdan çıkış yapılacaktır. Lütfen daha sonra tekrar giriş yapın.", - t64: "Bambu Ağı eklentisi", - t65: "Lütfen bu eklentilerin OrcaSlicer tarafından geliştirilmediğini veya bakımının yapılmadığını unutmayın. Kendi takdirinize ve riskinize göre kullanılmalıdırlar.", - t66: "Tam uzaktan kontrol", - t67: "Canlı görüntü akışı", - t68: "Kullanıcı veri senkronizasyonu", - t69: "Bambu Ağı eklentisini yükleyin", - t70: "", - t71: "İndiriliyor", - t72: "İndirme başarısız oldu", - t73: "Kurulum başarılı oldu.", - t74: "Tekrar başlat", - t75: "Bazı yazıcı üreticileri, yazıcılarıyla iletişim için özel eklentilere ihtiyaç duyar. Bu tür yazıcılar kullanıyorsanız lütfen ilgili eklentiyi seçin.", - t76: "Bambu Ağı eklentisi algılanmadı. Yüklemek ", - t77: "için ", - t78: " burayı tıklayın.", - t79: "Eklenti yüklenemedi. ", - t80: "Aşağıdaki adımları deneyin:", - t81: "1, Eklenti ", - t82: " dizinini açmak için tıklayın", - t83: "2, Tüm açık Orca slicerı kapatın", - t84: "3, Eklenti dizini altındaki tüm dosyaları silin", - t85: "4, Orca Slicer'ı yeniden açın ve eklentiyi tekrar yükleyin", - t86: "Kapat", - t87: "Kullanım kılavuzu", - t88: "Kaldır", - t89: "Dosyayı içeren klasörü açınız", - t90: "3D Model", - t91: "3D modelleri indirin", - t92: "Oluşturan", - t93: "Değiştiren", - t94: "Paylaşan", - t95: "Model Bilgileri", - t96: "Aksesuarlar", - t97: "Profil Bilgisi", - t98: "Model adı", - t100: "Model açıklaması", - t101: "Malzeme Listesi", - t102: "Montaj Kılavuzu", - t103: "Diğer", - t104: "Profil ismi", - t105: "Profil Yazarı", - t106: "Profil açıklaması", - t107: "Çevrimiçi Modeller", - t108: "DAHA FAZLA", - t109: "Sistem Filamentleri", - t110: "Özel Filamentler", - t111: "Yeni Oluştur", - t112: "Programa Katılın", - t113: "Tercihinizi istediğiniz zaman değiştirebilirsiniz.", - t126: "Yükleme devam ediyor……", - orca1: "Proje Bilgilerini Düzenle", - orca2: "Model bilgisi yok", - orca3: "Gizli Mod", - orca4: "Bu, Bambu'nun bulut hizmetlerine veri iletimini durdurur. BBL makinelerini kullanmayan veya yalnızca LAN modunu kullanan kullanıcılar bu işlevi güvenle açabilir.", - orca5: "Gizli Modu etkinleştirin.", - orca6: "Bambu Cloud", - }, - pl_PL: { - t1: "Witamy w Orca Slicer", - t2: "Orca Slicer zostanie skonfigurowany w kilku krokach. Zacznijmy!", - t3: "Umowa użytkownika", - t4: "Nie zgadzam się", - t5: "Zgadzam się", - t6: "Uprzejmie prosimy o pomoc w ulepszaniu
druku dla każdego", - t7: "Zezwól na wysyłanie anonimowych danych", - t8: "Wstecz", - t9: "Dalej", - t10: "Wybór drukarki", - t11: "Wszystkie", - t12: "Wyczyść wszystko", - t13: "mm dysza", - t14: "Wybór filamentu", - t15: "Drukarka", - t16: "Typ filamentu", - t17: "Dostawca", - t18: "Błąd", - t19: "Przynajmniej jeden filament musi być wybrany.", - t20: "Czy chcesz użyć domyślnego filamentu?", - t21: "Tak", - t22: "Nie", - t23: "Informacje o wydaniu", - t24: "Rozpocznij", - t25: "Zakończ", - t26: "Logowanie", - t27: "Rejestracja", - t28: "Ostatnie", - t29: "Centrum", - t30: "Instrukcja", - t31: "Nowy Projekt", - t32: "Utwórz nowy projekt", - t33: "Otwórz Projekt", - t34: "hotspot", - t35: "Ostatnio otwarte", - t36: "OK", - t37: "Przynajmniej jedna drukarka musi być wybrana.", - t38: "Anuluj", - t39: "Potwierdź", - t40: "Rozłączenie sieci, proszę sprawdzić i spróbować ponownie później.", - t47: "Proszę wybrać swój region logowania", - t48: "Azja-Pacyfik", - t49: "Chiny", - t50: "Wyloguj", - t52: "Pomiń", - t53: "Dołącz", - t54: "W społeczności druku 3D uczymy się od sukcesów i porażek innych, aby dostosować nasze własne parametry i ustawienia krojenia. Orca Slicer podąża tą samą zasadą i wykorzystuje uczenie maszynowe do poprawy swojej wydajności na podstawie sukcesów i porażek dużej liczby wydruków naszych użytkowników. Szkolimy Orca Slicer, aby był mądrzejszy, dostarczając mu danych z rzeczywistego świata. Jeśli chcesz, ta usługa uzyska dostęp do informacji z Twoich logów błędów i logów użytkowania, które mogą zawierać informacje opisane w ", - t55: "Polityka Prywatności", - t56: ". Nie będziemy zbierać żadnych Danych Osobowych, przez które można bezpośrednio lub pośrednio zidentyfikować osobę, w tym bez ograniczeń nazwisk, adresów, informacji o płatnościach lub numerów telefonów. Aktywując tę usługę, zgadzasz się na te warunki i oświadczenie dotyczące Polityki Prywatności.", - t57: "", - t58: "", - t59: ".", - t60: "Europa", - t61: "Ameryka Północna", - t62: "Inne", - t63: "Po zmianie regionu, zostaniesz wylogowany z konta. Proszę zaloguj się ponownie później.", - t64: "Wtyczka Bambu Network", - t65: "Proszę mieć świadomość, że te wtyczki nie są rozwijane ani utrzymywane przez OrcaSlicer. Powinny być używane na własne ryzyko i z rozwagą.", - t66: "Pełna kontrola zdalna", - t67: "Transmisja na żywo", - t68: "Synchronizacja danych użytkownika", - t69: "Zainstaluj wtyczkę Bambu Network", - t70: "", - t71: "Pobieranie", - t72: "Nieudane pobieranie", - t73: "Instalacja zakończona sukcesem.", - t74: "Uruchom ponownie", - t75: "Niektórzy dostawcy drukarek wymagają własnych wtyczek do komunikacji ze swoimi drukarkami. Proszę wybrać odpowiednią wtyczkę, jeśli korzystasz z takich drukarek.", - t76: "Wtyczka Bambu Network nie wykryta. Kliknij ", - t77: "tutaj", - t78: " aby zainstalować.", - t79: "Nie udało się zainstalować wtyczki. ", - t80: "Spróbuj następujących kroków:", - t81: "1, Kliknij ", - t82: " aby otworzyć katalog wtyczek", - t83: "2, Zamknij wszystkie otwarte Orca Slicer", - t84: "3, Usuń wszystkie pliki z katalogu wtyczek", - t85: "4, Ponownie otwórz Orca Slicer i zainstaluj wtyczkę ponownie", - t86: "Zamknij", - t87: "Instrukcja użytkownika", - t88: "Usuń", - t89: "Otwórz folder zawierający", - t90: "Model 3D", - t91: "Pobierz modele 3D", - t92: "Utworzone przez", - t93: "Połączenie z drukarką", - t94: "Proszę skonfigurować połączenie z drukarką, aby wyświetlić urządzenie.", - t95: "Informacje o modelu", - t96: "Akcesoria", - t97: "Informacje o profilu", - t98: "Nazwa modelu", - t100: "Opis modelu", - t101: "BOM", - t102: "Przewodnik montażu", - t103: "Inne", - t104: "Nazwa profilu", - t105: "Autor profilu", - t106: "Opis profilu", - t107: "Modele online", - t108: "WIĘCEJ", - t109: "Systemowe filamenty", - t110: "Niestandardowe filamenty", - t111: "Utwórz nowy", - t112: "Dołącz do programu", - t113: "Możesz zmienić swój wybór w preferencjach w dowolnym momencie.", - t126: "Ładowanie trwa……", - orca1: "Edytuj informacje o projekcie", - orca2: "Brak informacji o modelu", - orca3: "Tryb «Niewidzialny»", - orca4: "To wyłączy przesyłanie danych do usług chmurowych Bambu. Użytkownicy, którzy nie korzystają z maszyn BBL lub używają tylko trybu LAN, mogą bez obaw włączyć tę opcję.", - orca5: "Włącz tryb «Niewidzialny»", - orca6: "Bambu Cloud", - }, - pt_BR: { - t1: "Bem-vindo ao Orca Slicer", - t2: "Orca Slicer será configurado em várias etapas. Vamos começar!", - t3: "Termos de Uso", - t4: "Discordo", - t5: "Concordo", - t6: "Nós pedimos gentilmente sua ajuda para melhorar a impressão de todos.
Venha e junte-se ao nosso Programa de Melhoria de Experiência do Usuário", - t7: "Juntar-se ao nosso Programa de Melhoria de Experiência do Usuário", - t8: "Voltar", - t9: "Próximo", - t10: "Seleção de Impressora", - t11: "Tudo", - t12: "Limpar tudo", - t13: "mm nozzle", - t14: "Seleção de Filamento", - t15: "Impressora", - t16: "Tipo de Filamento", - t17: "Fabricante", - t18: "Erro", - t19: "Pelo menos um filamento deve ser selecionado.", - t20: "Você deseja usar o filamento padrão?", - t21: "Sim", - t22: "Não", - t23: "Notas de Atualização", - t24: "Vamos Começar", - t25: "Terminar", - t26: "Login", - t27: "Registrar", - t28: "Recente", - t29: "Loja", - t30: "Manual", - t31: "Novo Projeto", - t32: "Criar Novo Projeto", - t33: "Abrir Projeto", - t34: "hotspot", - t35: "Aberto Recentemente", - t36: "OK", - t37: "Pelo menos uma impressora deve ser selecionada.", - t38: "Cancelar", - t39: "Confirmar", - t40: "Conexão desconectada, por favor cheque e tente novamente.", - t47: "Por favor, selecione sua região de login", - t48: "Asia-Pacifico", - t49: "China", - t50: "Desconectar", - t52: "Pular", - t53: "Juntar", - t54: "Na comunidade de Impressão 3D, aprendemos com os sucessos e falhas uns dos outros para ajustar nossos próprios parâmetros e configurações de fatiamento. O Orca Slicer segue o mesmo princípio e utiliza aprendizado de máquina para melhorar seu desempenho com base nos sucessos e falhas de um grande número de impressões realizadas por nossos usuários. Estamos treinando o Orca Slicer para ser mais inteligente, alimentando-o com dados do mundo real. Se você concordar, este serviço acessará informações de seus registros de erros e registros de uso, que podem incluir informações descritas em…", - t55: "Política de Privacidade", - t56: ". Não coletaremos nenhum dado pessoal pelo qual um indivíduo possa ser identificado diretamente ou indiretamente, incluindo, sem limitação, nomes, endereços, informações de pagamento ou números de telefone. Ao habilitar este serviço, você concorda com estes termos e com a declaração sobre a Política de Privacidade.", - t57: "", - t58: "", - t59: ".", - t60: "Europa", - t61: "America do Norte", - t62: "Outras", - t63: "Após alterar sua região, sua conta será desconectada. Por favor faça login novamente mais tarde.", - t64: "Plugins Proprietários", - t65: "Por favor seja cuidadoso estes plugins não são desenvolvidos ou mantidos por OrcaSlicer. Eles devem ser usados por sua conta e risco.", - t66: "Controle remoto total", - t67: "Transmissão Ao Vivo", - t68: "Sincronização de Dados do Usuário", - t69: "Instalar Bambu Network plug-in", - t70: "", - t71: "Baixando", - t72: "Falha baixando", - t73: "Instalação concluída.", - t74: "Reiniciar", - t75: "Algumass fabricantes de impressoras exigem plugins proprietários para comunicação com suas impressoras. Se você utiliza tais impressoras, selecione o plug-in correspondente.", - t76: "Bambu Network plug-in não detectado. Clique ", - t77: "Aqui", - t78: " para instalar isto.", - t79: "Instalação do plug-in falhou. ", - t80: "Tente os seguintes passos:", - t81: "1, Clique ", - t82: " para abrir a pasta do plug-in", - t83: "2, Feche totalmente o Orca Slicer", - t84: "3, Delete todos os arquivos na pasta do plug-in", - t85: "4, Reabra o Orca Slicer e instale o plug-in novamente", - t86: "Fechar", - t87: "Manual de Usuário", - t88: "Remover", - t89: "Abrir pasta de Conteúdo", - t90: "Modelo 3D", - t91: "Baixar Modelos 3D", - t92: "Criado por", - t93: "Remixado por", - t94: "Compartilhado por", - t95: "Informações do Modelo", - t96: "Acessórios", - t97: "Informações do Perfil", - t98: "Nome do Modelo", - t100: "Descrição do Modelo", - t101: "BOM", - t102: "Guia de Montagem", - t103: "Outro", - t104: "Nome do Perfil", - t105: "Autor do Perfil", - t106: "Descrição do Perfil", - t107: "Modelos Online", - t108: "MAIS", - t109: "Filamentos do Sistema", - t110: "Filamentos Personalizados", - t111: "Criar Novo", - t112: "Junte-se ao Programa", - t113: "Você pode alterar sua escolha nas Preferências a qualquer momento", - t126: "Carregamento em andamento……", - orca1: "Editar Info do Projeto", - orca2: "Sem informação do modelo", - orca3: "Modo Furtivo", - orca4: "Isso interrompe a transmissão de dados para os serviços de nuvem da Bambu. Usuários que não usam máquinas BBL ou usam somente o modo LAN podem ativar essa função com segurança.", - orca5: "Habilita Modo Furtivo.", - orca6: "Bambu Cloud", - }, - lt_LT: { - t1: "Pasisveikinkite su Orca Slicer", - t2: "Orca Slicer bus nustatyta per kelis žingsnius. Pradėkime!", - t3: "Naudotojo sutartis", - t4: "Nesutinku", - t5: "Sutinku", - t6: "Maloniai prašome jūsų pagalbos, kad pagerintume visų spausdinimą.
Prisijunkite prie mūsų klientų patirties gerinimo programos", - t7: "Prisijunkite prie mūsų klientų patirties gerinimo programos", - t8: "Atgal", - t9: "Pirmyn", - t10: "Spausdintuvo pasirinkimas", - t11: "Visi", - t12: "Išvalyti visus", - t13: "mm purkštukas", - t14: "Gijos pasirinkimas", - t15: "Spausdintuvas", - t16: "Gijos tipas", - t17: "Gamintojas", - t18: "Klaida", - t19: "Turi būti pasirinkta bent viena gija.", - t20: "Ar norite naudoti numatytąją giją?", - t21: "Taip", - t22: "Ne", - t23: "Išleidimo pastabos", - t24: "Pradėti", - t25: "Pabaigti", - t26: "Prisijungti", - t27: "Prisiregistruoti", - t28: "Naujausi", - t29: "Pirkti", - t30: "Rankinis", - t31: "Naujas projektas", - t32: "Sukurti naują projektą", - t33: "Atverti projektą", - t34: "Prieigos taškas", - t35: "Neseniai atidaryti", - t36: "Gerai", - t37: "Turi būti pasirinktas bent vienas spausdintuvas.", - t38: "Atšaukti", - t39: "Patvirtinti", - t40: "Tinklas atjungtas, patikrinkite ir bandykite vėliau.", - t47: "Pasirinkite prisijungimo regioną", - t48: "Azija-Ramusis vandenynas", - t49: "Kinija", - t50: "Atsijungti", - t52: "Praleisti", - t53: "Prisijungti", - t54: "3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad galėtume pritaikyti savo pjaustymo parametrus ir nustatymus. Orca Slicer vadovaujasi tuo pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą, remdamasi daugybės mūsų naudotojų atspaudų sėkmėmis ir nesėkmėmis. Maitindami Orca Slicer realaus pasaulio duomenimis, mokome ją būti protingesne. Jei pageidaujate, ši paslauga pasieks informaciją iš jūsų klaidų žurnalų ir naudojimo žurnalų, į kuriuos gali būti įtraukta informacija, aprašyta ", - t55: "privatumo politikoje", - t56: ". Nerinksime jokių asmens duomenų, pagal kuriuos galima tiesiogiai ar netiesiogiai nustatyti asmens tapatybę, įskaitant, bet neapsiribojant vardus, adresus, mokėjimo informaciją ar telefono numerius. Įjungdami šią paslaugą sutinkate su šiomis sąlygomis ir privatumo politikos nuostatomis.", - t57: "", - t58: "", - t59: ".", - t60: "Europa", - t61: "Šiaurės Amerika", - t62: "Kiti", - t63: "Pakeitus regioną, jūsų paskyra bus išregistruota. Vėliau vėl prisijunkite.", - t64: "Patentuoti papildiniai", - t65: "Atkreipkite dėmesį, kad OrcaSlicer šių papildinių nesukuria ir neprižiūri. Juos turėtumėte naudoti savo nuožiūra ir rizika.", - t66: "Pilnas nuotolinis valdymas", - t67: "Tiesioginė transliacija", - t68: "Naudotojo duomenų sinchronizavimas", - t69: "Įdiegti Bambu tinklo papildinį", - t70: "", - t71: "Atsisiunčiama", - t72: "Nepavyko atsisiųsti", - t73: "Diegimas sėkmingas.", - t74: "Paleisti iš naujo", - t75: "Kai kurie spausdintuvų gamintojai reikalauja patentuotų priedų, kad būtų galima bendrauti su jų spausdintuvais. Jei naudojate tokius spausdintuvus, pasirinkite atitinkamą įskiepį.", - t76: "Neaptiktas Bambu tinklo papildinys. Spustelėkite ", - t77: "čia", - t78: " jo diegimui.", - t79: "Nepavyko įdiegti papildinio. ", - t80: "Išbandykite šiuos žingsnius:", - t81: "1, Spustelkite ", - t82: " atidaryti papildinių katalogą", - t83: "2, Uždarykite visas veikiančias Orca Slicer programas", - t84: "3, Ištrinkite visus failus iš papildinių katalogo", - t85: "4, Iš naujo atverkite OrcaSlicer ir iš naujo įdiekite papildinį", - t86: "Užverti", - t87: "Naudotojo vadovas", - t88: "Pašalinti", - t89: "Atidaryti katalogą, kuriame yra", - t90: "3D modelis", - t91: "Atsisiųsti 3D modelius", - t92: "Sukurta", - t93: "Perkurta", - t94: "Pasidalinta", - t95: "Modelio informacija", - t96: "Priedai", - t97: "Profilio informacija", - t98: "Modelio pavadinimas", - t100: "Modelio aprašymas", - t101: "BOM", - t102: "Surinkimo vadovas", - t103: "Kita", - t104: "Profilio pavadinimas", - t105: "Profilio autorius", - t106: "Profilio aprašymas", - t107: "Modeliai internete", - t108: "DAUGIAU", - t109: "Sistemos gijos", - t110: "Pasirinktinės gijos", - t111: "Sukurti naują", - t112: "Prisijungti prie programos", - t113: "Savo pasirinkimą galite bet kada pakeisti.", - orca1: "Redaguoti projekto informaciją", - orca2: "Nėra informacijos apie modelį", - orca3: "Slaptas režimas", - orca4: "Tai sustabdo duomenų perdavimą į Bambu debesijos paslaugas. Vartotojai, kurie nenaudoja BBL mašinų arba naudoja tik LAN režimą, gali drąsiai įjungti šią funkciją.", - orca5: "Įjungti slaptą režimą.", - orca6: "Bambu Cloud", - }, -}; - -var LANG_COOKIE_NAME = "BambuWebLang"; -var LANG_COOKIE_EXPIRESECOND = 365 * 86400; - -function TranslatePage() { - let strLang = GetQueryString("lang"); - if (strLang != null) { - //setCookie(LANG_COOKIE_NAME,strLang,LANG_COOKIE_EXPIRESECOND,'/'); - localStorage.setItem(LANG_COOKIE_NAME, strLang); - } else { - //strLang=getCookie(LANG_COOKIE_NAME); - strLang = localStorage.getItem(LANG_COOKIE_NAME); - } - - //alert(strLang); - - if (!LangText.hasOwnProperty(strLang)) strLang = "en"; - - let AllNode = $(".trans"); - let nTotal = AllNode.length; - for (let n = 0; n < nTotal; n++) { - let OneNode = AllNode[n]; - - let tid = $(OneNode).attr("tid"); - if (LangText[strLang].hasOwnProperty(tid)) { - $(OneNode).html(LangText[strLang][tid]); - } - } -} - +var LangText = { + en: { + t1: "Welcome to Orca Slicer", + t2: "Orca Slicer will be setup in several steps. Let's start!", + t3: "User Agreement", + t4: "Disagree", + t5: "Agree", + t6: "We kindly request your help to improve everyone's printing.
Come and Join our Customer Experience Improvement Program", + t7: "Join our Customer Experience Improvement Program", + t8: "Back", + t9: "Next", + t10: "Printer Selection", + t11: "All", + t12: "Clear all", + t13: "mm nozzle", + t14: "Filament Selection", + t15: "Printer", + t16: "Filament type", + t17: "Vendor", + t18: "Error", + t19: "At least one filament must be selected.", + t20: "Do you want to use default filament ?", + t21: "Yes", + t22: "No", + t23: "Release note", + t24: "Get Started", + t25: "Finish", + t26: "Login", + t27: "Register", + t28: "Recent", + t29: "Mall", + t30: "Manual", + t31: "New Project", + t32: "Create new project", + t33: "Open Project", + t34: "hotspot", + t35: "Recently opened", + t36: "OK", + t37: "At least one printer must be selected.", + t38: "Cancel", + t39: "Confirm", + t40: "Network disconnect, please check and try again later.", + t47: "Please select your login region", + t48: "Asia-Pacific", + t49: "China", + t50: "Log out", + t52: "Skip", + t53: "Join", + t54: "In the 3D Printing community, we learn from each other's successes and failures to adjust our own slicing parameters and settings. Orca Slicer follows the same principle and uses machine learning to improve its performance from the successes and failures of the vast number of prints by our users. We are training Orca Slicer to be smarter by feeding them the real-world data. If you are willing, this service will access information from your error logs and usage logs, which may include information described in ", + t55: "Privacy Policy", + t56: ". We will not collect any Personal Data by which an individual can be identified directly or indirectly, including without limitation names, addresses, payment information, or phone numbers. By enabling this service, you agree to these terms and the statement about Privacy Policy.", + t57: "", + t58: "", + t59: ".", + t60: "Europe", + t61: "North America", + t62: "Others", + t63: "After changing the region, your account will be logged out. Please log in again later.", + t64: "Proprietary Plugins", + t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", + t66: "Full remote control", + t67: "Liveview streaming", + t68: "User data synchronization", + t69: "Install Bambu Network plug-in", + t70: "", + t71: "Downloading", + t72: "Downloading failed", + t73: "Installation successful.", + t74: "Restart", + t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", + t76: "Bambu Network plug-in not detected. Click ", + t77: "here", + t78: " to install it.", + t79: "Failed to install plug-in. ", + t80: "Try the following steps:", + t81: "1, Click ", + t82: " to open the plug-in directory", + t83: "2, Close all open Orca Slicer", + t84: "3, Delete all files under the plug-in directory", + t85: "4, Reopen Orca Slicer and install the plug-in again", + t86: "Close", + t87: "User Manual", + t88: "Remove", + t89: "Open Containing Folder", + t90: "3D Model", + t91: "Download 3D models", + t92: "Create by", + t93: "Remixed by", + t94: "Shared by", + t95: "Model Information", + t96: "Accessories", + t97: "Profile Information", + t98: "Model name", + t100: "Model description", + t101: "BOM", + t102: "Assembly Guide", + t103: "Other", + t104: "Profile name", + t105: "Profile Author", + t106: "Profile description", + t107: "Online Models", + t108: "MORE", + t109: "System Filaments", + t110: "Custom Filaments", + t111: "Create New", + t112: "Join the Program", + t113: "You may change your choice in preference anytime.", + t126: "Loading……", + orca1: "Edit Project Info", + orca2: "No model information", + orca3: "Stealth Mode", + orca4: "This stops the transmission of data to Bambu's cloud services. Users who don't use BBL machines or use LAN mode only can safely turn on this function.", + orca5: "Enable Stealth Mode.", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + ca_ES: { + t1: "Benvingut a Orca Slicer", + t2: "Orca Slicer es configurarà en diversos passos. Comencem!", + t3: "Acord de l'Usuari", + t4: "No accepto", + t5: "Accepto", + t6: "Sol·licitem la vostra ajuda per millorar la impressió de tothom.
Vine i uneix-te al nostre Programa de Millora de l'Experiència del Client", + t7: "Uneix-te al nostre Programa de Millora de l'Experiència del Client", + t8: "Enrere", + t9: "Següent", + t10: "Selecció d'Impressora", + t11: "Totes", + t12: "Netejar tot", + t13: "mm broquet", + t14: "Selecció de Filament", + t15: "Impressora", + t16: "Tipus de filament", + t17: "Proveïdor", + t18: "Error", + t19: "S'ha de seleccionar almenys un filament.", + t20: "Vols utilitzar el filament per defecte?", + t21: "sí", + t22: "no", + t23: "Nota de llançament", + t24: "Comença", + t25: "Finalitzar", + t26: "Iniciar sessió", + t27: "Registrar", + t28: "Recent", + t29: "Botiga", + t30: "Manual", + t31: "Nou Projecte", + t32: "Crear nou projecte", + t33: "Obrir Projecte", + t34: "hotspot", + t35: "Obert recentment", + t36: "D'acord", + t37: "S'ha de seleccionar almenys una impressora.", + t38: "Cancel·lar", + t39: "Confirmar", + t40: "Desconnexió de la xarxa, si us plau comprova i intenta-ho de nou més tard.", + t47: "Si us plau selecciona la teva regió d'inici de sessió", + t48: "Àsia-Pacífic", + t49: "Xina", + t50: "Tancar sessió", + t52: "Saltar", + t53: "Unir-se", + t54: "A la comunitat d'Impressió 3D, aprenem dels èxits i fracassos dels altres per ajustar els nostres propis paràmetres i configuracions de laminació. Orca Slicer segueix el mateix principi i utilitza l'aprenentatge automàtic per millorar el seu rendiment a partir dels èxits i fracassos d'un gran nombre d'impressions dels nostres usuaris. Estem entrenant Orca Slicer per ser més intel·ligent alimentant-lo amb dades del món real. Si estàs disposat, aquest servei accedirà a informació dels teus registres d'errors i registres d'ús, que poden incloure informació descrita a la ", + t55: "Política de Privacitat", + t56: ". No recopilarem cap dada personal que pugui identificar directament o indirectament a un individu, incloent-hi noms, adreces, informació de pagament o números de telèfon. En habilitar aquest servei, acceptes aquests termes i la declaració sobre la Política de Privacitat.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "Amèrica del Nord", + t62: "Altres", + t63: "Després de canviar la regió, el teu compte es tancarà la sessió. Si us plau inicia sessió de nou més tard.", + t64: "Connectors propietaris", + t65: "Tingues en compte que aquests connectors no són desenvolupats ni mantinguts per OrcaSlicer. S'han d'utilitzar a la teva discreció i risc.", + t66: "Control remot complet", + t67: "Transmissió en directe", + t68: "Sincronització de dades de l'usuari", + t69: "Instal·lar connector Bambu Network", + t70: "", + t71: "Descarregant", + t72: "Descàrrega fallida", + t73: "Instal·lació exitosa.", + t74: "Reiniciar", + t75: "Alguns proveïdors d'impressora requereixen connectors propietaris per comunicar-se amb les seves impressores. Si us plau selecciona el connector corresponent si utilitzes aquestes impressores.", + t76: "No s'ha detectat el connector Bambu Network. Fes clic ", + t77: "aquí", + t78: " per instal·lar-lo.", + t79: "No s'ha pogut instal·lar el connector.", + t80: "Prova els següents passos:", + t81: "1, Fes clic ", + t82: " per obrir el directori de connectors", + t83: "2, Tanca totes les Orca Slicer obertes", + t84: "3, Elimina tots els fitxers del directori de connectors", + t85: "4, Reobre Orca Slicer i instal·la el connector de nou", + t86: "Tancar", + t87: "Manual de l'Usuari", + t88: "Eliminar", + t89: "Obrir Carpeta Contenidora", + t90: "Model 3D", + t91: "Descarregar models 3D", + t92: "Creat per", + t93: "Remesclat per", + t94: "Compartit per", + t95: "Informació del Model", + t96: "Accessoris", + t97: "Informació del Perfil", + t98: "Nom del model", + t100: "Descripció del model", + t101: "BOM", + t102: "Guia d'Assemblea", + t103: "Altres", + t104: "Nom del perfil", + t105: "Autor del perfil", + t106: "Descripció del perfil", + t107: "Models en línia", + t108: "MÉS", + t109: "Filaments del Sistema", + t110: "Filaments Personalitzats", + t111: "Crear Nou", + t112: "Unir-se al Programa", + t113: "Pots canviar la teva elecció en les preferències en qualsevol moment.", + orca1: "Editar Informació del Projecte", + orca2: "No hi ha informació del model", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + es_ES: { + t1: "Bienvenido a Orca Slicer", + t2: "Orca Slicer se configurará mediante varios pasos. ¡Comencemos!", + t3: "Términos de uso", + t4: "No acepto", + t5: "Acepto", + t6: "Le rogamos su ayuda para mejorar la experiencia de impresión de todos.
Únase a nuestro Programa de Mejora de la Experiencia del Cliente", + t7: "Permitir enviar datos anónimos", + t8: "Volver", + t9: "Siguiente", + t10: "Selección de impresora", + t11: "Todo", + t12: "Limpiar todo", + t13: "mm de boquilla", + t14: "Selección de filamento", + t15: "Impresora", + t16: "Tipo de filamento", + t17: "Fabricante", + t18: "Error", + t19: "Al menos se debe seleccionar un filamento.", + t20: "¿Desea usar el filamento por defecto?", + t21: "Sí", + t22: "No", + t23: "Notas de la versión", + t24: "Comenzar", + t25: "Finalizar", + t26: "Iniciar sesión", + t27: "Registrarse", + t28: "Reciente", + t29: "Tienda", + t30: "Manual", + t31: "Nuevo proyecto", + t32: "Crear nuevo proyecto", + t33: "Abrir proyecto", + t34: "punto de acceso", + t35: "Abiertos recientemente", + t36: "OK", + t37: "Al menos se debe seleccionar una impresora.", + t38: "Cancelar", + t39: "Confirmar", + t40: "Desconectado, por favor compruebe la conexión de red e inténtelo de nuevo.", + t47: "Por favor, seleccione su región:", + t48: "Asia-Pacífico", + t49: "China", + t50: "Cerrar sesión", + t52: "Omitir", + t53: "Unirse", + t54: "En la comunidad de impresión 3D aprendemos de los éxitos y fracasos de los demás para ajustar nuestros propios parámetros y configuraciones de corte. Orca Slicer sigue el mismo principio y utiliza el aprendizaje automático para mejorar su rendimiento a partir de los éxitos y fallos del gran número de impresiones realizadas por nuestros usuarios. Estamos entrenando a Orca Slicer para que sea más inteligente proporcionándole datos del mundo real. Si lo desea, este servicio accederá a la información de sus registros de errores y de uso, que pueden incluir la información descrita en nuestra ", + t55: "Política de privacidad", + t56: ". No recopilaremos ningún dato personal que pueda identificar directa o indirectamente a una persona, incluyendo, sin limitación, nombres, direcciones, información de pago o números de teléfono. Al habilitar este servicio, acepta estos términos y la declaración sobre la Política de privacidad.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "América del Norte", + t62: "Otras", + t63: "Después de cambiar la región, su cuenta se cerrará la sesión. Por favor, vuelva a iniciar sesión.", + t64: "Complementos propietarios", + t65: "Tenga en cuenta que estos complementos no están desarrollados ni mantenidos por OrcaSlicer. Deben usarse bajo su propia responsabilidad.", + t66: "Control remoto total", + t67: "Transmisión en vivo", + t68: "Sincronización de datos de usuario", + t69: "Instalar plug-in Bambu Network", + t70: "", + t71: "Descargando", + t72: "Descarga fallida", + t73: "Instalación exitosa.", + t74: "Reiniciar", + t75: "Algunos proveedores de impresoras requieren complementos propietarios para la comunicación con sus impresoras. Seleccione el complemento correspondiente si utiliza tales impresoras.", + t76: "Plug-in de Bambu Network no detectado. Haga clic ", + t77: "aquí", + t78: " para instalarlo.", + t79: "Fallo al instalar el complemento. ", + t80: "Intente los siguientes pasos:", + t81: "1. Haga clic ", + t82: " para abrir el directorio de complementos", + t83: "2. Cierre todas las instancias de Orca Slicer", + t84: "3. Elimine todos los archivos del directorio de complementos", + t85: "4. Vuelva a abrir Orca Slicer e instale el complemento de nuevo", + t86: "Cerrar", + t87: "Manual de usuario", + t88: "Eliminar", + t89: "Abrir carpeta contenedora", + t90: "Modelo 3D", + t91: "Descargar modelos 3D", + t92: "Creado por", + t93: "Remixado por", + t94: "Compartido por", + t95: "Información del modelo", + t96: "Accesorios", + t97: "Información del perfil", + t98: "Nombre del modelo", + t100: "Descripción del modelo", + t101: "Lista de materiales", + t102: "Guía de ensamblaje", + t103: "Otros", + t104: "Nombre del perfil", + t105: "Autor del perfil", + t106: "Descripción del perfil", + t107: "Modelos en línea", + t108: "Más", + t109: "Filamentos del sistema", + t110: "Filamentos personalizados", + t111: "Crear nuevo", + t112: "Unirse al programa", + t113: "Puede cambiar su elección en Preferencias en cualquier momento.", + t126: "Cargando……", + orca1: "Editar información del proyecto", + orca2: "No hay información sobre el modelo", + orca3: "Modo sigiloso", + orca4: "Esta función detiene la transmisión de datos a los servicios en la nube de Bambu. Los usuarios que no utilicen máquinas BBL o que solo usen el modo LAN pueden activar esta función con seguridad.", + orca5: "Activar modo sigiloso.", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + it_IT: { + t1: "Benvenuti in OrcaSlicer", + t2: "OrcaSlicer verrà configurato seguendo diversi passaggi. Cominciamo!", + t3: "Condizioni d'uso", + t4: "Non accetto", + t5: "Accetto", + t6: "Chiediamo gentilmente il tuo aiuto per migliorare la qualità delle stampe.
Iscriviti al nostro programma di miglioramento dell'esperienza utente", + t7: "Iscriviti al nostro programma di miglioramento dell'esperienza utente", + t8: "Indietro", + t9: "Avanti", + t10: "Selezione della stampante", + t11: "Tutto", + t12: "Cancella tutto", + t13: "mm ugello", + t14: "Selezione del filamento", + t15: "Stampante", + t16: "Tipo di filamento", + t17: "Produttore", + t18: "Errore", + t19: "È necessario selezionare almeno un filamento.", + t20: "Vuoi utilizzare il filamento predefinito?", + t21: "Sì", + t22: "No", + t23: "Note di rilascio", + t24: "Inizia", + t25: "Fine", + t26: "Accedi", + t27: "Registrati", + t28: "Recente", + t29: "Negozio", + t30: "Manuale", + t31: "Nuovo progetto", + t32: "Crea un nuovo progetto", + t33: "Apri progetto", + t34: "hotspot", + t35: "Aperti di recente", + t36: "OK", + t37: "È necessario selezionare almeno una stampante.", + t38: "Annulla", + t39: "Conferma", + t40: "Disconnesso, controlla la connessione di rete e riprova.", + t47: "Seleziona la tua regione di accesso", + t48: "Asia-Pacifico", + t49: "Cina", + t50: "Disconnettiti", + t52: "Salta", + t53: "Iscriviti", + t54: "Nella comunità di stampa 3D, impariamo dai successi e dagli insuccessi di ognuno per adattare i nostri parametri e le nostre impostazioni di slicing. OrcaSlicer segue lo stesso principio, utilizzando l'apprendimento automatico per migliorare le sue prestazioni sfruttando i successi e gli insuccessi delle numerose stampe dei nostri utenti. Stiamo addestrando OrcaSlicer ad essere più intelligente, fornendogli dati del mondo reale. Se lo desideri, questo servizio accederà alle informazioni dei tuoi registri di errore e di utilizzo, i quali possono includere informazioni descritte in ", + t55: "Politica sulla riservatezza", + t56: ". Non raccoglieremo alcun Dato Personale tramite il quale un individuo possa essere identificato direttamente o indirettamente, inclusi (senza limitazioni) nomi, indirizzi, informazioni di pagamento o numeri di telefono. Abilitando questo servizio, accetti questi termini e la dichiarazione sulla Politica sulla riservatezza.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "Nord America", + t62: "Altri", + t63: "Dopo aver cambiato la regione, il tuo profilo verrà disconnesso. Sarà necessario accedere di nuovo.", + t64: "Moduli proprietari", + t65: "Si prega di notare che questi moduli non sono sviluppati o mantenuti da OrcaSlicer. Dovrebbero essere utilizzati a proprio rischio e discrezione.", + t66: "Controllo remoto completo", + t67: "Video in diretta", + t68: "Sincronizzazione dei dati utente", + t69: "Installa il modulo di rete Bambu", + t70: "", + t71: "Scaricamento", + t72: "Scaricamento non riuscito", + t73: "Installazione riuscita.", + t74: "Riavvia", + t75: "Le stampanti di alcuni produttori richiedono dei moduli proprietari per far in modo che la comunicazione abbia successo. Seleziona il modulo corrispondente se utilizzi tali stampanti.", + t76: "Modulo di rete Bambu non rilevato. Fai clic ", + t77: "qui", + t78: " per installarlo.", + t79: "Impossibile installare il modulo. ", + t80: "Prova i seguenti passaggi:", + t81: "1, Fare clic ", + t82: " per aprire la directory del modulo", + t83: "2, Chiudere tutte le istanze di OrcaSlicer", + t84: "3, Eliminare tutti i file all'interno della directory del modulo", + t85: "4, Riaprire OrcaSlicer e installare nuovamente il modulo", + t86: "Chiudi", + t87: "Manuale d'uso", + t88: "Rimuovi", + t89: "Apri cartella con contenuto", + t90: "Modello 3D", + t91: "Scarica modelli 3D", + t92: "Creato da", + t93: "Modificato da", + t94: "Condiviso da", + t95: "Informazioni sul modello", + t96: "Accessori", + t97: "Informazioni sul profilo", + t98: "Nome del modello", + t100: "Descrizione del modello", + t101: "Elenco dei materiali", + t102: "Istruzioni di montaggio ", + t103: "Altro", + t104: "Nome del profilo", + t105: "Autore del profilo", + t106: "Descrizione del profilo", + t107: "Modelli online", + t108: "ALTRO", + t109: "Filamenti di sistema", + t110: "Filamenti personalizzati", + t111: "Crea Nuovo", + t112: "Unisciti al programma", + t113: "Puoi modificare la tua scelta in 'Preferenze' in qualsiasi momento.", + orca1: "Modifica informazioni progetto", + orca2: "Nessuna informazione sul modello", + orca3: "Modalità invisibile", + orca4: "Con questa modalità, la trasmissione dei dati ai servizi cloud di Bambu sarà interrotta. Gli utenti che non utilizzano macchine BBL o che usano solo la modalità LAN possono attivare questa funzione in modo sicuro.", + orca5: "Abilita la modalità invisibile.", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + de_DE: { + t1: "Willkommen im Orca Slicer", + t2: "Das Orca Slicer wird in mehreren Schritten eingerichtet. Lass uns anfangen!", + t3: "Nutzervereinbarung", + t4: "Ablehnen", + t5: "Zustimmen", + t6: "Wir bitten um deine Hilfe, um den Druck für alle zu verbessern", + t7: "Anonyme Daten senden erlauben", + t8: "Zurück", + t9: "Weiter", + t10: "Druckerauswahl", + t11: "Alle", + t12: "Keinen", + t13: "mm Düse", + t14: "Filamentauswahl", + t15: "Drucker", + t16: "Filamenttyp", + t17: "Hersteller", + t18: "Fehler", + t19: "Es muss mindestens ein Filament ausgewählt sein.", + t20: "Möchten Sie das Standard-Filament verwenden?", + t21: "Ja", + t22: "Nein", + t23: "Versionshinweise", + t24: "Loslegen", + t25: "Fertig", + t26: "Anmelden", + t27: "Registrieren", + t28: "Neueste", + t29: "Einkaufszentrum", + t30: "Handbuch", + t31: "Neues Projekt", + t32: "Neues Projekt erstellen", + t33: "Projekt öffnen", + t34: "Hotspot", + t35: "Zuletzt geöffnet", + t36: "OK", + t37: "Es muss mindestens ein Drucker ausgewählt sein.", + t38: "Abbrechen", + t39: "Bestätigen", + t40: "Netzwerkunterbrechung, bitte überprüfen und später erneut versuchen.", + t47: "Bitte wählen Sie Ihre Login-Region aus", + t48: "Asien-Pazifik", + t49: "China", + t50: "Abmelden", + t52: "Überspringen", + t53: "Beitreten", + t54: "In der 3D-Druck-Community lernen wir aus den Erfolgen und Misserfolgen der anderen Benutzer, um unsere eigenen Schneideparameter und Einstellungen anzupassen. Orca Slicer folgt demselben Prinzip und verbessert seine Leistung durch die Erfolge und Misserfolge der Vielzahl von Drucken unserer Benutzer mittels maschinellem Lernen. Wir trainieren Orca Slicer, indem wir ihnen die realen Daten zuführen. Wenn Sie bereit sind, greift dieser Dienst auf Informationen aus Ihren Fehler- und Nutzungsprotokollen zu, die Informationen enthalten können, die in der ", + t55: "Datenschutzrichtlinie", + t56: ". Wir werden keine personenbezogenen Daten sammeln, durch die eine Person direkt oder indirekt identifiziert werden kann, einschließlich, aber nicht beschränkt auf Namen, Adressen, Zahlungsinformationen oder Telefonnummern. Durch Aktivieren dieses Dienstes stimmen Sie diesen Bedingungen und der Erklärung zur Datenschutzrichtlinie zu.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "Nordamerika", + t62: "Andere", + t63: "Nach Ändern der Region wird Ihr Konto abgemeldet. Bitte melden Sie sich später erneut an.", + t64: "Bambu Network-Plug-in", + t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", + t66: "Vollständige Fernsteuerung", + t67: "Live-View-Streaming", + t68: "Synchronisierung von Benutzerdaten", + t69: "Bambu Network-Plug-in installieren", + t70: "", + t71: "Herunterladen", + t72: "Herunterladen fehlgeschlagen", + t73: "Installation erfolgreich.", + t74: "Neustart", + t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", + t76: "Das Bambu Network-Plug-in wurde nicht erkannt. Klicken Sie ", + t77: "hier", + t78: ", um es zu installieren.", + t79: "Fehler beim Installieren des Plug-ins. ", + t80: "Versuchen Sie die folgenden Schritte:", + t81: "1, Klicken Sie auf ", + t82: ", um das Plug-in-Verzeichnis zu öffnen", + t83: "2, Schließen Sie alle geöffneten Orca Slicer", + t84: "3, Löschen Sie alle Dateien im Plug-in-Verzeichnis", + t85: "4, Öffnen Sie Orca Slicer erneut und installieren Sie das Plug-in erneut", + t86: "Schließen", + t87: "Benutzerhandbuch", + t88: "Entfernen", + t89: "Enthaltenden Ordner öffnen", + t90: "3D-Modell", + t91: "3D-Modelle herunterladen", + t92: "Erstellt von", + t93: "Remixed von", + t94: "Geteilt von", + t95: "Modellinformationen", + t96: "Zubehör", + t97: "Profilinformationen", + t98: "Modellname", + t100: "Modellbeschreibung", + t101: "Stückliste", + t102: "Montageanleitung", + t103: "Andere", + t104: "Profilname", + t105: "Profilautor", + t106: "Profilbeschreibung", + t126: "Laden……", + orca1: "Edit Project Info", + orca2: "No model information", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + cs_CZ: { + t1: "Vítejte v Orca Slicer", + t2: "Orca Slicer bude nastaven v několika krocích. Začněme!", + t3: "Uživatelská smlouva", + t4: "Nesouhlasím", + t5: "Souhlasím", + t6: "Prosíme o vaši pomoc se zlepšením všech tisků", + t7: "Povolit odesílání anonymních dat", + t8: "Zpět", + t9: "Další", + t10: "Výběr tiskárny", + t11: "Všechny", + t12: "Vymazat vše", + t13: "Tryska mm", + t14: "Výběr Filamentu", + t15: "Tiskárna", + t16: "Typ Filamentu", + t17: "Dodavatel", + t18: "Chyba", + t19: "Musí být vybraný alespoň jeden Filament.", + t20: "Chcete použít výchozí Filament?", + t21: "Ano", + t22: "Ne", + t23: "Poznámka k vydání", + t24: "Začínáme", + t25: "Dokončit", + t26: "Přihlásit", + t27: "Registrovat", + t28: "Poslední", + t29: "Obchodní centrum", + t30: "Manuální", + t31: "Nový projekt", + t32: "Vytvořit nový projekt", + t33: "Otevřít projekt", + t34: "Hotspot", + t35: "Nedávno otevřeno", + t36: "OK", + t37: "Musí být vybrána alespoň jedna tiskárna.", + t38: "Zrušit", + t39: "Potvrdit", + t40: "Síť je odpojena, prosím zkontrolujte a zkuste to znovu později.", + t47: "Vyberte prosím svou oblast přihlášení", + t48: "Asie-Pacifik", + t49: "Čína", + t50: "Odhlásit se", + t52: "Přeskočit", + t53: "Připojit se", + t54: "V komunitě 3D tisku se ze vzájemných úspěchů a neúspěchů učíme upravovat vlastní parametry a nastavení krájení. Orca Slicer se řídí stejným principem a využívá strojové učení ke zlepšení svého výkonu na základě úspěchů a neúspěchů počet výtisků našimi uživateli. Orca Slicer školíme, aby byl chytřejší tím, že jim poskytuje data z reálného světa. Pokud budete chtít, bude tato služba přistupovat k informacím z vašich protokolů chyb a protokolů použití, které mohou zahrnovat informace popsané v ", + t55: "Zásady ochrany osobních údajů", + t56: ". Nebudeme shromažďovat žádné osobní údaje, pomocí kterých lze přímo nebo nepřímo identifikovat jednotlivce, včetně jmen, adres, platebních údajů nebo telefonních čísel. Povolením této služby souhlasíte s těmito podmínkami a prohlášení o zásadách ochrany osobních údajů.", + t57: "", + t58: "", + t59: ".", + t60: "Evropa", + t61: "Severní Amerika", + t62: "Ostatní", + t63: "Po změně regionu bude váš účet odhlášen. Přihlaste se prosím znovu později.", + t64: "Proprietary Plugins", + t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", + t66: "Plné dálkové ovládání", + t67: "Streamování v přímém přenosu", + t68: "Synchronizace uživatelských dat", + t69: "Instalovat Bambu Network plug-in", + t70: "", + t71: "Stahování", + t72: "Stahování se nezdařilo", + t73: "Instalace úspěšná.", + t74: "Restartovat", + t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", + t76: "Síťový plug-in Bambu nebyl zjištěn. Klikněte na ", + t77: "zde", + t78: " k instalaci.", + t79: "Nepodařilo se nainstalovat plugin.", + t80: "Zkuste následující kroky:", + t81: "1, klikněte", + t82: "otevřete adresář plug-in", + t83: "2, Zavřete všechny otevřené Orca Slicer", + t84: "3, Smažte všechny soubory v adresáři plug-in", + t85: "4, znovu otevřete Orca Slicer a znovu nainstalujte zásuvný modul", + t86: "Zavřít", + t87: "Uživatelská příručka", + t88: "Odstranit", + t89: "Otevřít složku obsahující", + t90: "3D model", + t91: "Stáhnout 3D modely", + t92: "Vytvořil", + t93: "Přepracováno", + t94: "Sdíleno", + t95: "Informace o modelu", + t96: "Příslušenství", + t97: "Informace o profilu", + t98: "Název modelu", + t100: "Popis modelu", + t101: "Seznam součástek (BOM)", + t102: "Průvodce sestavením", + t103: "Jiné", + t104: "Název profilu", + t105: "Autor profilu", + t106: "Popis profilu", + t126: "Načtení probíhá……", + orca1: "Edit Project Info", + orca2: "No model information", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + fr_FR: { + t1: "Bienvenue sur Orca Slicer", + t2: "Orca Slicer sera configuré en plusieurs étapes. Commençons !", + t3: "Accord d'utilisation", + t4: "Décliner", + t5: "Accepter", + t6: "Nous sollicitons votre aide pour améliorer
l'impression de chacun", + t7: "Autoriser l'envoi de données anonymes", + t8: "Retour", + t9: "Suivant", + t10: "Sélection de l'imprimante", + t11: "Tous", + t12: "Supprimer", + t13: "mm", + t14: "Sélection des filaments", + t15: "Imprimante", + t16: "Type de filament", + t17: "Fournisseur", + t18: "Erreur", + t19: "Au moins un filament doit être sélectionné.", + t20: "Voulez-vous utiliser le filament par défaut ?", + t21: "Oui", + t22: "Non", + t23: "Note de version", + t24: "Commencer", + t25: "Terminer", + t26: "Connexion", + t27: "Inscription", + t28: "Récent", + t29: "Mail", + t30: "Manuel", + t31: "Nouveau Projet", + t32: "Créer un nouveau projet", + t33: "Ouvrir un Projet", + t34: "hotspot", + t35: "Récemment ouvert", + t36: "OK", + t37: "Au moins une imprimante doit être sélectionnée.", + t38: "Annuler", + t39: "Confirmer", + t40: "Déconnexion du réseau, veuillez vérifier et réessayer plus tard.", + t47: "Veuillez sélectionner votre région de connexion", + t48: "Asie-Pacifique", + t49: "Chine", + t50: "Se déconnecter", + t52: "Passer", + t53: "Rejoindre", + t54: "Dans la communauté de l'impression 3D, nous apprenons des succès et des échecs des uns et des autres pour ajuster nos propres paramètres et paramètres de découpage. Orca Slicer suit le même principe et utilise l'apprentissage automatique pour améliorer ses performances à partir des succès et des échecs du grand nombre d'impressions de nos utilisateurs. Nous formons Orca Slicer à être plus intelligent en leur fournissant les données du monde réel. Si vous le souhaitez, ce service accédera aux informations de vos journaux d'erreurs et de vos journaux d'utilisation, qui peuvent inclure des informations décrites dans ", + t55: "Politique de confidentialité", + t56: ". Nous ne collecterons aucune donnée personnelle par laquelle un individu peut être identifié directement ou indirectement, y compris, sans s'y limiter, les noms, adresses, informations de paiement ou numéros de téléphone. En activant ce service, vous acceptez ces conditions et la déclaration sur la politique de confidentialité.", + t57: "", + t58: "", + t59: ".", + t60: "Europe", + t61: "Amérique du Nord", + t62: "Autres", + t63: "Après avoir changé de région, votre compte sera déconnecté. Veuillez vous reconnecter ensuite.", + t64: "Plug-in Bambu Network", + t65: "Veuillez noter que ces plugins ne sont pas développés ou maintenus par OrcaSlicer. Ils doivent être utilisés à votre propre discrétion et à vos propres risques.", + t66: "Commande à distance complète", + t67: "Diffusion en direct", + t68: "Synchronisation des données utilisateur", + t69: "Installer Bambu Network", + t70: "", + t71: "Téléchargement", + t72: "Échec du téléchargement", + t73: "Installation réussie.", + t74: "Redémarrer", + t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", + t76: "Le plug-in Bambu Network n'est pas détecté. Cliquez ", + t77: "ici", + t78: " pour l'installer.", + t79: "Échec de l'installation du plug-in. ", + t80: "Essayez les étapes suivantes :", + t81: "1, Cliquez ", + t82: " pour ouvrir le répertoire des plug-ins", + t83: "2, Fermez toutes les fenêtres de Orca Slicer", + t84: "3, Supprimez tous les fichiers dans le répertoire du plug-in", + t85: "4, Relancez Orca Slicer et réinstallez le plug-in.", + t86: "Fermer", + t87: "Manuel d'utilisation", + t88: "Supprimer", + t89: "Ouvrir le dossier contenant", + t90: "Modèle 3D", + t91: "Télécharger des modèles 3D", + t92: "Créé par", + t93: "Remixé par", + t94: "Partagé par", + t95: "Informations sur le modèle", + t96: "Accessoires", + t97: "Informations de profil", + t98: "Nom du modèle", + t100: "Description du modèle", + t101: "BOM", + t102: "Guide d'assemblage", + t103: "Autre", + t104: "Nom du profil", + t105: "Auteur du profil", + t106: "Description du profil", + t109: "Filaments du système", + t110: "Filaments personnalisés", + t111: "Créer un nouveau filament", + t126: "Chargement en cours……", + orca1: "Modifier les informations du projet", + orca2: "Pas d'information sur le modèle", + wk1: "Démarrage rapide", + wk2: "Cet article présente l'utilisation la plus basique de Orca Slicer. Il guide les utilisateurs pour configurer le logiciel, créer des projets et effectuer la première tâche d'impression étape par étape.", + wk3: "Workflow basé sur des projets", + wk4: "Orca Slicer met en avant un workflow de pointe pour véritablement réaliser un projet « tout en un ». Basé sur le format de projet 3MF grand public, il fournit une série de nouvelles fonctionnalités révolutionnaires, telles que la prise en charge de plusieurs plaques, un gestionnaire de ressources de projet et une vue d'assemblage/de pièce. Cela améliore considérablement l'efficacité des créateurs et des utilisateurs réguliers", + wk5: "Impression haute vitesse de qualité", + wk6: "Il est difficile d'imprimer à grande vitesse tout en maintenant une qualité élevée. Orca Slicer rend cela possible. « Arch Move » permet à la hotend de se déplacer en douceur et réduit les vibrations de la machine. Le refroidissement intelligent est basé sur des paramètres de refroidissement affinés pour chaque type de filament. Le « ralentissement automatique » pour les paroies en porte-à-faux permet d'éviter la déformation à grande vitesse.", + wk7: "Impression multi-couleur", + wk8: "Orca Slicer fournit des outils de colorisation polyvalents pour créer un modèle coloré. Vous pouvez librement ajouter/supprimer des filaments dans un projet et coloriser votre modèle avec différents pinceaux. Avant l'impression, chaque filament sera automatiquement mappé sur un emplacement AMS, sans avoir besoin de modifier manuellement le placement de la bobine dans l'AMS.", + wk9: "Guide de réglage des paramètres de découpage", + wk10: "Les fonctionnalités de gestion des paramètres de Orca Slicer offrent un contrôle très flexible et puissant sur le processus de découpage. Cet article présente l'organisation des paramètres et fournit quelques compétences pour tirer pleinement parti de ces fonctionnalités.", + wk11: "Contrôle et surveillance à distance", + wk12: "Orca Slicer prend en charge l'envoi du travail d'impression à votre imprimante via le réseau WAN/LAN, contrôlant et surveillant chaque aspect de votre imprimante 3D et des travaux d'impression. Si vous avez plusieurs imprimantes, vous pouvez facilement basculer entre elles dans la liste des périphériques.", + wk13: "Format STEP", + wk14: "Par rapport au format STL, le format STEP apporte des informations plus efficaces. Grâce à la grande précision de ce format, de nombreuses trajectoires d'extrusion peuvent être générées sous forme d'arcs. Il inclut également la relation d'assemblage de chaque pièce d'un modèle, qui peut être utilisée pour restaurer la vue d'assemblage après la coupe d'un modèle.", + wk15: "Texte 3D", + wk16: "Avec l'outil Texte 3D, les utilisateurs peuvent facilement créer diverses formes de texte 3D dans le projet, ce qui rend le modèle plus personnalisé. Orca Slicer fournit des dizaines de polices et prend en charge les styles gras et italique pour donner au texte une plus grande flexibilité.", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + zh_CN: { + t1: "欢迎使用Orca Slicer", + t2: "Orca Slicer需要几步安装步骤,让我们开始吧!", + t3: "用户使用协议", + t4: "拒绝", + t5: "同意", + t6: "帮助提升Orca Slicer性能", + t7: "允许发送匿名数据", + t8: "上一步", + t9: "下一步", + t10: "选择打印机", + t11: "全部", + t12: "清空", + t13: "mm 喷嘴", + t14: "选择材料", + t15: "打印机", + t16: "材料类型", + t17: "供应商", + t18: "错误", + t19: "至少要选择一款材料。", + t20: "你希望使用默认的材料列表吗?", + t21: "是", + t22: "否", + t23: "发布说明", + t24: "开始", + t25: "结束", + t26: "登录", + t27: "注册", + t28: "近期", + t29: "商城", + t30: "使用手册", + t31: "新建项目", + t32: "创建一个新项目", + t33: "打开项目", + t34: "热点", + t35: "近期打开文件", + t36: "确定", + t37: "至少需要选择一款打印机。", + t38: "取消", + t39: "确定", + t40: "网络不通,请检查并稍后重试。", + t47: "请选择登录区域", + t48: "亚太", + t49: "中国", + t50: "退出登录", + t52: "忽略", + t53: "同意", + t54: "在3D打印社区,我们从彼此的成功和失败中学习调整自己的切片参数和设置。Orca Slicer遵循同样的原则,通过机器学习的方式从大量用户打印的成功和失败中获取经验,从而改善打印性能。我们正在通过向Orca Slicer提供真实世界的数据来训练他们变得更聪明。如果您愿意,此服务将访问您的错误日志和使用日志中的信息,其中可能包括", + t55: "隐私政策", + t56: "中描述的信息。我们不会收集任何可以直接或间接识别个人的个人数据,包括但不限于姓名、地址、支付信息或电话号码。启用此服务即表示您同意这些条款和有关隐私政策的声明。", + t57: "", + t58: "", + t59: "。", + t60: "欧洲", + t61: "北美", + t62: "其他", + t63: "切换区域后,你的账号会被登出。稍后请重新登录。", + t64: "Bambu网络插件", + t65: "注意:这些插件不是由OrcaSlicer开发或维护的。使用它们需自担风险", + t66: "强大的远程控制功能", + t67: "实时视频流", + t68: "用户数据同步", + t69: "安装Bambu网络插件", + t70: "", + t71: "正在下载", + t72: "下载失败", + t73: "安装成功。", + t74: "重启", + t75: "一些打印机厂商需要安装他们的专有插件才能与打印机通信。如果您使用这类打印机,请选择相应的插件", + t76: "没有发现Bambu网络插件,请", + t77: "下载", + t78: "并安装。", + t79: "安装插件失败。", + t80: "请尝试如下步骤:", + t81: "1, 点击", + t82: "打开插件所在目录", + t83: "2, 关闭所有Orca Slicer", + t84: "3, 删除插件所在目录下的所有文件", + t85: "4, 重新启动Orca Slicer并尝试安装插件", + t86: "关闭", + t87: "使用引导", + t88: "移除", + t89: "打开所在的文件夹", + t90: "3D 模型", + t91: "下载3D模型", + t92: "创作", + t93: "修改", + t94: "分享", + t95: "模型信息", + t96: "附件", + t97: "配置信息", + t98: "模型名称", + t100: "模型介绍", + t101: "物料清单", + t102: "装备指导", + t103: "其他", + t104: "配置名称", + t105: "配置作者", + t106: "配置介绍", + t107: "在线模型", + t108: "更多", + t109: "系统材料", + t110: "自建材料", + t111: "新建", + t112: "加入该计划", + t113: "您可以随时更改您的偏好。", + t126: "正在加载……", + wk1: "快速入门指南", + wk2: "本文介绍了Orca Slicer的最基本用法。它指导用户配置软件,创建项目,并逐步完成第一个打印任务。", + wk3: "基于项目的工作流", + wk4: "Orca Slicer提出了领先的工作流程,真正实现了“一体化”项目。基于主流的3MF项目格式,它提供了一系列革命性的新功能,如支持多盘、项目资源管理器和装配/零件视图。它可以大幅提高模型创作者及普通用户的使用效率。", + wk5: "质量卓越的高速打印", + wk6: "在保持高质量的前提下进行高速打印是非常具有挑战性的。Orca Slicer让这一切发生。支持“圆弧移动”特性使工具头移动更加顺滑,有效减少机器振动。基于不同材料类型的精细标定过的冷却控制参数,使得冷却过程可以自动开展。在悬垂区域进行“自动减速”,可防止高速打印时在此区域的外观瑕疵。", + wk7: "多色打印", + wk8: "Orca Slicer提供了多种着色工具来制作彩色模型。您可以在项目中自由添加/移除打印材料,并使用不同的笔刷为模型着色。开始打印时,打印任务中的各个材料将自动映射到匹配的AMS槽位,无需手动调整AMS中的料卷位置。", + wk9: "切片参数设置指南", + wk10: "Orca Slicer中的参数管理功能为切片过程提供了非常灵活和强大的控制。本文介绍了切片参数的组织分类和设置方法,并提供了一些使用技巧。", + wk11: "远程控制和监控", + wk12: "Orca Slicer支持通过WAN/LAN网络向打印机发送打印任务,控制和查看3D打印机和打印任务的各个方面。如果您有多台打印机,还可以在设备列表中轻松切换。", + wk13: "STEP格式", + wk14: "与STL相比,STEP带来了更多有效的信息。由于STEP的高精度,切片时可以生成更多的圆弧路径。STEP还包括模型每个零件的装配关系,可分割模型后恢复装配视图。", + wk15: "3D文本", + wk16: "使用3D文本工具,用户可以轻松地在项目中创建各种3D文本形状,使模型更加个性化。Orca Slicer提供了数十种字体,并支持粗体和斜体样式,使文本具有更大的灵活性。", + orca1: "编辑项目信息", + orca2: "该模型没有相关信息", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + zh_TW: { + t1: "歡迎使用 Orca Slicer", + t2: "Orca Slicer 需要幾步安裝步驟,讓我們開始吧!", + t3: "使用者協議", + t4: "拒絕", + t5: "同意", + t6: "幫助提升 Orca Slicer 性能", + t7: "允許傳送匿名數據", + t8: "上一步", + t9: "下一步", + t10: "選擇3D列印機", + t11: "全部", + t12: "清空", + t13: "mm 噴嘴", + t14: "選擇線材", + t15: "3D列印機", + t16: "線材類型", + t17: "供應商", + t18: "錯誤", + t19: "至少要選擇一款線材。", + t20: "你希望使用預設的線材列表嗎?", + t21: "是", + t22: "否", + t23: "發布說明", + t24: "開始", + t25: "結束", + t26: "登入", + t27: "註冊", + t28: "最近", + t29: "商城", + t30: "使用手冊", + t31: "新建項目", + t32: "創建一個新項目", + t33: "打開項目", + t34: "熱點", + t35: "最近打開文件", + t36: "確定", + t37: "至少需要選擇一款3D列印機。", + t38: "取消", + t39: "確定", + t40: "網路不通,請檢查並稍後重試。", + t47: "請選擇登入區域", + t48: "亞太", + t49: "中國", + t50: "登出", + t52: "忽略", + t53: "同意", + t54: "在3D列印社區,我們從彼此的成功和失敗中學習調整自己的切片參數和設置。Orca Slicer 遵循同樣的原則,透過機器學習的方式從大量用戶列印的成功和失敗中獲取經驗,從而改善列印性能。我們正在通過向 Orca Slicer 提供真實世界的數據來訓練他們變得更聰明。如果您願意,此服務將訪問您的錯誤日誌和使用日誌中的資訊,其中可能包括", + t55: "隱私政策", + t56: "中描述的資訊。我們不會收集任何可以直接或間接識別個人的個人數據,包括但不限於姓名、地址、支付資訊或電話號碼。啟用此服務即表示您同意這些條款和有關隱私政策的聲明。", + t57: "", + t58: "", + t59: "。", + t60: "歐洲", + t61: "北美", + t62: "其他", + t63: "切換區域後,你的帳號會被登出。稍後請重新登入。", + t64: "Bambu網路插件", + t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", + t66: "強大的遠端控制功能", + t67: "即時影片串流", + t68: "使用者數據同步", + t69: "安裝 Bambu網路插件", + t70: "", + t71: "正在下載", + t72: "下載失敗", + t73: "安裝成功。", + t74: "重啟", + t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", + t76: "沒有發現Bambu網路插件,請", + t77: "下載", + t78: "並安裝。", + t79: "安裝插件失敗。", + t80: "請嘗試如下步驟:", + t81: "1, 點擊", + t82: "打開插件所在目錄", + t83: "2, 關閉所有 Orca Slicer", + t84: "3, 刪除插件所在目錄下的所有文件", + t85: "4, 重新啟動 Orca Slicer 並嘗試安裝插件", + t86: "關閉", + t87: "使用引導", + t88: "移除", + t89: "打開所在的文件夾", + t90: "3D 模型", + t91: "下載3D模型", + t92: "Bambu聖誕小屋", + wk1: "快速入門指南", + wk2: "本文介紹了 Orca Slicer 的最基本用法。它指導用戶配置軟體,創建項目,並逐步完成第一個列印任務。", + wk3: "基於項目的工作流", + wk4: "Orca Slicer 提出了領先的工作流程,真正實現了“一體化”項目。基於主流的3MF項目格式,它提供了一系列革命性的新功能,如支持多盤、項目資源管理器和裝配/零件視圖。它可以大幅提高模型創作者及普通用戶的使用效率。", + wk5: "質量卓越的高速列印", + wk6: "在保持高品質的前提下進行高速列印是非常具有挑戰性的。Orca Slicer 讓這一切發生。支持“圓弧移動”特性使工具頭移動更加順滑,有效減少機器振動。基於不同線材類型的精細標定過的冷卻控制參數,使得冷卻過程可以自動開展。在懸垂區域進行“自動減速”,可防止高速列印時在此區域的外觀瑕疵。", + wk7: "多色列印", + wk8: "Orca Slicer 提供了多種著色工具來製作彩色模型。您可以在項目中自由添加/移除列印材料,並使用不同的筆刷為模型著色。開始列印時,列印任務中的各個線材將自動映射對應到 AMS 槽位,無需手動調整 AMS 中的線材位置。", + wk9: "切片參數設置指南", + wk10: "Orca Slicer 中的參數管理功能為切片過程提供了非常靈活和強大的控制。本文介紹了切片參數的組織分類和設置方法,並提供了一些使用技巧。", + wk11: "遠端控制和監控", + wk12: "Orca Slicer 支持透過無線網路/區域網路向3D列印機發送列印任務,控制和查看3D列印機和列印任務的各個方面。如果您有多台3D列印機,還可以在設備清單中輕鬆切換。", + wk13: "STEP格式", + wk14: "與 STL 相比,STEP 帶來了更多有效的資訊。由於 STEP 的高精度,切片時可以生成更多的圓弧路徑。STEP 還包括模型每個零件的組裝關係,可分割模型後恢復裝配視圖。", + wk15: "3D文本", + wk16: "使用3D文字工具,使用者可以輕鬆地在項目中建立各種3D文字形狀,使模型更加個性化。Orca Slicer 提供了數十種字體,並支援粗體和斜體樣式,使文字具有更大的靈活性。", + orca1: "編輯專案資訊", + orca2: "沒有模型相關資訊", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + ru_RU: { + t1: "Приветствуем в Orca Slicer!", + t2: "Для настройки Orca Slicer необходимо пройти несколько этапов. Давайте начнём!", + t3: "Пользовательское соглашение", + t4: "Отказаться", + t5: "Принять", + t6: "Мы просим вашей помощи,
чтобы улучшить печать", + t7: "Разрешить отправку анонимных данных для совершенствования программы", + t8: "Назад", + t9: "Далее", + t10: "Выбор принтера", + t11: "Все", + t12: "Очистить", + t13: "мм сопло", + t14: "Выбор материала", + t15: "Принтер", + t16: "Тип материала", + t17: "Производитель", + t18: "Oшибка", + t19: "Должна быть выбрана хотя бы одна пластиковая нить.", + t20: "Выбрать пластиковые нити по умолчанию?", + t21: "Да", + t22: "Нет", + t23: "Информация о версии", + t24: "Начать", + t25: "Закончить", + t26: "Войти", + t27: "Регистрация", + t28: "Недавние", + t29: "Mall", + t30: "Инструкции", + t31: "Новый проект", + t32: "Создать новый проект", + t33: "Открыть проект", + t34: "точка доступа", + t35: "Недавно открытые", + t36: "OK", + t37: "Должен быть выбран хотя бы один принтер.", + t38: "Отмена", + t39: "Принять", + t40: "Сеть отключена. Проверьте подключение и попробуйте снова.", + t47: "Выбор региона", + t48: "Азиатско-Тихоокеанский регион", + t49: "Китай", + t50: "Выйти", + t52: "Пропустить", + t53: "Войти", + t54: "Для поиска наилучших параметров нарезки и улучшения печати участники сообщества 3D-печати учатся на успехах и неудачах друг друга. Orca Slicer следует тому же принципу и использует машинное обучение для улучшения своей работы на основе успешного и неудачного опыта печати наших пользователей. Мы обучаем Orca Slicer быть умнее на основе реальных данных. По вашему согласию эта служба получит доступ к вашим журналам ошибок и журналам использования, в которых содержатся сведения, описанные в ", + t55: "политике конфиденциальности", + t56: ". Мы не собираем никаких личных данных, которые могут прямо или косвенно идентифицировать отдельного человека, включая, помимо прочего, имена, адреса, платёжную информацию или номера телефонов. Разрешая отправку, вы соглашаетесь с этими условиями и заявлением о политике конфиденциальности.", + t57: "", + t58: "", + t59: ".", + t60: "Европа", + t61: "Северная Америка", + t62: "Другой", + t63: "После смены региона произойдёт выход из аккаунта и понадобится войти снова.", + t64: "Сетевой плагин Bambu", + t65: "Имейте в виду, что эти плагины не разрабатываются и не поддерживаются OrcaSlicer. Используйте их на свой страх и риск.", + t66: "Полное дистанционное управление", + t67: "Просмотр прямой трансляции с камеры", + t68: "Синхронизация данных пользователя", + t69: "Установить сетевой плагин Bambu", + t70: "", + t71: "Загрузка", + t72: "Загрузка не удалась", + t73: "Установка выполнена успешно.", + t74: "Перезагрузка", + t75: "Для связи с некоторыми моделями принтеров требуются проприетарные плагины. Выберите соответствующий плагин, если у вас такой принтер.", + t76: "Сетевой плагин Bambu не обнаружен. Нажмите ", + t77: "здесь", + t78: ", чтобы установить его.", + t79: "Ошибка установки плагина. ", + t80: "Попробуйте выполнить следующие действия:", + t81: "1, Нажмите ", + t82: " для открытия папки плагина", + t83: "2, Закройте все окна Orca Slicer", + t84: "3, Удалите все файлы в папке плагина", + t85: "4, Откройте Orca Slicer и снова установите плагин.", + t86: "Закрыть", + t87: "Инструкции", + t88: "Удалить", + t89: "Открыть папку с файлом", + t90: "3D-модель", + t91: "Скачать 3D-модели", + t92: "Автор", + t93: "Модифицировано", + t94: "Поделиться", + t95: "Информация о модели", + t96: "Прикреплённые файлы", + t97: "Информация о профиле", + t98: "Имя модели", + t100: "Описание модели", + t101: "Список материалов", + t102: "Памятка по сборке", + t103: "Прочее", + t104: "Имя профиля", + t105: "Профиль автора", + t106: "Описание профиля", + t107: "Модели в сети", + t108: "Больше", + t109: "Системные материалы", + t110: "Пользовательские материалы", + t111: "Создать новый", + t112: "Присоединяйтесь к программе", + t113: "Вы можете изменить свой выбор в любое время.", + t126: "Загрузка...", + orca1: "Изменить информацию", + orca2: "Информация отсутствует", + orca3: "Режим конфиденциальности", + orca4: "Это остановит передачу данных в облачные сервисы Bambu. Помешает только владельцам Bambu Lab, не использующим режим «Только LAN».", + orca5: "Включить режим конфиденциальности", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + ko_KR: { + t1: "Orca Slicer에 오신 것을 환영합니다", + t2: "Orca Slicer는 여러 단계로 설정됩니다. 시작!", + t3: "사용자 약관", + t4: "거부", + t5: "동의", + t6: "모든 사람의 출력 품질 개선을 위해
여러분의 도움이 필요합니다.", + t7: "익명 데이터 전송 허용", + t8: "뒤로", + t9: "다음", + t10: "프린터 선택", + t11: "전체", + t12: "전체 해제", + t13: "mm 노즐", + t14: "필라멘트 선택", + t15: "프린터", + t16: "필라멘트 종류", + t17: "공급업체", + t18: "오류", + t19: "하나 이상의 필라멘트를 선택해야 합니다.", + t20: "기본 필라멘트를 사용하시겠습니까?", + t21: "예", + t22: "아니오", + t23: "릴리스 노트", + t24: "시작", + t25: "완료", + t26: "로그인", + t27: "등록", + t28: "최근", + t29: "상점", + t30: "메뉴얼", + t31: "새 프로젝트", + t32: "새 프로젝트 생성", + t33: "프로젝트 열기", + t34: "핫스팟", + t35: "최근 사용", + t36: "예", + t37: "하나 이상의 프린터를 선택해야 합니다.", + t38: "취소", + t39: "수락", + t40: "네트워크 연결이 끊겼습니다. 확인하고 나중에 다시 시도하세요.", + t47: "로그인 지역을 선택해주세요", + t48: "아시아 태평양", + t49: "중국", + t50: "로그 아웃", + t52: "건너뛰기", + t53: "가입", + t54: "3D 프린팅 커뮤니티에서 우리는 각자의 슬라이싱 매개변수와 설정을 조정하는 과정에서 서로의 성공과 실패를 통해 배웁니다. Orca Slicer는 동일한 원칙을 따르며 기계 학습을 사용하여 사용자의 방대한 출력물의 성공과 실패를 통해 성능을 향상시킵니다. 우리는 실제 데이터를 제공하여 Orca Slicer가 더욱 똑똑해지도록 교육하고 있습니다. 귀하가 원할 경우 이 서비스는 오류 로그 및 사용 로그의 정보에 액세스합니다. 여기에는 다음에 설명된 정보가 포함될 수 있습니다.", + t55: "개인 정보 정책", + t56: ". 당사는 이름, 주소, 결제 정보 또는 전화번호를 포함하되 이에 국한되지 않고 개인을 직간접적으로 식별할 수 있는 개인 데이터를 수집하지 않습니다. 이 서비스를 활성화함으로써 귀하는 본 약관과 개인정보 보호정책에 대한 설명에 동의하게 됩니다.", + t57: "", + t58: "", + t59: ".", + t60: "유럽", + t61: "북미", + t62: "다른 지역", + t63: "지역을 변경하면 계정이 로그아웃됩니다. 나중에 다시 로그인해 주세요.", + t64: "Bambu 네트워크 플러그인", + t65: "Please be aware that these plugins are not developed or maintained by OrcaSlicer. They should be used at your own discretion and risk.", + t66: "전체 원격 제어", + t67: "라이브뷰 스트리밍", + t68: "사용자 데이터 동기화", + t69: "Bambu 네트워크 플러그인 설치", + t70: "", + t71: "다운로드 중", + t72: "다운로드 실패", + t73: "설치 완료.", + t74: "재시작", + t75: "Some printer vendors require proprietary plugins for communication with their printers. Please select the corresponding plugin if you use such printers.", + t76: "Bambu 네트워크 플러그인이 감지되지 않습니다. 여기를 ", + t77: "클릭", + t78: " 하여 설치하세요.", + t79: "플러그인을 설치하지 못했습니다. ", + t80: "다음 단계를 시도해 보세요:", + t81: "1, 클릭 ", + t82: " 하여 플러그인 디렉토리를 엽니다.", + t83: "2, 열려 있는 모든 Orca Slicer를 닫습니다.", + t84: "3, 플러그인 디렉터리 아래의 모든 파일 삭제합니다", + t85: "4, Orca Slicer를 다시 열고 플러그인을 다시 설치하세요.", + t86: "닫기", + t87: "사용자 메뉴얼", + t88: "제거", + t89: "포함된 폴더 열기", + t90: "3D 모델", + t91: "3D 모델 다운로드", + t92: "Bambu Christmas Cabin", + t93: "프린터 연결", + t94: "장치를 보려면 프린터 연결을 설정하세요.", + t126: "로딩 중……", + orca1: "Edit Project Info", + orca2: "No model information", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + tr_TR: { + t1: "Orca Slicer'a hoş geldiniz", + t2: "Orca Dilimleyici birkaç adımda kurulacaktır. Hadi başlayalım!", + t3: "Kullanıcı Sözleşmesi", + t4: "Reddet", + t5: "Onayla", + t6: "Herkesin yazdırma işini iyileştirmek için
yardımınızı rica ediyoruz", + t7: "Anonim verilerin gönderilmesine izin ver", + t8: "Geri", + t9: "İleri", + t10: "Yazıcı Seçimi", + t11: "Hepsi", + t12: "Hepsini temizle", + t13: "mm nozul", + t14: "Filament Seçimi", + t15: "Yazıcı", + t16: "Filament türü", + t17: "Üretici", + t18: "Hata", + t19: "En az bir filament seçilmelidir.", + t20: "Varsayılan filamenti kullanmak ister misiniz ?", + t21: "Evet", + t22: "Hayır", + t23: "Sürüm notu", + t24: "Başla", + t25: "Bitir", + t26: "Giriş Yap", + t27: "Kayıt Ol", + t28: "Son", + t29: "Mağaza", + t30: "Manual", + t31: "Yeni proje", + t32: "Yeni proje oluştur", + t33: "Projeyi Aç", + t34: "Erişim noktası", + t35: "Yakın zamanda açıldı", + t36: "OK", + t37: "En az bir yazıcı seçilmelidir.", + t38: "İptal Et", + t39: "Onayla", + t40: "Ağ bağlantısı kesildi, lütfen kontrol edin ve daha sonra tekrar deneyin.", + t47: "Lütfen giriş bölgenizi seçin", + t48: "Asya-Pasifik", + t49: "Çin", + t50: "Çıkış Yap", + t52: "Atla", + t53: "Katıl", + t54: "3D Baskı topluluğunda, kendi dilimleme parametrelerimizi ve ayarlarımızı düzenlerken birbirimizin başarılarından ve başarısızlıklarından öğreniyoruz. Orca Slicer da aynı prensibi takip ediyor ve kullanıcılarımızın yaptığı çok sayıda baskının başarı ve başarısızlıklarından performansını artırmak için makine öğrenimini kullanıyor. Orca Slicer'ı gerçek dünya verileriyle besleyerek daha akıllı olması için eğitiyoruz. İsterseniz bu hizmet, hata günlüklerinizden ve kullanım günlüklerinizden, burada açıklanan bilgileri de içerebilecek bilgilere erişecektir. ", + t55: "Gizlilik Politikası", + t56: ". İsimler, adresler, ödeme bilgileri veya telefon numaraları dahil ancak bunlarla sınırlı olmamak üzere, bir bireyin doğrudan veya dolaylı olarak tanımlanmasını sağlayacak hiçbir Kişisel Veri toplamayacağız. Bu hizmeti etkinleştirerek bu şartları ve Gizlilik Politikasına ilişkin beyanı kabul etmiş olursunuz.", + t57: "", + t58: "", + t59: ".", + t60: "Avrupa", + t61: "Kuzey Amerika", + t62: "Diğerleri", + t63: "Bölgeyi değiştirdikten sonra hesabınızdan çıkış yapılacaktır. Lütfen daha sonra tekrar giriş yapın.", + t64: "Bambu Ağı eklentisi", + t65: "Lütfen bu eklentilerin OrcaSlicer tarafından geliştirilmediğini veya bakımının yapılmadığını unutmayın. Kendi takdirinize ve riskinize göre kullanılmalıdırlar.", + t66: "Tam uzaktan kontrol", + t67: "Canlı görüntü akışı", + t68: "Kullanıcı veri senkronizasyonu", + t69: "Bambu Ağı eklentisini yükleyin", + t70: "", + t71: "İndiriliyor", + t72: "İndirme başarısız oldu", + t73: "Kurulum başarılı oldu.", + t74: "Tekrar başlat", + t75: "Bazı yazıcı üreticileri, yazıcılarıyla iletişim için özel eklentilere ihtiyaç duyar. Bu tür yazıcılar kullanıyorsanız lütfen ilgili eklentiyi seçin.", + t76: "Bambu Ağı eklentisi algılanmadı. Yüklemek ", + t77: "için ", + t78: " burayı tıklayın.", + t79: "Eklenti yüklenemedi. ", + t80: "Aşağıdaki adımları deneyin:", + t81: "1, Eklenti ", + t82: " dizinini açmak için tıklayın", + t83: "2, Tüm açık Orca slicerı kapatın", + t84: "3, Eklenti dizini altındaki tüm dosyaları silin", + t85: "4, Orca Slicer'ı yeniden açın ve eklentiyi tekrar yükleyin", + t86: "Kapat", + t87: "Kullanım kılavuzu", + t88: "Kaldır", + t89: "Dosyayı içeren klasörü açınız", + t90: "3D Model", + t91: "3D modelleri indirin", + t92: "Oluşturan", + t93: "Değiştiren", + t94: "Paylaşan", + t95: "Model Bilgileri", + t96: "Aksesuarlar", + t97: "Profil Bilgisi", + t98: "Model adı", + t100: "Model açıklaması", + t101: "Malzeme Listesi", + t102: "Montaj Kılavuzu", + t103: "Diğer", + t104: "Profil ismi", + t105: "Profil Yazarı", + t106: "Profil açıklaması", + t107: "Çevrimiçi Modeller", + t108: "DAHA FAZLA", + t109: "Sistem Filamentleri", + t110: "Özel Filamentler", + t111: "Yeni Oluştur", + t112: "Programa Katılın", + t113: "Tercihinizi istediğiniz zaman değiştirebilirsiniz.", + t126: "Yükleme devam ediyor……", + orca1: "Proje Bilgilerini Düzenle", + orca2: "Model bilgisi yok", + orca3: "Gizli Mod", + orca4: "Bu, Bambu'nun bulut hizmetlerine veri iletimini durdurur. BBL makinelerini kullanmayan veya yalnızca LAN modunu kullanan kullanıcılar bu işlevi güvenle açabilir.", + orca5: "Gizli Modu etkinleştirin.", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + pl_PL: { + t1: "Witamy w Orca Slicer", + t2: "Orca Slicer zostanie skonfigurowany w kilku krokach. Zacznijmy!", + t3: "Umowa użytkownika", + t4: "Nie zgadzam się", + t5: "Zgadzam się", + t6: "Uprzejmie prosimy o pomoc w ulepszaniu
druku dla każdego", + t7: "Zezwól na wysyłanie anonimowych danych", + t8: "Wstecz", + t9: "Dalej", + t10: "Wybór drukarki", + t11: "Wszystkie", + t12: "Wyczyść wszystko", + t13: "mm dysza", + t14: "Wybór filamentu", + t15: "Drukarka", + t16: "Typ filamentu", + t17: "Dostawca", + t18: "Błąd", + t19: "Przynajmniej jeden filament musi być wybrany.", + t20: "Czy chcesz użyć domyślnego filamentu?", + t21: "Tak", + t22: "Nie", + t23: "Informacje o wydaniu", + t24: "Rozpocznij", + t25: "Zakończ", + t26: "Logowanie", + t27: "Rejestracja", + t28: "Ostatnie", + t29: "Centrum", + t30: "Instrukcja", + t31: "Nowy Projekt", + t32: "Utwórz nowy projekt", + t33: "Otwórz Projekt", + t34: "hotspot", + t35: "Ostatnio otwarte", + t36: "OK", + t37: "Przynajmniej jedna drukarka musi być wybrana.", + t38: "Anuluj", + t39: "Potwierdź", + t40: "Rozłączenie sieci, proszę sprawdzić i spróbować ponownie później.", + t47: "Proszę wybrać swój region logowania", + t48: "Azja-Pacyfik", + t49: "Chiny", + t50: "Wyloguj", + t52: "Pomiń", + t53: "Dołącz", + t54: "W społeczności druku 3D uczymy się od sukcesów i porażek innych, aby dostosować nasze własne parametry i ustawienia krojenia. Orca Slicer podąża tą samą zasadą i wykorzystuje uczenie maszynowe do poprawy swojej wydajności na podstawie sukcesów i porażek dużej liczby wydruków naszych użytkowników. Szkolimy Orca Slicer, aby był mądrzejszy, dostarczając mu danych z rzeczywistego świata. Jeśli chcesz, ta usługa uzyska dostęp do informacji z Twoich logów błędów i logów użytkowania, które mogą zawierać informacje opisane w ", + t55: "Polityka Prywatności", + t56: ". Nie będziemy zbierać żadnych Danych Osobowych, przez które można bezpośrednio lub pośrednio zidentyfikować osobę, w tym bez ograniczeń nazwisk, adresów, informacji o płatnościach lub numerów telefonów. Aktywując tę usługę, zgadzasz się na te warunki i oświadczenie dotyczące Polityki Prywatności.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "Ameryka Północna", + t62: "Inne", + t63: "Po zmianie regionu, zostaniesz wylogowany z konta. Proszę zaloguj się ponownie później.", + t64: "Wtyczka Bambu Network", + t65: "Proszę mieć świadomość, że te wtyczki nie są rozwijane ani utrzymywane przez OrcaSlicer. Powinny być używane na własne ryzyko i z rozwagą.", + t66: "Pełna kontrola zdalna", + t67: "Transmisja na żywo", + t68: "Synchronizacja danych użytkownika", + t69: "Zainstaluj wtyczkę Bambu Network", + t70: "", + t71: "Pobieranie", + t72: "Nieudane pobieranie", + t73: "Instalacja zakończona sukcesem.", + t74: "Uruchom ponownie", + t75: "Niektórzy dostawcy drukarek wymagają własnych wtyczek do komunikacji ze swoimi drukarkami. Proszę wybrać odpowiednią wtyczkę, jeśli korzystasz z takich drukarek.", + t76: "Wtyczka Bambu Network nie wykryta. Kliknij ", + t77: "tutaj", + t78: " aby zainstalować.", + t79: "Nie udało się zainstalować wtyczki. ", + t80: "Spróbuj następujących kroków:", + t81: "1, Kliknij ", + t82: " aby otworzyć katalog wtyczek", + t83: "2, Zamknij wszystkie otwarte Orca Slicer", + t84: "3, Usuń wszystkie pliki z katalogu wtyczek", + t85: "4, Ponownie otwórz Orca Slicer i zainstaluj wtyczkę ponownie", + t86: "Zamknij", + t87: "Instrukcja użytkownika", + t88: "Usuń", + t89: "Otwórz folder zawierający", + t90: "Model 3D", + t91: "Pobierz modele 3D", + t92: "Utworzone przez", + t93: "Połączenie z drukarką", + t94: "Proszę skonfigurować połączenie z drukarką, aby wyświetlić urządzenie.", + t95: "Informacje o modelu", + t96: "Akcesoria", + t97: "Informacje o profilu", + t98: "Nazwa modelu", + t100: "Opis modelu", + t101: "BOM", + t102: "Przewodnik montażu", + t103: "Inne", + t104: "Nazwa profilu", + t105: "Autor profilu", + t106: "Opis profilu", + t107: "Modele online", + t108: "WIĘCEJ", + t109: "Systemowe filamenty", + t110: "Niestandardowe filamenty", + t111: "Utwórz nowy", + t112: "Dołącz do programu", + t113: "Możesz zmienić swój wybór w preferencjach w dowolnym momencie.", + t126: "Ładowanie trwa……", + orca1: "Edytuj informacje o projekcie", + orca2: "Brak informacji o modelu", + orca3: "Tryb «Niewidzialny»", + orca4: "To wyłączy przesyłanie danych do usług chmurowych Bambu. Użytkownicy, którzy nie korzystają z maszyn BBL lub używają tylko trybu LAN, mogą bez obaw włączyć tę opcję.", + orca5: "Włącz tryb «Niewidzialny»", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + pt_BR: { + t1: "Bem-vindo ao Orca Slicer", + t2: "Orca Slicer será configurado em várias etapas. Vamos começar!", + t3: "Termos de Uso", + t4: "Discordo", + t5: "Concordo", + t6: "Nós pedimos gentilmente sua ajuda para melhorar a impressão de todos.
Venha e junte-se ao nosso Programa de Melhoria de Experiência do Usuário", + t7: "Juntar-se ao nosso Programa de Melhoria de Experiência do Usuário", + t8: "Voltar", + t9: "Próximo", + t10: "Seleção de Impressora", + t11: "Tudo", + t12: "Limpar tudo", + t13: "mm nozzle", + t14: "Seleção de Filamento", + t15: "Impressora", + t16: "Tipo de Filamento", + t17: "Fabricante", + t18: "Erro", + t19: "Pelo menos um filamento deve ser selecionado.", + t20: "Você deseja usar o filamento padrão?", + t21: "Sim", + t22: "Não", + t23: "Notas de Atualização", + t24: "Vamos Começar", + t25: "Terminar", + t26: "Login", + t27: "Registrar", + t28: "Recente", + t29: "Loja", + t30: "Manual", + t31: "Novo Projeto", + t32: "Criar Novo Projeto", + t33: "Abrir Projeto", + t34: "hotspot", + t35: "Aberto Recentemente", + t36: "OK", + t37: "Pelo menos uma impressora deve ser selecionada.", + t38: "Cancelar", + t39: "Confirmar", + t40: "Conexão desconectada, por favor cheque e tente novamente.", + t47: "Por favor, selecione sua região de login", + t48: "Asia-Pacifico", + t49: "China", + t50: "Desconectar", + t52: "Pular", + t53: "Juntar", + t54: "Na comunidade de Impressão 3D, aprendemos com os sucessos e falhas uns dos outros para ajustar nossos próprios parâmetros e configurações de fatiamento. O Orca Slicer segue o mesmo princípio e utiliza aprendizado de máquina para melhorar seu desempenho com base nos sucessos e falhas de um grande número de impressões realizadas por nossos usuários. Estamos treinando o Orca Slicer para ser mais inteligente, alimentando-o com dados do mundo real. Se você concordar, este serviço acessará informações de seus registros de erros e registros de uso, que podem incluir informações descritas em…", + t55: "Política de Privacidade", + t56: ". Não coletaremos nenhum dado pessoal pelo qual um indivíduo possa ser identificado diretamente ou indiretamente, incluindo, sem limitação, nomes, endereços, informações de pagamento ou números de telefone. Ao habilitar este serviço, você concorda com estes termos e com a declaração sobre a Política de Privacidade.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "America do Norte", + t62: "Outras", + t63: "Após alterar sua região, sua conta será desconectada. Por favor faça login novamente mais tarde.", + t64: "Plugins Proprietários", + t65: "Por favor seja cuidadoso estes plugins não são desenvolvidos ou mantidos por OrcaSlicer. Eles devem ser usados por sua conta e risco.", + t66: "Controle remoto total", + t67: "Transmissão Ao Vivo", + t68: "Sincronização de Dados do Usuário", + t69: "Instalar Bambu Network plug-in", + t70: "", + t71: "Baixando", + t72: "Falha baixando", + t73: "Instalação concluída.", + t74: "Reiniciar", + t75: "Algumass fabricantes de impressoras exigem plugins proprietários para comunicação com suas impressoras. Se você utiliza tais impressoras, selecione o plug-in correspondente.", + t76: "Bambu Network plug-in não detectado. Clique ", + t77: "Aqui", + t78: " para instalar isto.", + t79: "Instalação do plug-in falhou. ", + t80: "Tente os seguintes passos:", + t81: "1, Clique ", + t82: " para abrir a pasta do plug-in", + t83: "2, Feche totalmente o Orca Slicer", + t84: "3, Delete todos os arquivos na pasta do plug-in", + t85: "4, Reabra o Orca Slicer e instale o plug-in novamente", + t86: "Fechar", + t87: "Manual de Usuário", + t88: "Remover", + t89: "Abrir pasta de Conteúdo", + t90: "Modelo 3D", + t91: "Baixar Modelos 3D", + t92: "Criado por", + t93: "Remixado por", + t94: "Compartilhado por", + t95: "Informações do Modelo", + t96: "Acessórios", + t97: "Informações do Perfil", + t98: "Nome do Modelo", + t100: "Descrição do Modelo", + t101: "BOM", + t102: "Guia de Montagem", + t103: "Outro", + t104: "Nome do Perfil", + t105: "Autor do Perfil", + t106: "Descrição do Perfil", + t107: "Modelos Online", + t108: "MAIS", + t109: "Filamentos do Sistema", + t110: "Filamentos Personalizados", + t111: "Criar Novo", + t112: "Junte-se ao Programa", + t113: "Você pode alterar sua escolha nas Preferências a qualquer momento", + t126: "Carregamento em andamento……", + orca1: "Editar Info do Projeto", + orca2: "Sem informação do modelo", + orca3: "Modo Furtivo", + orca4: "Isso interrompe a transmissão de dados para os serviços de nuvem da Bambu. Usuários que não usam máquinas BBL ou usam somente o modo LAN podem ativar essa função com segurança.", + orca5: "Habilita Modo Furtivo.", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, + lt_LT: { + t1: "Pasisveikinkite su Orca Slicer", + t2: "Orca Slicer bus nustatyta per kelis žingsnius. Pradėkime!", + t3: "Naudotojo sutartis", + t4: "Nesutinku", + t5: "Sutinku", + t6: "Maloniai prašome jūsų pagalbos, kad pagerintume visų spausdinimą.
Prisijunkite prie mūsų klientų patirties gerinimo programos", + t7: "Prisijunkite prie mūsų klientų patirties gerinimo programos", + t8: "Atgal", + t9: "Pirmyn", + t10: "Spausdintuvo pasirinkimas", + t11: "Visi", + t12: "Išvalyti visus", + t13: "mm purkštukas", + t14: "Gijos pasirinkimas", + t15: "Spausdintuvas", + t16: "Gijos tipas", + t17: "Gamintojas", + t18: "Klaida", + t19: "Turi būti pasirinkta bent viena gija.", + t20: "Ar norite naudoti numatytąją giją?", + t21: "Taip", + t22: "Ne", + t23: "Išleidimo pastabos", + t24: "Pradėti", + t25: "Pabaigti", + t26: "Prisijungti", + t27: "Prisiregistruoti", + t28: "Naujausi", + t29: "Pirkti", + t30: "Rankinis", + t31: "Naujas projektas", + t32: "Sukurti naują projektą", + t33: "Atverti projektą", + t34: "Prieigos taškas", + t35: "Neseniai atidaryti", + t36: "Gerai", + t37: "Turi būti pasirinktas bent vienas spausdintuvas.", + t38: "Atšaukti", + t39: "Patvirtinti", + t40: "Tinklas atjungtas, patikrinkite ir bandykite vėliau.", + t47: "Pasirinkite prisijungimo regioną", + t48: "Azija-Ramusis vandenynas", + t49: "Kinija", + t50: "Atsijungti", + t52: "Praleisti", + t53: "Prisijungti", + t54: "3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad galėtume pritaikyti savo pjaustymo parametrus ir nustatymus. Orca Slicer vadovaujasi tuo pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą, remdamasi daugybės mūsų naudotojų atspaudų sėkmėmis ir nesėkmėmis. Maitindami Orca Slicer realaus pasaulio duomenimis, mokome ją būti protingesne. Jei pageidaujate, ši paslauga pasieks informaciją iš jūsų klaidų žurnalų ir naudojimo žurnalų, į kuriuos gali būti įtraukta informacija, aprašyta ", + t55: "privatumo politikoje", + t56: ". Nerinksime jokių asmens duomenų, pagal kuriuos galima tiesiogiai ar netiesiogiai nustatyti asmens tapatybę, įskaitant, bet neapsiribojant vardus, adresus, mokėjimo informaciją ar telefono numerius. Įjungdami šią paslaugą sutinkate su šiomis sąlygomis ir privatumo politikos nuostatomis.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "Šiaurės Amerika", + t62: "Kiti", + t63: "Pakeitus regioną, jūsų paskyra bus išregistruota. Vėliau vėl prisijunkite.", + t64: "Patentuoti papildiniai", + t65: "Atkreipkite dėmesį, kad OrcaSlicer šių papildinių nesukuria ir neprižiūri. Juos turėtumėte naudoti savo nuožiūra ir rizika.", + t66: "Pilnas nuotolinis valdymas", + t67: "Tiesioginė transliacija", + t68: "Naudotojo duomenų sinchronizavimas", + t69: "Įdiegti Bambu tinklo papildinį", + t70: "", + t71: "Atsisiunčiama", + t72: "Nepavyko atsisiųsti", + t73: "Diegimas sėkmingas.", + t74: "Paleisti iš naujo", + t75: "Kai kurie spausdintuvų gamintojai reikalauja patentuotų priedų, kad būtų galima bendrauti su jų spausdintuvais. Jei naudojate tokius spausdintuvus, pasirinkite atitinkamą įskiepį.", + t76: "Neaptiktas Bambu tinklo papildinys. Spustelėkite ", + t77: "čia", + t78: " jo diegimui.", + t79: "Nepavyko įdiegti papildinio. ", + t80: "Išbandykite šiuos žingsnius:", + t81: "1, Spustelkite ", + t82: " atidaryti papildinių katalogą", + t83: "2, Uždarykite visas veikiančias Orca Slicer programas", + t84: "3, Ištrinkite visus failus iš papildinių katalogo", + t85: "4, Iš naujo atverkite OrcaSlicer ir iš naujo įdiekite papildinį", + t86: "Užverti", + t87: "Naudotojo vadovas", + t88: "Pašalinti", + t89: "Atidaryti katalogą, kuriame yra", + t90: "3D modelis", + t91: "Atsisiųsti 3D modelius", + t92: "Sukurta", + t93: "Perkurta", + t94: "Pasidalinta", + t95: "Modelio informacija", + t96: "Priedai", + t97: "Profilio informacija", + t98: "Modelio pavadinimas", + t100: "Modelio aprašymas", + t101: "BOM", + t102: "Surinkimo vadovas", + t103: "Kita", + t104: "Profilio pavadinimas", + t105: "Profilio autorius", + t106: "Profilio aprašymas", + t107: "Modeliai internete", + t108: "DAUGIAU", + t109: "Sistemos gijos", + t110: "Pasirinktinės gijos", + t111: "Sukurti naują", + t112: "Prisijungti prie programos", + t113: "Savo pasirinkimą galite bet kada pakeisti.", + orca1: "Redaguoti projekto informaciją", + orca2: "Nėra informacijos apie modelį", + orca3: "Slaptas režimas", + orca4: "Tai sustabdo duomenų perdavimą į Bambu debesijos paslaugas. Vartotojai, kurie nenaudoja BBL mašinų arba naudoja tik LAN režimą, gali drąsiai įjungti šią funkciją.", + orca5: "Įjungti slaptą režimą.", + orca6: "Bambu Cloud", + orca7: "Orca Cloud Account", + orca8: "Not signed in", + orca9: "Bambu Cloud Account", + orca10: "Not connected", + orca11: "Connected", + }, +}; + +var LANG_COOKIE_NAME = "BambuWebLang"; +var LANG_COOKIE_EXPIRESECOND = 365 * 86400; + +function TranslatePage() { + let strLang = GetQueryString("lang"); + if (strLang != null) { + //setCookie(LANG_COOKIE_NAME,strLang,LANG_COOKIE_EXPIRESECOND,'/'); + localStorage.setItem(LANG_COOKIE_NAME, strLang); + } else { + //strLang=getCookie(LANG_COOKIE_NAME); + strLang = localStorage.getItem(LANG_COOKIE_NAME); + } + + //alert(strLang); + + if (!LangText.hasOwnProperty(strLang)) strLang = "en"; + + let AllNode = $(".trans"); + let nTotal = AllNode.length; + for (let n = 0; n < nTotal; n++) { + let OneNode = AllNode[n]; + + let tid = $(OneNode).attr("tid"); + if (LangText[strLang].hasOwnProperty(tid)) { + $(OneNode).html(LangText[strLang][tid]); + } + } +} + diff --git a/resources/web/homepage/css/dark.css b/resources/web/homepage/css/dark.css index ef94e20ce8..d4950c9c80 100644 --- a/resources/web/homepage/css/dark.css +++ b/resources/web/homepage/css/dark.css @@ -129,7 +129,12 @@ body border: 1px solid rgba(129, 129, 131, 0.64); } +/*--- Account Sections ---*/ +.AccountSectionLabel { color: #818183; } +.OrcaAccountText { color: #efeff0; } +.AccountStatusText { color: #818183; } + /*--- Bambu Cloud Section ---*/ #BambuCloudHeader { color: #818183; } #BambuCloudHeader:hover { color: #efeff0; } -.bambu-chevron svg path { stroke: currentColor; } \ No newline at end of file +.bambu-chevron svg path { stroke: currentColor; } diff --git a/resources/web/homepage/css/home.css b/resources/web/homepage/css/home.css index 2bcc18451f..e99d22ec64 100644 --- a/resources/web/homepage/css/home.css +++ b/resources/web/homepage/css/home.css @@ -80,7 +80,6 @@ body #LoginArea { - min-height: 180px; display: flex; flex-direction: column; align-items: center; @@ -89,6 +88,38 @@ body width:262px; } +.AccountSectionLabel +{ + display: flex; + align-items: center; + gap: 8px; + font-size: 13px; + font-weight: 600; + color: var(--fg-color-text); + padding: 16px 20px 6px; + width: 262px; + box-sizing: border-box; +} + +.AccountSectionIcon +{ + width: 18px; + height: 18px; + flex: 0 0 auto; +} + +.AccountStatusText +{ + font-size: 12px; + color: #A8A8A8; + margin-top: 8px; +} + +.OrcaAccountText +{ + font-weight: bold; +} + #OrcaLoginSection { display: flex; diff --git a/resources/web/homepage/index.html b/resources/web/homepage/index.html index e768c6b953..24eb8285a7 100644 --- a/resources/web/homepage/index.html +++ b/resources/web/homepage/index.html @@ -24,11 +24,17 @@
-
-
-
-
login / register
-
+
+ + Orca Cloud +
+ +
+
+
+
login / register
+
Not signed in
+
@@ -261,4 +267,3 @@ - diff --git a/resources/web/homepage/js/home.js b/resources/web/homepage/js/home.js index 72789cc088..f522c44bed 100644 --- a/resources/web/homepage/js/home.js +++ b/resources/web/homepage/js/home.js @@ -173,6 +173,7 @@ function GotoMenu( strMenu ) function SetOrcaLoginInfo( strAvatar, strName ) { $("#OrcaLogin1").hide(); + $("#OrcaStatusText").hide(); $("#UserName").text(strName); @@ -196,6 +197,7 @@ function SetOrcaUserOffline() $("#OrcaLogin1").show(); $("#OrcaLogin1").css("display","flex"); + $("#OrcaStatusText").show(); } function SetMallUrl( strUrl ) @@ -437,6 +439,8 @@ function SetBambuLoginInfo(strAvatar, strName) { $("#BambuLogin2").show(); $("#BambuLogin2").css("display", "flex"); $(".bambu-status-dot").addClass("online"); + $("#BambuStatusText").text("Connected"); + $("#BambuStatusText").attr("tid", "orca11"); } function SetBambuUserOffline() { @@ -448,6 +452,8 @@ function SetBambuUserOffline() { $("#BambuLogin1").css("display", "flex"); } $(".bambu-status-dot").removeClass("online"); + $("#BambuStatusText").text("Not connected"); + $("#BambuStatusText").attr("tid", "orca10"); } function OnBambuLoginOrRegister() { SendSimpleCommand("homepage_bambu_login_or_register"); } From 19eb9e634f8e14ebcb0f6ce0ffd297eef567ea4a Mon Sep 17 00:00:00 2001 From: ExPikaPaka <112851715+ExPikaPaka@users.noreply.github.com> Date: Wed, 20 May 2026 13:25:51 +0200 Subject: [PATCH 05/30] Adds force sync UI button. Added missing code for previous PR (#13757) --- src/slic3r/GUI/GUI_App.cpp | 13 ++++++++++--- src/slic3r/GUI/MainFrame.cpp | 19 +++++++++++++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index aa58a2e3a1..f2c306d28c 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -5849,10 +5849,17 @@ void GUI_App::reload_settings() load_pending_vendors(); preset_bundle->load_user_presets(*app_config, user_presets, ForwardCompatibilitySubstitutionRule::Enable); preset_bundle->save_user_presets(*app_config, get_delete_cache_presets()); - if (is_main_thread_active()) + if (is_main_thread_active()) { mainframe->update_side_preset_ui(); - else - CallAfter([this] { mainframe->update_side_preset_ui(); }); + if (plater_) + plater_->sidebar().update_all_preset_comboboxes(); + } else { + CallAfter([this] { + mainframe->update_side_preset_ui(); + if (plater_) + plater_->sidebar().update_all_preset_comboboxes(); + }); + } } } diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index d83cc1445a..6a8b276cce 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -3271,6 +3271,25 @@ void MainFrame::init_menubar_as_editor() plater()->get_current_canvas3D()->force_set_focus(); }, "", nullptr, []() { return true; }, this); + + append_menu_item( + m_topbar->GetTopMenu(), wxID_ANY, _L("Sync Presets"), _L("Pull and apply the latest presets from OrcaCloud"), + [this](wxCommandEvent&) { + if (!wxGetApp().is_user_login()) { + MessageDialog info_dlg(this, _L("You must be logged in to sync presets from cloud."), + _L("Sync Presets"), wxOK | wxICON_INFORMATION); + info_dlg.ShowModal(); + return; + } + if (m_plater) + m_plater->get_notification_manager()->push_notification( + into_u8(_L("Syncing presets from cloud\u2026"))); + wxGetApp().restart_sync_user_preset(); + }, "", nullptr, + [this]() { + return wxGetApp().is_user_login() && !wxGetApp().app_config->get_stealth_mode(); + }, this); + //m_topbar->AddDropDownMenuItem(preference_item); //m_topbar->AddDropDownMenuItem(printer_item); //m_topbar->AddDropDownMenuItem(language_item); From b882da99ad52618b1193118b07ce76b03a4de739 Mon Sep 17 00:00:00 2001 From: HYzd766 <108379794+HYzd766@users.noreply.github.com> Date: Wed, 20 May 2026 22:55:58 +0800 Subject: [PATCH 06/30] Modifications to the hotbed temperature of various types of printing plates (#13717) --- .../Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json | 3 -- .../Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json | 3 -- .../Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json | 3 -- .../Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json | 3 -- .../Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json | 3 -- .../Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json | 3 -- .../Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json | 3 -- .../Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json | 3 -- .../Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json | 3 -- .../Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json | 3 -- .../Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json | 3 -- .../Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json | 3 -- .../Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json | 3 -- .../Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json | 3 -- .../Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../profiles/Qidi/filament/Bambu PETG.json | 6 --- .../Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json | 6 --- .../Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json | 6 --- .../Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json | 6 --- .../Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json | 6 --- .../Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json | 6 --- .../Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json | 6 --- .../Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json | 6 --- .../Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json | 3 -- .../HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json | 3 -- .../HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json | 3 -- .../HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...ATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...ATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...ATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...ATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json | 3 -- ...HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ...HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ...HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ...HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...TCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...TCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...TCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...TCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Qidi/filament/HATCHBOX PETG @Qidi.json | 6 --- .../HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json | 6 --- .../HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json | 6 --- .../HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json | 6 --- .../HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...ATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ...ATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...ATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...ATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../Overture ABS @Qidi Q1 Pro 0.2 nozzle.json | 3 -- .../Overture ABS @Qidi Q1 Pro 0.4 nozzle.json | 3 -- .../Overture ABS @Qidi Q1 Pro 0.6 nozzle.json | 3 -- .../Overture ABS @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...verture ABS @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...verture ABS @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...verture ABS @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...verture ABS @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Overture PLA @Qidi Q1 Pro 0.2 nozzle.json | 6 --- .../Overture PLA @Qidi Q1 Pro 0.4 nozzle.json | 6 --- .../Overture PLA @Qidi Q1 Pro 0.6 nozzle.json | 6 --- .../Overture PLA @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...verture PLA @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ...verture PLA @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...verture PLA @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...verture PLA @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json | 3 -- .../PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json | 3 -- .../PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json | 3 -- .../PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...olyLite ABS @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...olyLite ABS @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...olyLite ABS @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...olyLite ABS @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json | 6 --- .../PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json | 6 --- .../PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json | 6 --- .../PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...olyLite PLA @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ...olyLite PLA @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...olyLite PLA @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...olyLite PLA @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../Qidi/filament/Q2/Bambu ABS @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/Bambu ABS @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/Bambu PETG @Q2.json | 32 +++++++++++++-- .../Qidi/filament/Q2/Bambu PETG @Q2C.json | 32 +++++++++++++-- .../Qidi/filament/Q2/Bambu PLA @Q2.json | 32 ++++++++++++++- .../Qidi/filament/Q2/Bambu PLA @Q2C.json | 32 ++++++++++++++- .../Qidi/filament/Q2/Generic ABS @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/Generic ABS @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/Generic PETG @Q2.json | 32 +++++++++++++-- .../Qidi/filament/Q2/Generic PETG @Q2C.json | 32 +++++++++++++-- .../Qidi/filament/Q2/Generic PLA @Q2.json | 26 +++++++++++- .../Qidi/filament/Q2/Generic PLA @Q2C.json | 26 +++++++++++- .../filament/Q2/Generic PLA Silk @Q2.json | 30 ++++++++++++-- .../filament/Q2/Generic PLA Silk @Q2C.json | 30 ++++++++++++-- .../Qidi/filament/Q2/Generic PLA+ @Q2.json | 32 ++++++++++++++- .../Qidi/filament/Q2/Generic PLA+ @Q2C.json | 32 ++++++++++++++- .../Qidi/filament/Q2/Generic TPU 95A @Q2.json | 34 +++++++++++++++- .../filament/Q2/Generic TPU 95A @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/HATCHBOX ABS @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/HATCHBOX ABS @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/HATCHBOX PETG @Q2.json | 32 +++++++++++++-- .../Qidi/filament/Q2/HATCHBOX PETG @Q2C.json | 32 +++++++++++++-- .../Qidi/filament/Q2/HATCHBOX PLA @Q2.json | 32 ++++++++++++++- .../Qidi/filament/Q2/HATCHBOX PLA @Q2C.json | 32 ++++++++++++++- .../Qidi/filament/Q2/Overture ABS @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/Overture ABS @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/Overture PLA @Q2.json | 32 ++++++++++++++- .../Qidi/filament/Q2/Overture PLA @Q2C.json | 32 ++++++++++++++- .../Qidi/filament/Q2/PolyLite ABS @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/PolyLite ABS @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/PolyLite PLA @Q2.json | 32 ++++++++++++++- .../Qidi/filament/Q2/PolyLite PLA @Q2C.json | 32 ++++++++++++++- .../filament/Q2/QIDI ABS Odorless @Q2.json | 34 +++++++++++++++- .../filament/Q2/QIDI ABS Odorless @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ABS Rapido @Q2.json | 34 +++++++++++++++- .../filament/Q2/QIDI ABS Rapido @Q2C.json | 34 +++++++++++++++- .../Q2/QIDI ABS Rapido Metal @Q2.json | 34 +++++++++++++++- .../Q2/QIDI ABS Rapido Metal @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ABS-GF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ABS-GF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ASA @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ASA @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ASA-Aero @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ASA-CF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI ASA-CF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PA12-CF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PA12-CF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PAHT-CF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PAHT-GF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json | 38 ++++++++++++++++-- .../Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json | 38 ++++++++++++++++-- .../Qidi/filament/Q2/QIDI PEBA 95A @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PET-CF @Q2.json | 30 ++++++++++++-- .../Qidi/filament/Q2/QIDI PET-CF @Q2C.json | 30 ++++++++++++-- .../Qidi/filament/Q2/QIDI PET-GF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PET-GF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PETG Basic @Q2.json | 32 +++++++++++++-- .../filament/Q2/QIDI PETG Basic @Q2C.json | 32 +++++++++++++-- .../filament/Q2/QIDI PETG Rapido @Q2.json | 32 +++++++++++++-- .../filament/Q2/QIDI PETG Rapido @Q2C.json | 32 +++++++++++++-- .../Qidi/filament/Q2/QIDI PETG Tough @Q2.json | 32 +++++++++++++-- .../filament/Q2/QIDI PETG Tough @Q2C.json | 32 +++++++++++++-- .../Q2/QIDI PETG Translucent @Q2.json | 32 +++++++++++++-- .../Q2/QIDI PETG Translucent @Q2C.json | 32 +++++++++++++-- .../Qidi/filament/Q2/QIDI PETG-CF @Q2.json | 32 +++++++++++++-- .../Qidi/filament/Q2/QIDI PETG-CF @Q2C.json | 32 +++++++++++++-- .../Qidi/filament/Q2/QIDI PETG-GF @Q2.json | 32 +++++++++++++-- .../Qidi/filament/Q2/QIDI PETG-GF @Q2C.json | 32 +++++++++++++-- .../Qidi/filament/Q2/QIDI PLA Basic @Q2.json | 26 +++++++++++- .../Qidi/filament/Q2/QIDI PLA Basic @Q2C.json | 26 +++++++++++- .../filament/Q2/QIDI PLA Matte Basic @Q2.json | 26 +++++++++++- .../Q2/QIDI PLA Matte Basic @Q2C.json | 26 +++++++++++- .../Qidi/filament/Q2/QIDI PLA Rapido @Q2.json | 26 +++++++++++- .../filament/Q2/QIDI PLA Rapido @Q2C.json | 26 +++++++++++- .../Q2/QIDI PLA Rapido Matte @Q2.json | 32 ++++++++++++++- .../Q2/QIDI PLA Rapido Matte @Q2C.json | 32 ++++++++++++++- .../Q2/QIDI PLA Rapido Metal @Q2.json | 32 ++++++++++++++- .../Q2/QIDI PLA Rapido Metal @Q2C.json | 32 ++++++++++++++- .../filament/Q2/QIDI PLA Rapido Silk @Q2.json | 30 ++++++++++++-- .../Q2/QIDI PLA Rapido Silk @Q2C.json | 30 ++++++++++++-- .../Qidi/filament/Q2/QIDI PLA-CF @Q2.json | 36 +++++++++++++++-- .../Qidi/filament/Q2/QIDI PLA-CF @Q2C.json | 36 +++++++++++++++-- .../Qidi/filament/Q2/QIDI PPS-CF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PPS-CF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PPS-GF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI PPS-GF @Q2C.json | 34 +++++++++++++++- .../Q2/QIDI Support For PAHT @Q2.json | 28 ++++++++++++- .../Q2/QIDI Support For PAHT @Q2C.json | 28 ++++++++++++- .../Q2/QIDI Support For PET-PA @Q2.json | 30 ++++++++++++-- .../Q2/QIDI Support For PET-PA @Q2C.json | 30 ++++++++++++-- .../Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json | 34 +++++++++++++++- .../filament/Q2/QIDI TPU 95A-HF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI TPU-Aero @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI TPU-GF @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI TPU-GF @Q2C.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI UltraPA @Q2.json | 34 +++++++++++++++- .../Qidi/filament/Q2/QIDI UltraPA @Q2C.json | 34 +++++++++++++++- .../filament/Q2/QIDI UltraPA-CF25 @Q2.json | 34 +++++++++++++++- .../filament/Q2/QIDI UltraPA-CF25 @Q2C.json | 34 +++++++++++++++- .../filament/Q2/QIDI WOOD Rapido @Q2.json | 32 ++++++++++++++- .../filament/Q2/QIDI WOOD Rapido @Q2C.json | 32 ++++++++++++++- ... ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ... ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ... ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ... ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...BS Odorless @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...BS Odorless @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...BS Odorless @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...BS Odorless @Qidi X-Plus 4 0.8 nozzle.json | 3 -- ...DI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ...DI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ...DI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ...DI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ... ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ... ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ... ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ... ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json | 3 -- ... Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ... Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ... Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ... Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...apido Metal @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...apido Metal @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...apido Metal @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...apido Metal @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json | 6 --- .../QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json | 6 --- .../QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../profiles/Qidi/filament/QIDI ABS-GF.json | 6 --- ...QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ...QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...DI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...DI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...DI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../profiles/Qidi/filament/QIDI ABS-GF10.json | 6 --- ...QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ...QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...DI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...DI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...DI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../profiles/Qidi/filament/QIDI ABS-GF25.json | 6 --- .../profiles/Qidi/filament/QIDI ASA-CF.json | 34 +++++++++++++++- .../profiles/Qidi/filament/QIDI ASA.json | 24 ----------- .../profiles/Qidi/filament/QIDI PA-Ultra.json | 32 ++++++++++++++- .../profiles/Qidi/filament/QIDI PA12-CF.json | 32 ++++++++++++++- .../profiles/Qidi/filament/QIDI PAHT-CF.json | 32 ++++++++++++++- .../profiles/Qidi/filament/QIDI PAHT-GF.json | 32 ++++++++++++++- .../profiles/Qidi/filament/QIDI PEBA 95A.json | 6 --- .../profiles/Qidi/filament/QIDI PET-CF.json | 32 ++++++++++++++- .../profiles/Qidi/filament/QIDI PET-GF.json | 32 ++++++++++++++- ...DI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ...DI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ...DI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ...DI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ... PETG Basic @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ... PETG Basic @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ... PETG Basic @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ... PETG Basic @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Qidi/filament/QIDI PETG Basic.json | 6 --- ...I PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ...I PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ...I PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ...I PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Qidi/filament/QIDI PETG Rapido.json | 6 --- ...DI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ...DI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ...DI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ...DI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ... PETG Tough @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ... PETG Tough @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ... PETG Tough @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ... PETG Tough @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Qidi/filament/QIDI PETG Tough.json | 6 --- ...G Translucent @Qidi Q1 Pro 0.2 nozzle.json | 3 -- ...G Translucent @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ...G Translucent @Qidi Q1 Pro 0.6 nozzle.json | 3 -- ...G Translucent @Qidi Q1 Pro 0.8 nozzle.json | 3 -- ...Translucent @Qidi X-Plus 4 0.2 nozzle.json | 3 -- ...Translucent @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...Translucent @Qidi X-Plus 4 0.6 nozzle.json | 3 -- ...Translucent @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Qidi/filament/QIDI PETG Translucent.json | 6 --- .../profiles/Qidi/filament/QIDI PETG-CF.json | 6 --- .../profiles/Qidi/filament/QIDI PETG-GF.json | 6 --- ...IDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json | 6 --- ...IDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...IDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ...IDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...I PLA Basic @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ...I PLA Basic @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...I PLA Basic @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...I PLA Basic @Qidi X-Plus 4 0.8 nozzle.json | 6 --- ...A Matte Basic @Qidi Q1 Pro 0.2 nozzle.json | 6 --- ...A Matte Basic @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...A Matte Basic @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ...A Matte Basic @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...Matte Basic @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ...Matte Basic @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...Matte Basic @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...Matte Basic @Qidi X-Plus 4 0.8 nozzle.json | 6 --- ...DI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json | 6 --- ...DI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...DI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ...DI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ... PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ... PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ... PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ... PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json | 6 --- ... Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json | 6 --- ... Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ... Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ... Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...apido Matte @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ...apido Matte @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...apido Matte @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...apido Matte @Qidi X-Plus 4 0.8 nozzle.json | 6 --- ... Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json | 6 --- ... Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ... Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ... Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...apido Metal @Qidi X-Plus 4 0.2 nozzle.json | 6 --- ...apido Metal @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...apido Metal @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...apido Metal @Qidi X-Plus 4 0.8 nozzle.json | 6 --- ...A Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...A Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ...Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json | 6 --- .../Qidi/filament/QIDI PLA Rapido Silk.json | 20 +++++++++- .../profiles/Qidi/filament/QIDI PPS-CF.json | 32 ++++++++++++++- .../profiles/Qidi/filament/QIDI PPS-GF.json | 32 ++++++++++++++- .../Qidi/filament/QIDI Support For PAHT.json | 32 ++++++++++++++- .../filament/QIDI Support For PET-PA.json | 32 ++++++++++++++- .../profiles/Qidi/filament/QIDI TPU-Aero.json | 6 --- .../profiles/Qidi/filament/QIDI TPU-GF.json | 6 --- .../Qidi/filament/QIDI UltraPA-CF25.json | 32 ++++++++++++++- .../profiles/Qidi/filament/Qidi ASA-Aero.json | 24 ----------- ...i Generic ABS @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...Generic ABS @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ... Generic PETG @Qidi Q1 Pro 0.4 nozzle.json | 3 -- ...eneric PETG @Qidi X-Plus 4 0.4 nozzle.json | 3 -- ...eneric PETG @Qidi X-Plus 4 0.8 nozzle.json | 3 -- .../Qidi/filament/Qidi Generic PETG-CF.json | 24 ----------- ...i Generic PLA @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...Generic PLA @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...eric PLA Silk @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...ic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json | 6 --- .../Qidi/filament/Qidi Generic PLA Silk.json | 26 ++++++++---- ... Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...eneric PLA+ @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...neric TPU 95A @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...ric TPU 95A @Qidi X-Plus 4 0.8 nozzle.json | 6 --- ...idi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json | 6 --- ...idi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json | 6 --- ...idi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json | 6 --- ...i PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json | 6 --- ...i PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json | 6 --- ...i PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json | 6 --- .../Qidi/filament/Qidi PC-ABS-FR.json | 6 --- .../Qidi/filament/Qidi TPU 95A-HF.json | 6 --- .../Qidi/filament/Tinmorry PETG-ECO.json | 24 ----------- .../Qidi/filament/X4/Bambu ABS @X-Max 4.json | 34 +++++++++++++++- .../Qidi/filament/X4/Bambu PETG @X-Max 4.json | 32 +++++++++++++-- .../Qidi/filament/X4/Bambu PLA @X-Max 4.json | 26 +++++++++++- .../filament/X4/Generic ABS @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/Generic PETG @X-Max 4.json | 32 +++++++++++++-- .../filament/X4/Generic PLA @X-Max 4.json | 20 +++++++++- .../X4/Generic PLA Silk @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/Generic PLA+ @X-Max 4.json | 26 +++++++++++- .../filament/X4/Generic TPU 95A @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/HATCHBOX ABS @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/HATCHBOX PETG @X-Max 4.json | 32 +++++++++++++-- .../filament/X4/HATCHBOX PLA @X-Max 4.json | 26 +++++++++++- .../filament/X4/Overture ABS @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/Overture PLA @X-Max 4.json | 26 +++++++++++- .../filament/X4/PolyLite ABS @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/PolyLite PLA @X-Max 4.json | 26 +++++++++++- .../X4/QIDI ABS Odorless @X-Max 4.json | 38 ++++++++++++++++-- .../filament/X4/QIDI ABS Rapido @X-Max 4.json | 34 +++++++++++++++- .../X4/QIDI ABS Rapido Metal @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI ABS-GF @X-Max 4.json | 34 +++++++++++++++- .../Qidi/filament/X4/QIDI ASA @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI ASA-Aero @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI ASA-CF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI PA12-CF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI PAHT-CF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI PAHT-GF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI PC-ABS-FR @X-Max 4.json | 38 ++++++++++++++++-- .../filament/X4/QIDI PEBA 95A @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI PET-CF @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI PET-GF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI PETG Basic @X-Max 4.json | 30 ++++++++++++-- .../X4/QIDI PETG Rapido @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI PETG Tough @X-Max 4.json | 30 ++++++++++++-- .../X4/QIDI PETG Translucent @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI PETG-CF @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI PETG-GF @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI PLA Basic @X-Max 4.json | 20 +++++++++- .../X4/QIDI PLA Matte Basic @X-Max 4.json | 20 +++++++++- .../filament/X4/QIDI PLA Rapido @X-Max 4.json | 20 +++++++++- .../X4/QIDI PLA Rapido Matte @X-Max 4.json | 26 +++++++++++- .../X4/QIDI PLA Rapido Metal @X-Max 4.json | 26 +++++++++++- .../X4/QIDI PLA Rapido Silk @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI PLA-CF @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI PPS-CF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI PPS-GF @X-Max 4.json | 34 +++++++++++++++- .../X4/QIDI Support For PAHT @X-Max 4.json | 28 ++++++++++++- .../X4/QIDI Support For PET-PA @X-Max 4.json | 30 ++++++++++++-- .../filament/X4/QIDI TPU 95A-HF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI TPU-Aero @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI TPU-GF @X-Max 4.json | 34 +++++++++++++++- .../filament/X4/QIDI UltraPA @X-Max 4.json | 34 +++++++++++++++- .../X4/QIDI UltraPA-CF25 @X-Max 4.json | 34 +++++++++++++++- .../X4/QIDI WOOD Rapido @X-Max 4.json | 40 +++++++++++++++---- .../Qidi/filament/fdm_filament_abs.json | 18 +++++++-- .../Qidi/filament/fdm_filament_asa.json | 18 +++++++-- .../Qidi/filament/fdm_filament_common.json | 16 +++++++- .../Qidi/filament/fdm_filament_pet.json | 20 ++++++++-- .../Qidi/filament/fdm_filament_pla.json | 16 +++++++- .../Qidi/filament/fdm_filament_tpu.json | 30 +++++++++----- .../Qidi/process/fdm_process_common.json | 1 + 417 files changed, 5235 insertions(+), 1577 deletions(-) diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json index 6b93192da1..f3c4889c7b 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json index dc19040ad4..9bd9f9891c 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json index 4c462f5cfd..58ccb23945 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json index 0c86d130fb..c1ed98f833 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json index ca3ebeb393..870aa4b62a 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json index d828ebdfef..e02891e778 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json index 640dec4788..dec0a1bcdf 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json index 1a93387d67..b4b0eb179f 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json index cc55033ab6..846667811f 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi Q1 Pro 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json index 087dc7f093..24d220c590 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json index d7e8680c28..4235bdf0f5 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json index 13e833f220..934e555457 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json index b5b27482a2..a4d967883e 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi X-Plus 4 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json index a2fc35ea00..b51e255826 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json index 3f1f8c7872..388aa1b953 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json index e14d5d85cd..7f2ce80233 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "Bambu PETG @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Bambu PETG.json b/resources/profiles/Qidi/filament/Bambu PETG.json index 5ac107ebf8..945a08f097 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG.json +++ b/resources/profiles/Qidi/filament/Bambu PETG.json @@ -48,12 +48,6 @@ "pressure_advance": [ "0.04" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "filament_density": [ "1.24" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json index d36305d8f6..973b27eb53 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json index 4e8cdb5fd3..e3fb795c88 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json index a867834efc..6f3fbfb423 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json index 327c0d4f19..ac0b3a388d 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json index 6d1fc1521e..2d84298502 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json index f341f907a7..28782b03e1 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json index 495ab3afdb..9e40f5f9e1 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json index d5f261c7bf..ebe2a140b4 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json index 9c24c1a90d..084d29524a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json index 5c865a0f50..93406dd75a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json index ffad28c4de..e793b8bdb6 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json index d25e86761f..b2a740f5a8 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json index 7d38fa21dc..4d0f59add4 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json index eea597d780..0aea7d1217 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json index 9b3db7786d..855f1887db 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json index 968e428679..47cf8b00e8 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json index d84bcb40f9..6f9d2dd62c 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json index ef558e9eb7..9c996e287b 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json index e0713daa28..bf90d8d3cd 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json index 53264719de..bc4b064417 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json index 44b15546bc..b85d2415ab 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json index 751d1ca26e..bf8de06833 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json index f726197e42..8393618843 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json index 95b1d0e3b5..44d7236902 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json index e7761b5704..5eae8a6341 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json @@ -48,12 +48,6 @@ "pressure_advance": [ "0.04" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "filament_density": [ "1.24" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json index 71d09dd19b..c94421bcc5 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json index 84fffa5a33..607e64477e 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json index 71e6d83d87..ecfa4b60d4 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json index 9dce41523b..996a9187e7 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json index 8efd418513..7c87317968 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json index a4db450404..adbe6a9b53 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json index 5ac653d7c3..9788bde3d1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json index 2e54b9ca06..265a738163 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json index fbd96d1fea..dec11db303 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json index f128976b57..288f960208 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -27,9 +27,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json index 95ecfb51dd..46f2965524 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -21,9 +21,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json index f3d4f61ca6..19d2e048c5 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -21,9 +21,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json index e1fd6e3051..79f5e50f6b 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -21,9 +21,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json index f746a4998c..c095847694 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -18,9 +18,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json index aee1894c55..2ac56a877e 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -18,9 +18,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json index 4afb02f1a8..08ee709578 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -18,9 +18,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json index ab26949958..fe7e059b55 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json index 337c1bb8ae..ebbd3abe66 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json index c1cc71ab1e..b1c4b76695 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json index fc3d1a2f58..850ba1d081 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json index d116d190a6..02a5874f61 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json index d99939a9c1..8ee6dbb9d7 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json index 316113eb84..615ef895b3 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json index f3be25ebae..ac88c21e08 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json index 68070879f8..32c223c423 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json index ea45d186ba..c3c6da64a2 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -27,9 +27,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json index 26315c8e98..285d252a18 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -21,9 +21,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json index 2aab4a499d..b82676aad6 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -21,9 +21,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json index 01fd58ac92..fa1ac10040 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -21,9 +21,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json index 4276d96501..b426327f41 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -18,9 +18,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json index 691396f5b6..b06da9eeaa 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -18,9 +18,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json index 9808e7be28..65392da9c9 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -18,9 +18,6 @@ "fan_max_speed": [ "80" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "255" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json index 6a7417825e..757d5de4d8 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json index a14c632860..50edbb223a 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json index ab903adc0f..6250aa8dde 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json index 6440a2d5fb..d9116bcf6d 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json index 511670000e..ce2f124739 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json index ab36a362e3..8467c9ee77 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json index 5ebe20a6d1..68848deba5 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json index a9d24dac09..852b7b6be3 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json index 47453334ac..64ef38fac0 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json index a1b002f167..a837b796ea 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json index fabc1c0b39..32a40477c8 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json @@ -61,10 +61,10 @@ "8" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -75,5 +75,29 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json index 9ef6d4e205..ac704e0352 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json @@ -61,10 +61,10 @@ "8" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -75,5 +75,29 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json index e118c74afa..7febab3ced 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json @@ -42,5 +42,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json index 438fb53cc7..0d431b0976 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json @@ -42,5 +42,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json index da9beef15d..b328b94f62 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json index 9cd8d57237..2e9e4ce632 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json index 6f315f8fb8..4581dfc54a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json @@ -64,10 +64,10 @@ "12" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -78,5 +78,29 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json index 0589f30adb..b570247e3f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json @@ -64,10 +64,10 @@ "12" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -78,5 +78,29 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json index 10609ebc43..15a15c408a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json @@ -54,5 +54,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json index 38080d7ba3..4fb0fdee07 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json @@ -54,5 +54,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json index fecb4b9f4f..ee01cdb59d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json @@ -46,10 +46,10 @@ "0.032" ], "supertack_plate_temp_initial_layer": [ - "35" + "45" ], "supertack_plate_temp": [ - "35" + "45" ], "temperature_vitrification": [ "45" @@ -60,5 +60,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json index c4d5f216c7..43214269e2 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json @@ -46,10 +46,10 @@ "0.032" ], "supertack_plate_temp_initial_layer": [ - "35" + "45" ], "supertack_plate_temp": [ - "35" + "45" ], "temperature_vitrification": [ "45" @@ -60,5 +60,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json index 5ad79d0762..fa1a0692b3 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json @@ -48,5 +48,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json index 1614d1cd88..8e542a9f68 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json @@ -48,5 +48,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json index 5a8cc6f7df..9b1bd8bcd1 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json @@ -48,5 +48,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json index fc2ccd0ed2..4d3828acf3 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json @@ -48,5 +48,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json index b8e92076e2..400c7efc36 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json index 59ec2d616a..9ab8361d25 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json @@ -69,5 +69,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json index 13765b583b..7717c31d1e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json @@ -61,10 +61,10 @@ "8" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -75,5 +75,29 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json index f070735cc4..b65fd0b94e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json @@ -61,10 +61,10 @@ "8" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -75,5 +75,29 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json index 26036bab9c..51daac0878 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json @@ -42,5 +42,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json index 772017575b..882be390aa 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json @@ -42,5 +42,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json index 2f56c30be4..102f96a982 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json index fd926495bb..25529c480e 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json index d5941b3853..daf2b37cc9 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json @@ -54,5 +54,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json index 7a17446f22..91a21a86bc 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json @@ -54,5 +54,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json index f7d55ee9c2..d8b6c6f260 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json index 14b20ae342..3036b4437f 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json index 2136fbcc68..9308ead7fd 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json @@ -57,5 +57,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json index 5356889d3e..7422032108 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json @@ -54,5 +54,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json index c352523105..3a56321d46 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json index d61bfbef59..68bbf59293 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json index ff2c7f7402..df6515efc0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json index 973012eb85..6fe5eef467 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json @@ -69,5 +69,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json index edad4c1255..db71b3577f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json index 939cb2c52b..55a80f869e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json @@ -69,5 +69,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json index 647b7af057..de714c0ab2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json index c91af74993..273dc85d4f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json index 64bb581f1a..d2a3b2b52e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json index 6128c22f5a..3e56f7552b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json index 6390f78436..461a57029f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json @@ -93,5 +93,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json index d64bcb1301..d2947a802f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json @@ -90,5 +90,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json index 54113a73e6..6051ada238 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json index d0d664c4dd..3e125f82a2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json index b02e77be5d..de99e42f7f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json index 0cd09c1c8c..33981b31f3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json index a45b97f65d..df5d842492 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json index 1de4f82ad8..1971a0ba29 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json index 91ac6a536b..f300cb3b92 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json index f4a9f5a9e0..71f58c586c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json index af547ae9c0..7955c13998 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json @@ -73,10 +73,40 @@ "100" ], "hot_plate_temp_initial_layer": [ - "100" + "90" ], "hot_plate_temp": [ - "100" + "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json index 163808f0d0..0c1f5f3888 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json @@ -70,10 +70,40 @@ "100" ], "hot_plate_temp_initial_layer": [ - "100" + "90" ], "hot_plate_temp": [ - "100" + "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json index 24b6a01272..cf33db4628 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json @@ -63,5 +63,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json index edf71c78d2..df087f1064 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json @@ -63,5 +63,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json index cbb01617d5..1f3b4626df 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json @@ -79,10 +79,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "80" + "70" ], "supertack_plate_temp": [ + "70" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ "80" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json index 41e1af9321..dc02a075fb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json @@ -79,10 +79,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "80" + "70" ], "supertack_plate_temp": [ + "70" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ "80" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json index d4cf1ffaa0..3a78c0374e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json index a883ef4802..8b28bcba40 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json index 72505e2ce7..d7adc3f905 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json index 60075254e6..7cbfd85ef9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json index d503310a22..3d2d2cd750 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json index 336493bcf7..402a38f5eb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json index cc490cd4dc..cbc0f35be5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json index 8f405eb795..2caca86a36 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json index 4fd07a1629..8815b518f1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json index d137786751..0a5e7b3f9c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json index 13543a5668..f08d715064 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json index 7d6b7e5a12..b347344329 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json index 3344e68d56..38c476726b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json index 9e20730baf..57136f23a7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json @@ -70,10 +70,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json index b49bd770e8..41ef151749 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json @@ -51,5 +51,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json index e6038005c1..6589f8b19d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json @@ -51,5 +51,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json index 51e3cccf16..20175b091f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json @@ -51,5 +51,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json index 1f96183eea..97736ff3b4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json @@ -51,5 +51,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json index f20bfbaea5..f4321f32d0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json @@ -45,5 +45,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json index 456680e85f..5820937c00 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json @@ -48,5 +48,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json index 39c8ec7a3e..619bdc8919 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json @@ -45,5 +45,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json index 9b0fa93b24..11743dd512 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json @@ -45,5 +45,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json index 5ce81748a1..71eb16f367 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json @@ -45,5 +45,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json index f6e0d0be67..a9e220c533 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json @@ -45,5 +45,35 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json index f119172cbc..50b388e044 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json @@ -40,10 +40,10 @@ "50%" ], "supertack_plate_temp_initial_layer": [ - "0" + "45" ], "supertack_plate_temp": [ - "0" + "45" ], "hot_plate_temp_initial_layer": [ "55" @@ -54,5 +54,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json index abc8005e5f..bf51864967 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json @@ -40,10 +40,10 @@ "50%" ], "supertack_plate_temp_initial_layer": [ - "0" + "45" ], "supertack_plate_temp": [ - "0" + "45" ], "hot_plate_temp_initial_layer": [ "55" @@ -54,5 +54,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json index e06e3379c8..248b4062c1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json @@ -49,13 +49,43 @@ "0.042" ], "supertack_plate_temp_initial_layer": [ - "50" + "45" ], "supertack_plate_temp": [ - "50" + "45" ], "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json index 58a5a4e878..31e21dd09d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json @@ -46,13 +46,43 @@ "0.042" ], "supertack_plate_temp_initial_layer": [ - "50" + "45" ], "supertack_plate_temp": [ - "50" + "45" ], "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json index ba0791565a..e54853403d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "110" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "110" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "110" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json index 7556021fd2..bc8f35a404 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "110" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "110" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "110" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json index d579d78f75..9e9a281d03 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json @@ -84,5 +84,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json index 583245a16d..5f58a0704a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json index 313d355c84..5b81300521 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json @@ -87,5 +87,29 @@ "supertack_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json index 07da0a5ebe..3eeea472c3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json @@ -87,5 +87,29 @@ "supertack_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json index 839636bb3e..105fedadf0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json @@ -82,10 +82,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "80" + "70" ], "supertack_plate_temp": [ + "70" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ "80" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json index 5403e99cde..0bef0d40d1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json @@ -82,10 +82,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "80" + "70" ], "supertack_plate_temp": [ + "70" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ "80" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json index e0aa3d4fed..bc84dd50ad 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json @@ -51,5 +51,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json index 29dfdd076a..d9970e4afc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json @@ -51,5 +51,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json index 4b56b832bb..bef8111123 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json @@ -60,5 +60,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json index fe9c4770f8..45de2286d5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json @@ -60,5 +60,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json index 3ad8ff310e..d278dabead 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json @@ -51,5 +51,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json index be8cf20fc7..d0ccd1a71e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json @@ -51,5 +51,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json index f89c573736..7f1dfaf724 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json @@ -66,5 +66,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json index 8af3e2bb99..43171a8d24 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json @@ -66,5 +66,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json index 3fe35e80f0..1de3a74cf8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json index 887a1ff7bd..99c1637270 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json index 4b76d34d0b..fb9248e9a9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json @@ -48,10 +48,40 @@ "pressure_advance": [ "0.044" ], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "supertack_plate_temp": [ + "45" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], "supertack_plate_temp_initial_layer": [ "45" ], - "supertack_plate_temp": [ + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ "45" ], "temperature_vitrification": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json index e5fd24c947..3853d54bd9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json @@ -48,10 +48,40 @@ "pressure_advance": [ "0.044" ], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "supertack_plate_temp": [ + "45" + ], + "textured_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], "supertack_plate_temp_initial_layer": [ "45" ], - "supertack_plate_temp": [ + "textured_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ "45" ], "temperature_vitrification": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json index ba441e6d14..bde51d0fd9 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json index ea1ff4e104..b1431fa5c5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json @@ -27,9 +27,6 @@ "filament_max_volumetric_speed": [ "22" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json index 3581067a7f..1faf1db312 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json index a671549518..f49a8ba8ff 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json index 51d2d09730..6447de36ed 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json index 6bb4e0efce..4123a22d98 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json index 2ca1046cbf..0a63e9c587 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json index ba6945b500..8341e66e60 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json index 3819f78a95..00a0cd29f3 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json index 0759e489e1..b2a04c1736 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json index 6d065c63e3..138ba052d5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json index 980a19f08d..cce7028de4 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json index 31845aeade..ccece3db52 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json index f822123c73..6900e9f0b3 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json index 209b4d2f8f..be183ed0f0 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json index 0e621dfe46..4b9b196000 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -24,9 +24,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json index e244e2ffa3..c8c0d350d5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json index 8fbd831f18..cbb243a8d7 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json @@ -27,9 +27,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json index 86387a6abc..fc13b021fd 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json index 6a492c65aa..598a51f662 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json index 1b2bab6bb4..bac4ff8148 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "2" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json index 0fe70e251a..8d0a8f50e0 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json index 3f9a90a892..657b0a08fc 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json index a84d6f245c..f8e9bd17e5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json @@ -30,9 +30,6 @@ "filament_max_volumetric_speed": [ "24.5" ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json index 16e91f996b..3a2481c709 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json index 09dfa0dcb9..401875ea73 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json index 99c46d9668..3b69cf957c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json index a8bb648bf3..3c1fefb424 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json index 855edae940..8ea5d1c6cd 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json index 844f7734c3..4e8a078e0f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF.json b/resources/profiles/Qidi/filament/QIDI ABS-GF.json index 071fc4dafc..5dbd3d315f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF.json @@ -36,12 +36,6 @@ "chamber_temperature": [ "55" ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], "overhang_fan_speed": [ "80" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json index 3ff67e9bd5..4397987bd6 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json index d062e6af7b..443981bb6c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json index dd0856b0b2..5b43411531 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json index 11243fcba8..1f7120e746 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json index 4cddef930b..f43cb80c46 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json index 1956983260..a1c89c8685 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json @@ -24,12 +24,6 @@ "filament_settings_id": [ "QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json index 09080db2b1..df82f517f5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json @@ -36,12 +36,6 @@ "chamber_temperature": [ "55" ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], "overhang_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json index 9fa74be7b4..eab9802993 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json index c845646eb8..f82d4ca7ad 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json index 4f40785afc..03c9a66e6e 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json index 477feb8581..bf432a4f1b 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json index 45b4e5184a..cc40b94b9c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json index dbb30e4046..174ecd7a82 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "260" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json index d0088aba7b..27a6931ed6 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json @@ -36,12 +36,6 @@ "chamber_temperature": [ "55" ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], "overhang_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF.json b/resources/profiles/Qidi/filament/QIDI ASA-CF.json index 711aed861d..6a1c41192e 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI ASA.json b/resources/profiles/Qidi/filament/QIDI ASA.json index 352ce1337a..c7fb51ba7a 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA.json +++ b/resources/profiles/Qidi/filament/QIDI ASA.json @@ -21,30 +21,6 @@ "nozzle_temperature": [ "270" ], - "cool_plate_temp": [ - "90" - ], - "eng_plate_temp": [ - "90" - ], - "hot_plate_temp": [ - "90" - ], - "textured_plate_temp": [ - "90" - ], - "cool_plate_temp_initial_layer": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], "enable_pressure_advance": [ "1" ], diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json index 624d515999..2a6e6c6010 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json @@ -78,5 +78,35 @@ "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" + ], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF.json b/resources/profiles/Qidi/filament/QIDI PA12-CF.json index dd2aee7a69..9850593754 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF.json @@ -75,5 +75,35 @@ "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" + ], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json index 0915671ff8..89dfb9ef96 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json @@ -81,5 +81,35 @@ "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" + ], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json index 9c14989fa6..e2f756eef9 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json @@ -70,5 +70,35 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle" + ], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json index ffa20335ce..627d8b65d0 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json @@ -57,12 +57,6 @@ "temperature_vitrification": [ "30" ], - "hot_plate_temp_initial_layer": [ - "35" - ], - "hot_plate_temp": [ - "35" - ], "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF.json b/resources/profiles/Qidi/filament/QIDI PET-CF.json index 4df29e8bb5..07f5b6ca67 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF.json @@ -78,5 +78,35 @@ "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" + ], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF.json b/resources/profiles/Qidi/filament/QIDI PET-GF.json index 926c0d0ee5..2c721010b0 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF.json @@ -67,5 +67,35 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle" + ], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json index ab27f865e9..3f1f21cc8b 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json index fa4acb1a6e..5e90ef0d2a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json index 92f93737ab..b0b19d9c48 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json index 62f300c5f9..5f0ec1e7ea 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json index 26dc9ea8c5..0e760ddffd 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.054" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json index f3ba6dbfb0..32dd79c90a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json index 6ab012f071..2e0edfcc1e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json index cb050c14ec..3dd13b5478 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic.json b/resources/profiles/Qidi/filament/QIDI PETG Basic.json index dc4e6a3689..2ba661074d 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic.json @@ -51,12 +51,6 @@ "pressure_advance": [ "0.04" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "filament_density": [ "1.24" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json index 88b5628079..b601069ab8 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json index dc7b07dcda..b15315f6f8 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.042" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json index 61c73bd085..335f4d173e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.032" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json index a29a279275..e8f1f9ab78 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json index fd8460270c..ee8f1fbeec 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.054" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json index 394496bf12..3b9d642182 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.054" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json index a4100953f9..d75da73dc3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "compatible_printers": [ "Qidi X-Plus 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json index e1904d1703..258b28d345 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido.json index 12bbbca165..2721536361 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido.json @@ -48,12 +48,6 @@ "pressure_advance": [ "0.04" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "filament_density": [ "1.24" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json index c9ed435580..f47c2f3be4 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json index 773e478893..ced98fb927 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json index 710c8ce5be..c3790819b3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json index 4949e913e4..11bfdebbbc 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json index e8cfd9653d..fbf51d1ddf 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json index 7d4fe03a3d..be522df3aa 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json index 09ef8470cc..1b04bfcde3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json index 666abf579b..9dd342dee6 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json @@ -18,9 +18,6 @@ "filament_settings_id": [ "QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough.json b/resources/profiles/Qidi/filament/QIDI PETG Tough.json index f4e5abbc81..b7bd144063 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough.json @@ -48,12 +48,6 @@ "pressure_advance": [ "0.04" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "filament_density": [ "1.24" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json index 5dea75b649..30d3b11a51 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json index 6f868f087e..aaff090dd0 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.042" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json index 881ed5749d..219d5fcc3d 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.032" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json index 28613f040a..67fb0db5eb 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json index 8985105358..3f175425a0 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json index 3822cc7858..46052bf7bd 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.054" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json index df200f7a7b..55ce33f31c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json @@ -12,9 +12,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "compatible_printers": [ "Qidi X-Plus 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json index 8d2fcd3c4f..376ede57fa 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json @@ -9,9 +9,6 @@ "filament_settings_id": [ "QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent.json index 7916938629..ca90a9d3c2 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent.json @@ -48,12 +48,6 @@ "pressure_advance": [ "0.04" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "filament_density": [ "1.24" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF.json b/resources/profiles/Qidi/filament/QIDI PETG-CF.json index 3fc5245271..db4f170be0 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF.json @@ -42,12 +42,6 @@ "pressure_advance": [ "0.048" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "slow_down_layer_time": [ "6" ], diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF.json b/resources/profiles/Qidi/filament/QIDI PETG-GF.json index 0be16013b3..b523e8ab06 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF.json @@ -42,12 +42,6 @@ "pressure_advance": [ "0.056" ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "hot_plate_temp": [ - "80" - ], "slow_down_layer_time": [ "8" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json index d1bb29978d..f505e3ab80 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json index 9df5068aef..e6dd92e3e8 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json index a7911fc234..33e720de42 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json index f2df9c80d7..a6b7513893 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json index 1a6ce1285f..990b748fcd 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json index 6f3cc6a877..ac6feda98a 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json index 59e08c8518..5df275dc39 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json index 91cf2120f9..bb7a1b75a7 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json index f895e049d3..13d16cdece 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json index 401d67aa9c..5b8b119fdc 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json index a5dfb0907b..8100281ef1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json index bb38e57b11..bfb588b519 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json index 4522a9a768..a33d2be8d2 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json index 15a4be0d23..220fec3a9c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json index 046975dd78..9a16d30605 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json index bd9999d8cf..19d4260f27 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json index df6102926a..8e842f04d0 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json index 19e0420f0d..6310dc60b9 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json index 094a3269d9..51538da714 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json index b772e9f13f..9472798576 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json index e1c199c857..cce3c6cef8 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json index 6a669b5517..77215fd2bc 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json index 6b9d7babfc..31dcae5b7d 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json index e65c96a344..a0751c5b31 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json index a4da988868..f0110131a6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json index af237d3a23..0a91f702bd 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json index c3bdb3b965..00e3853e7e 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json index 933c333e87..fb93e62141 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json index 2be6f2c7c3..0e6f9c7b55 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "200" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json index c8dd48cd30..866637c544 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "200" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json index d1c2a0f007..63aef16920 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "200" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json index 690ce6a6ca..a161462609 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "200" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json index 28b47f7f4c..010768c5e4 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json index ebcd184164..af2b19a7e1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json index 29842be4ab..cdc75b8566 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json index 3896972518..880eac96c0 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json index cfb3114e74..94217bd906 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json index ec23997e59..0846aff06c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json @@ -30,12 +30,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json index b5446520c1..3e1c5e78c1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json index 8e6c6deff5..ab3a89dbb7 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json index 79f73724e9..4383803b33 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json index fe51bcd98a..a28a9eae1c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json index df6756dbef..f4822d6e1b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json index ba821f472c..772058c295 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json @@ -27,12 +27,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json index c7037becac..2c45d17388 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json @@ -37,5 +37,23 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle" + ], + "eng_plate_temp": [ + "55" + ], + "hot_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF.json b/resources/profiles/Qidi/filament/QIDI PPS-CF.json index bb2be26b03..71d619f444 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF.json @@ -67,5 +67,35 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle" + ], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "110" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "110" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF.json b/resources/profiles/Qidi/filament/QIDI PPS-GF.json index 586cf460ab..5953ece5f6 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF.json @@ -94,5 +94,35 @@ "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" + ], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json index 9904f0e2ad..549f4e75db 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json @@ -74,5 +74,35 @@ ], "compatible_printers": [ "Qidi X-CF Pro 0.4 nozzle" + ], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json index f8e16d0d28..a816259320 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json @@ -71,5 +71,35 @@ ], "compatible_printers": [ "Qidi X-CF Pro 0.4 nozzle" + ], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json index 5a136dc2d9..440e888698 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json @@ -33,12 +33,6 @@ "nozzle_temperature_range_high": [ "270" ], - "hot_plate_temp": [ - "35" - ], - "hot_plate_temp_initial_layer": [ - "35" - ], "filament_density": [ "1.15" ], diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF.json b/resources/profiles/Qidi/filament/QIDI TPU-GF.json index c992878739..e6f7b43003 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF.json @@ -45,12 +45,6 @@ "temperature_vitrification": [ "30" ], - "hot_plate_temp_initial_layer": [ - "35" - ], - "hot_plate_temp": [ - "35" - ], "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json index e5d0f95ce4..ec63d4196e 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json @@ -81,5 +81,35 @@ "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" + ], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Qidi ASA-Aero.json b/resources/profiles/Qidi/filament/Qidi ASA-Aero.json index e310b1f302..10aa975188 100644 --- a/resources/profiles/Qidi/filament/Qidi ASA-Aero.json +++ b/resources/profiles/Qidi/filament/Qidi ASA-Aero.json @@ -21,30 +21,6 @@ "nozzle_temperature": [ "270" ], - "cool_plate_temp": [ - "90" - ], - "eng_plate_temp": [ - "90" - ], - "hot_plate_temp": [ - "90" - ], - "textured_plate_temp": [ - "90" - ], - "cool_plate_temp_initial_layer": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], "enable_pressure_advance": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json index 97e73e96a2..ba047bbab7 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -15,12 +15,6 @@ "filament_settings_id": [ "Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json index a38a57ae21..b4e9c92f41 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -18,12 +18,6 @@ "pressure_advance": [ "0.03" ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json index f1aa208c24..a4a2a337b5 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -24,9 +24,6 @@ "filament_settings_id": [ "Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json index e05009ea43..b281abf95c 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -27,9 +27,6 @@ "filament_settings_id": [ "Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "overhang_fan_speed": [ "90" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json index b49846607d..d4cd1df6ac 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -45,9 +45,6 @@ "filament_max_volumetric_speed": [ "12" ], - "hot_plate_temp_initial_layer": [ - "80" - ], "compatible_printers": [ "Qidi X-Plus 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json index e5b00a5c38..8aad0906df 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json @@ -15,30 +15,6 @@ "overhang_fan_speed": [ "90" ], - "cool_plate_temp": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "hot_plate_temp": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], "required_nozzle_HRC": [ "40" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json index dbec721e9d..528acc7d95 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -15,12 +15,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json index c1e6b73940..80b9f03d03 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -18,12 +18,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "210" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json index d8d3dc784b..4a47dec8b9 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json @@ -25,12 +25,6 @@ "slow_down_layer_time": [ "8" ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "hot_plate_temp": [ - "55" - ], "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json index 61754130d4..23fde5367c 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json @@ -25,12 +25,6 @@ "slow_down_layer_time": [ "8" ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "hot_plate_temp": [ - "55" - ], "compatible_printers": [ "Qidi X-Plus 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json index 4c1009ac5a..eba040f9a8 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json @@ -28,12 +28,6 @@ "slow_down_layer_time": [ "8" ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "hot_plate_temp": [ - "55" - ], "filament_vendor": [ "Generic" ], @@ -60,5 +54,23 @@ "Qidi Q1 Pro 0.8 nozzle", "Qidi X-Plus 4 0.6 nozzle", "Qidi X-Plus 4 0.8 nozzle" + ], + "eng_plate_temp": [ + "55" + ], + "hot_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json index a781e6a417..ae35d6daf2 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json @@ -12,12 +12,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json index 7e171f0bbc..1920d2e25d 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json @@ -15,12 +15,6 @@ "full_fan_speed_layer": [ "3" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature_initial_layer": [ "230" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json index 9f094c64e7..adba8650c1 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json @@ -15,12 +15,6 @@ "filament_settings_id": [ "Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json index 6c439eec2a..149109cf50 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json @@ -15,12 +15,6 @@ "filament_settings_id": [ "Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json index dcad20b1fd..afc761e382 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json index 2006c85926..fba287b596 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json index 37bdb4f536..6ebbcca7d7 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json index 62796a1a2e..32c5a64cc5 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json index c08f861328..80888e6bd5 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json index 93d011db69..f0116a1390 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json @@ -21,12 +21,6 @@ "filament_settings_id": [ "Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json index 8c04b7c527..52b62c84d8 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json @@ -30,12 +30,6 @@ "fan_min_speed": [ "10" ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], "slow_down_layer_time": [ "4" ], diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json index 1b5119b43f..7cf7f7129c 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json @@ -18,12 +18,6 @@ "pressure_advance": [ "0.1" ], - "hot_plate_temp": [ - "35" - ], - "hot_plate_temp_initial_layer": [ - "35" - ], "nozzle_temperature_initial_layer": [ "230" ], diff --git a/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json b/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json index 580c69fd60..f3436e2cdf 100644 --- a/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json +++ b/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json @@ -51,30 +51,6 @@ "nozzle_temperature": [ "235" ], - "cool_plate_temp": [ - "70" - ], - "eng_plate_temp": [ - "70" - ], - "hot_plate_temp": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "cool_plate_temp_initial_layer": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], "filament_vendor": [ "Generic" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json index f2d93a8851..a79d23354a 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json index c49e943c46..115ad36b10 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json @@ -61,10 +61,10 @@ "8" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -75,5 +75,29 @@ "hot_plate_temp": [ "70" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json index aebca7c65d..2782cecae1 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json @@ -57,5 +57,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json index aaa73c7a5b..8400b8a49b 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json index 4f7d52a685..a1dbc45ae8 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json @@ -64,10 +64,10 @@ "12" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -78,5 +78,29 @@ "hot_plate_temp": [ "70" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json index 785869cac3..19b0f0f1e8 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json @@ -63,5 +63,23 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json index 49b3c1a9d0..4a58091d1f 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json @@ -46,10 +46,10 @@ "0.032" ], "supertack_plate_temp_initial_layer": [ - "35" + "45" ], "supertack_plate_temp": [ - "35" + "45" ], "temperature_vitrification": [ "45" @@ -60,5 +60,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json index db6d2bf42e..bec539f6e8 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json @@ -57,5 +57,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json index e3963dad95..64ecd45283 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json @@ -48,5 +48,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json index 12e71d9d6d..115d692f51 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json index 550d11f733..0756031a43 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json @@ -61,10 +61,10 @@ "8" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ - "70" + "60" ], "temperature_vitrification": [ "70" @@ -75,5 +75,29 @@ "hot_plate_temp": [ "70" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json index eee1918b2d..5c9036e7b8 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json @@ -57,5 +57,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json index a65e30fc7d..426574efe9 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json index 8e981f11b7..87057063c8 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json @@ -66,5 +66,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json index 3616cd8401..770c75cb69 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json @@ -75,5 +75,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json index 0534560e67..4e1f6706d7 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json @@ -66,5 +66,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json index 9ad9bb27a0..fcf0ee420d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json @@ -70,10 +70,40 @@ "100" ], "hot_plate_temp_initial_layer": [ - "90" + "85" ], "hot_plate_temp": [ - "90" + "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json index dbe9ac26b7..ab0755fca1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json index a6528de834..5da78652af 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json @@ -72,5 +72,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json index 5eb707127a..d3de50be23 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json index cfbc35dfb8..4f9e8c7476 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json index b63fa6ee45..fdaf5d7b26 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json @@ -93,5 +93,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json index 6b99c66a13..25fd6a3598 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json index d1ad4bf7ef..17020bd0c2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json index 9d38ca68b5..74216c25e7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json index 55ff610cbe..e165704936 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json @@ -81,5 +81,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json index 0e810b92c3..d2f1f2a17d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json @@ -73,10 +73,40 @@ "100" ], "hot_plate_temp_initial_layer": [ - "90" + "85" ], "hot_plate_temp": [ - "90" + "85" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "85" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "85" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "85" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "85" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json index 1545132ea6..92549cd415 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json @@ -63,5 +63,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json index 74391aae89..daa5d4a2e6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json @@ -79,10 +79,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "80" + "70" ], "supertack_plate_temp": [ + "70" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ "80" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json index dabea060db..86ab634249 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json @@ -78,5 +78,35 @@ "hot_plate_temp": [ "70" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ + "70" + ], + "supertack_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json index 271117c41c..15712e12be 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json @@ -70,10 +70,34 @@ "70" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ + "60" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ "70" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json index c1393ff6b9..333cb9eee7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json @@ -70,10 +70,34 @@ "70" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ + "60" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ "70" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json index 2045890d63..a01a6737c7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json @@ -70,10 +70,34 @@ "70" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ + "60" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ "70" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json index ca9d48bb4e..b5bfe487d1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json @@ -70,10 +70,34 @@ "70" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ + "60" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ "70" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json index 99e11b8c63..0cb5a455b5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json @@ -70,10 +70,34 @@ "70" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ + "60" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ "70" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json index 7b2ed11a6d..a486fd2dd0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json @@ -70,10 +70,34 @@ "70" ], "supertack_plate_temp_initial_layer": [ - "70" + "60" ], "supertack_plate_temp": [ + "60" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ "70" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "70" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json index 04887d0eed..86281c9d0e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json @@ -63,5 +63,23 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json index b9937f4c2d..6747f96cbd 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json @@ -63,5 +63,23 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json index 1a6b2873bd..75abd5c197 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json @@ -63,5 +63,23 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json index 63e6666de2..98f2367932 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json @@ -60,5 +60,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json index a7efbb17d7..febec49d93 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json @@ -54,5 +54,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json index ae5becbb7f..e37ac82116 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json @@ -58,10 +58,10 @@ "0.024" ], "supertack_plate_temp_initial_layer": [ - "0" + "45" ], "supertack_plate_temp": [ - "0" + "45" ], "hot_plate_temp_initial_layer": [ "55" @@ -72,5 +72,29 @@ "temperature_vitrification": [ "45" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json index 2d4b1efa94..9e1010670d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json @@ -52,10 +52,10 @@ "0.042" ], "supertack_plate_temp_initial_layer": [ - "50" + "45" ], "supertack_plate_temp": [ - "50" + "45" ], "temperature_vitrification": [ "45" @@ -66,5 +66,29 @@ "hot_plate_temp": [ "55" ], - "compatible_printers": [] + "compatible_printers": [], + "cool_plate_temp": [ + "45" + ], + "eng_plate_temp": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ] } diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json index 1a6a3c595b..cee4f7d64b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json @@ -84,5 +84,35 @@ "hot_plate_temp": [ "110" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "110" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "110" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json index 92a9007311..6839a69d78 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json @@ -84,5 +84,35 @@ "hot_plate_temp": [ "90" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "90" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "90" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json index bdd9a1c6ca..225926ba0b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json @@ -87,5 +87,29 @@ "supertack_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "80" + ], + "eng_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json index 445453c174..3f5838e51b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json @@ -82,10 +82,34 @@ "80" ], "supertack_plate_temp_initial_layer": [ - "80" + "70" ], "supertack_plate_temp": [ + "70" + ], + "compatible_printers": [], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ "80" ], - "compatible_printers": [] -} + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json index 60c81b35da..5b96c207be 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json @@ -63,5 +63,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json index 30713a484b..59e8ce4088 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json @@ -60,5 +60,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json index 75d1f2e918..972d21d060 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json @@ -63,5 +63,35 @@ "hot_plate_temp": [ "35" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "35" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json index 2dac32c7c8..ba039ce341 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json @@ -66,5 +66,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json index b37cfc5479..d4ae5142eb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json @@ -84,5 +84,35 @@ "hot_plate_temp": [ "80" ], - "compatible_printers": [] -} + "compatible_printers": [], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "80" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json index 70707c0139..6845869182 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json @@ -51,20 +51,44 @@ "pressure_advance": [ "0.044" ], - "supertack_plate_temp_initial_layer": [ + "cool_plate_temp": [ "45" ], - "supertack_plate_temp": [ - "45" - ], - "temperature_vitrification": [ - "45" - ], - "hot_plate_temp_initial_layer": [ + "eng_plate_temp": [ "55" ], "hot_plate_temp": [ "55" ], + "supertack_plate_temp": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "45" + ], "compatible_printers": [] } diff --git a/resources/profiles/Qidi/filament/fdm_filament_abs.json b/resources/profiles/Qidi/filament/fdm_filament_abs.json index e2b6ce84ce..31fb0134a0 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_abs.json +++ b/resources/profiles/Qidi/filament/fdm_filament_abs.json @@ -8,7 +8,7 @@ "0" ], "cool_plate_temp": [ - "90" + "80" ], "eng_plate_temp": [ "90" @@ -20,7 +20,7 @@ "90" ], "cool_plate_temp_initial_layer": [ - "90" + "80" ], "eng_plate_temp_initial_layer": [ "90" @@ -93,5 +93,17 @@ ], "slow_down_layer_time": [ "4" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/fdm_filament_asa.json b/resources/profiles/Qidi/filament/fdm_filament_asa.json index d1347a286b..9f98db937c 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_asa.json +++ b/resources/profiles/Qidi/filament/fdm_filament_asa.json @@ -8,7 +8,7 @@ "0" ], "cool_plate_temp": [ - "90" + "80" ], "eng_plate_temp": [ "90" @@ -20,7 +20,7 @@ "90" ], "cool_plate_temp_initial_layer": [ - "90" + "80" ], "eng_plate_temp_initial_layer": [ "90" @@ -93,5 +93,17 @@ ], "slow_down_layer_time": [ "3" + ], + "supertack_plate_temp": [ + "80" + ], + "textured_cool_plate_temp": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/fdm_filament_common.json b/resources/profiles/Qidi/filament/fdm_filament_common.json index e0e07572c3..53debceb12 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_common.json +++ b/resources/profiles/Qidi/filament/fdm_filament_common.json @@ -4,7 +4,7 @@ "from": "system", "instantiation": "false", "cool_plate_temp": [ - "60" + "45" ], "eng_plate_temp": [ "60" @@ -12,11 +12,17 @@ "hot_plate_temp": [ "60" ], + "supertack_plate_temp": [ + "45" + ], "textured_plate_temp": [ "60" ], + "textured_cool_plate_temp": [ + "45" + ], "cool_plate_temp_initial_layer": [ - "60" + "45" ], "eng_plate_temp_initial_layer": [ "60" @@ -24,9 +30,15 @@ "hot_plate_temp_initial_layer": [ "60" ], + "supertack_plate_temp_initial_layer": [ + "45" + ], "textured_plate_temp_initial_layer": [ "60" ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], "overhang_fan_threshold": [ "95%" ], diff --git a/resources/profiles/Qidi/filament/fdm_filament_pet.json b/resources/profiles/Qidi/filament/fdm_filament_pet.json index fd0c28a046..4096649e98 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_pet.json +++ b/resources/profiles/Qidi/filament/fdm_filament_pet.json @@ -5,7 +5,7 @@ "from": "system", "instantiation": "false", "cool_plate_temp": [ - "80" + "60" ], "eng_plate_temp": [ "80" @@ -17,13 +17,13 @@ "80" ], "cool_plate_temp_initial_layer": [ - "80" + "60" ], "eng_plate_temp_initial_layer": [ "80" ], "hot_plate_temp_initial_layer": [ - "70" + "80" ], "textured_plate_temp_initial_layer": [ "80" @@ -75,5 +75,17 @@ ], "nozzle_temperature_range_high": [ "280" + ], + "supertack_plate_temp": [ + "60" + ], + "textured_cool_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "textured_cool_plate_temp_initial_layer": [ + "60" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/filament/fdm_filament_pla.json b/resources/profiles/Qidi/filament/fdm_filament_pla.json index 18d48bf015..44caef7fe4 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_pla.json +++ b/resources/profiles/Qidi/filament/fdm_filament_pla.json @@ -20,7 +20,7 @@ "20" ], "cool_plate_temp": [ - "60" + "45" ], "eng_plate_temp": [ "60" @@ -31,8 +31,11 @@ "textured_plate_temp": [ "60" ], + "supertack_plate_temp": [ + "45" + ], "cool_plate_temp_initial_layer": [ - "60" + "45" ], "eng_plate_temp_initial_layer": [ "60" @@ -43,6 +46,9 @@ "textured_plate_temp_initial_layer": [ "60" ], + "supertack_plate_temp_initial_layer": [ + "45" + ], "nozzle_temperature_initial_layer": [ "210" ], @@ -96,5 +102,11 @@ ], "enable_overhang_bridge_fan": [ "1" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" ] } diff --git a/resources/profiles/Qidi/filament/fdm_filament_tpu.json b/resources/profiles/Qidi/filament/fdm_filament_tpu.json index 4af0adef97..d072ae17e2 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_tpu.json +++ b/resources/profiles/Qidi/filament/fdm_filament_tpu.json @@ -5,28 +5,28 @@ "from": "system", "instantiation": "false", "cool_plate_temp": [ - "50" + "30" ], "eng_plate_temp": [ - "50" + "35" ], "hot_plate_temp": [ - "50" + "35" ], "textured_plate_temp": [ - "50" + "35" ], "cool_plate_temp_initial_layer": [ - "05" + "30" ], "eng_plate_temp_initial_layer": [ - "50" + "35" ], "hot_plate_temp_initial_layer": [ - "60" + "35" ], "textured_plate_temp_initial_layer": [ - "50" + "35" ], "fan_cooling_layer_time": [ "60" @@ -84,5 +84,17 @@ ], "enable_overhang_bridge_fan": [ "1" + ], + "supertack_plate_temp": [ + "30" + ], + "textured_cool_plate_temp": [ + "30" + ], + "supertack_plate_temp_initial_layer": [ + "30" + ], + "textured_cool_plate_temp_initial_layer": [ + "30" ] -} +} \ No newline at end of file diff --git a/resources/profiles/Qidi/process/fdm_process_common.json b/resources/profiles/Qidi/process/fdm_process_common.json index e082177120..134d389c22 100644 --- a/resources/profiles/Qidi/process/fdm_process_common.json +++ b/resources/profiles/Qidi/process/fdm_process_common.json @@ -50,6 +50,7 @@ "inner_wall_line_width": "0.45", "inner_wall_speed": "40", "print_settings_id": "", + "precise_outer_wall": "0", "raft_layers": "0", "seam_position": "nearest", "skirt_distance": "2", From 956fcea7e260b31f74c247136cef69785515dc51 Mon Sep 17 00:00:00 2001 From: Peyton Marcotte Date: Wed, 20 May 2026 11:42:32 -0400 Subject: [PATCH 07/30] Add Optimized Gyroid infill (auto-tuned wavelength + amplitude) (#13379) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add Optimized Gyroid infill (auto-tuned wavelength + amplitude) New infill geometry derived from FillGyroid. Two parameters are auto-computed per-region from density, line spacing, and layer height (no user inputs): omega = sqrt(density_adj) / sqrt(1 + layer_height/spacing) clamped to [0.5, 2.0] -- Euler-Bernoulli buckling: critical load ~ 1/L^2, so shorter wavelength under higher load (denser infill) raises buckling resistance. amplitude = 0.55 / omega^2, clamped to [0.20, 0.65] -- Curved-beam bending stress: peak stress ~ A * omega^2, so amplitude is reduced as omega rises to keep peak fiber stress bounded while preserving stiffness. Files: - src/libslic3r/Fill/FillOptimizedGyroid.{hpp,cpp} (new) - src/libslic3r/Fill/FillBase.cpp (factory case) - src/libslic3r/Fill/Fill.cpp (switch case) - src/libslic3r/Layer.cpp (switch case) - src/libslic3r/PrintConfig.{hpp,cpp} (enum + label) - src/libslic3r/CMakeLists.txt (build sources) User-facing: appears as "Optimized Gyroid" in the Fill Pattern dropdown. Density still chosen by user; omega/amplitude are internal. * Fix build: layer_height is in FillParams, not Fill base * Add ipOptimizedGyroid to multiline infill list in ConfigManipulation * Refactor: replace ipOptimizedGyroid enum with gyroid_optimized boolean Per @RF47's review feedback, fold the optimized wave math into FillGyroid itself behind a per-region boolean instead of a separate infill enum. What changes: - New ConfigOptionBool "gyroid_optimized" on PrintRegionConfig (default false). When unchecked, gyroid behavior is byte-identical to before. - Optimized wave math (compute_omega_factor, compute_amplitude_factor, f_opt, make_*_opt, make_optimized_gyroid_waves) lives inside FillGyroid.cpp. _fill_surface_single branches on params.gyroid_optimized. - FillParams gains a bool gyroid_optimized field, populated in Fill.cpp from region_config alongside fill_multiline. - UI checkbox added under Strength > Infill in Tab.cpp, label "Optimize gyroid wave (experimental)". Toggle is hidden by ConfigManipulation when sparse_infill_pattern != ipGyroid. - "gyroid_optimized" added to s_Preset_print_options for preset I/O. What goes away: - ipOptimizedGyroid enum value, factory case, switch cases, dropdown label, string key. - FillOptimizedGyroid.cpp / FillOptimizedGyroid.hpp (math moved into FillGyroid.cpp). - Net diff drops by ~250 lines. Existing profiles using gyroid are unaffected. * Wire gyroid_optimized through SurfaceFillParams to FillParams Linux build failed because line 921 in Fill.cpp populates a SurfaceFillParams (the dedup struct), not FillParams directly. Add the field there, in operator< / operator==, and copy it to FillParams at both conversion sites. * Use toggle_line for gyroid_optimized: hide row when pattern != gyroid * Account for multiline wall thickness in omega correction (per @RF47) When fill_multiline = N, each gyroid wall is N lines thick, so the geometric scale fed into the buckling correction term should be spacing * N rather than spacing. Increases omega (tighter wavelength) when multiline is enabled, consistent with the thicker wall being more buckling-resistant. * Optimized gyroid via marching squares on the implicit scalar field Per @RF47 review: replace the analytical f_opt / make_one_period_opt wave generator (which had visible kinks at vertical-horizontal transitions) with a marching-squares iso-extraction on the gyroid scalar field, modeled on FillTpmsFK.cpp. - New marchsq::GyroidField in FillGyroid.cpp evaluates F(x,y,z) = sin(fx*x)cos(fy*y) + sin(fy*y)cos(fz*z) + sin(fz*z)cos(fx*x) where fx = omega * baseline (anisotropic in x), fy = fz = baseline. - get_gyroid_polylines() runs marching squares at iso=0 and converts rings to polylines. - _fill_surface_single() optimized branch now builds GyroidField, runs marching squares, and skips the bb.min translate (field output is already in absolute coords). - Dropped: f_opt, make_one_period_opt, make_wave_opt, make_optimized_gyroid_waves, compute_amplitude_factor. Amplitude has no clean analog in iso-zero extraction. - Standard (non-optimized) gyroid path unchanged. * Mass calibration: compensate period by cbrt(omega) for x-anisotropic field Per @RF47: optimized vs standard gyroid had different masses at the same sparse_infill_density setting. Cause: scaling fx by omega while leaving fy=fz at the baseline raised the surface-area-to-volume ratio by approximately omega^(1/3) (the geometric mean of the three frequencies). Fix: multiply the base period by cbrt(omega) so the geometric mean of (fx, fy, fz) returns to the standard baseline. Net effect: fx = omega^(2/3) * baseline_orig fy = fz = omega^(-1/3) * baseline_orig which preserves total mass at the same density setting while preserving the load-direction anisotropy this PR introduces. * Switch optimized gyroid anisotropy from X to Z (per @RF47) Z is the typical compression-load axis for FFF parts and is not at delamination risk under compression — so the dominant failure mode is column buckling of the vertical strands themselves. Tightening fz directly shortens the effective vertical strand length, which improves Z-axis buckling resistance. Mass calibration via cbrt(omega) period compensation still applies (scaling exactly one of three frequencies by omega; the geometric- mean preservation argument is symmetric across axes). * Update src/slic3r/GUI/Tab.cpp Co-authored-by: Rodrigo Faselli <162915171+RF47@users.noreply.github.com> * Address review feedback (Copilot + @RF47) - Fill.cpp: gate params.gyroid_optimized on (params.pattern == ipGyroid) so non-gyroid surfaces don't differ in SurfaceFillParams by an irrelevant flag (would unnecessarily split fill batching). [Copilot suggestion, RF47 confirmed correct] - PrintConfig.cpp: drop "amplitude" from the tooltip; only wavelength is parameterized (the marching-squares iso=0 extraction is invariant to a uniform field scale, so amplitude has no effect). - FillBase.hpp: shorten gyroid_optimized comment to match the actual carried state (no amplitude term). - FillGyroid.cpp: shorten the marchsq namespace comment block; the ODR concern was overstated (FillTpmsFK uses the same pattern fine). * Drop redundant marchsq bb expansion (Copilot) bb is already offset by 10 * scale_(spacing) above for edge-artifact margin; the second offset on bb_field doubled the raster area for no geometric benefit and hurt CPU time on large parts. * Update src/slic3r/GUI/Tab.cpp Co-authored-by: Ian Bassi * Fix density mismatch + rename to Z-buckling bias optimization Issue (per @ianalexis): at the same sparse_infill_density setting, the optimized branch produced denser fill than standard. Verified via Python sim (sim_gyroid_compare.py) using marching squares on the implicit field across multiple z slices. Root cause: the omega formula was inverted from the buckling-physics intent. The naive sqrt(density_adj) factor produced omega < 1 at typical print densities (10-30%), which LENGTHENED the Z wavelength instead of shortening it -- net loss in both mass and strength. Fix: - compute_omega_factor: invert to sqrt(1 / density_adj), clamp to [1.0, 2.0]. Now omega = 2.0 at low density (long strands need most help) and clamps to 1.0 above ~30% density (no-op, since standard gyroid is already short enough). - Remove the cbrt(omega) period compensation. Empirically (sim table embedded in FillGyroid.cpp comment) the inverted formula keeps line length per area at ~1.000 of standard across all densities with no period scaling needed. Predicted gains (sim, Z-axis Euler buckling proxy): density line/std strength/std 10% 1.000 2.84x 15% 1.000 1.89x 20% 1.000 1.42x 30%+ 1.000 1.00x (no-op) Rename per @ianalexis: "Optimize gyroid wave" oversells (now no-op above 30% density and Z-only). Renamed user-facing label to "Z-buckling bias optimization (experimental)" with updated tooltip that scopes to vertical compression and discloses the density cutoff. Internal config key (gyroid_optimized) unchanged for diff size. Real-world Instron compression tests at Brown's Prince Lab to follow. --------- Co-authored-by: Rodrigo Faselli <162915171+RF47@users.noreply.github.com> Co-authored-by: Ian Bassi Co-authored-by: SoftFever --- src/libslic3r/Fill/Fill.cpp | 15 ++- src/libslic3r/Fill/FillBase.hpp | 3 + src/libslic3r/Fill/FillGyroid.cpp | 180 ++++++++++++++++++++++++-- src/libslic3r/Preset.cpp | 1 + src/libslic3r/PrintConfig.cpp | 13 ++ src/libslic3r/PrintConfig.hpp | 1 + src/slic3r/GUI/ConfigManipulation.cpp | 4 + src/slic3r/GUI/Tab.cpp | 1 + 8 files changed, 208 insertions(+), 10 deletions(-) diff --git a/src/libslic3r/Fill/Fill.cpp b/src/libslic3r/Fill/Fill.cpp index 74e6d14d14..d47518bbca 100644 --- a/src/libslic3r/Fill/Fill.cpp +++ b/src/libslic3r/Fill/Fill.cpp @@ -271,6 +271,9 @@ struct SurfaceFillParams // Params for Lateral honeycomb float infill_overhang_angle = 60.f; + // For Gyroid: when true, use the parameterized "optimized" wave. + bool gyroid_optimized = false; + bool operator<(const SurfaceFillParams &rhs) const { #define RETURN_COMPARE_NON_EQUAL(KEY) if (this->KEY < rhs.KEY) return true; if (this->KEY > rhs.KEY) return false; #define RETURN_COMPARE_NON_EQUAL_TYPED(TYPE, KEY) if (TYPE(this->KEY) < TYPE(rhs.KEY)) return true; if (TYPE(this->KEY) > TYPE(rhs.KEY)) return false; @@ -303,6 +306,7 @@ struct SurfaceFillParams RETURN_COMPARE_NON_EQUAL(symmetric_infill_y_axis); RETURN_COMPARE_NON_EQUAL(infill_lock_depth); RETURN_COMPARE_NON_EQUAL(skin_infill_depth); RETURN_COMPARE_NON_EQUAL(infill_overhang_angle); + RETURN_COMPARE_NON_EQUAL(gyroid_optimized); return false; } @@ -330,7 +334,8 @@ struct SurfaceFillParams this->lateral_lattice_angle_2 == rhs.lateral_lattice_angle_2 && this->infill_lock_depth == rhs.infill_lock_depth && this->skin_infill_depth == rhs.skin_infill_depth && - this->infill_overhang_angle == rhs.infill_overhang_angle; + this->infill_overhang_angle == rhs.infill_overhang_angle && + this->gyroid_optimized == rhs.gyroid_optimized; } }; @@ -920,6 +925,12 @@ std::vector group_fills(const Layer &layer, LockRegionParam &lock_p // Orca: apply fill multiline only for sparse infill params.multiline = params.extrusion_role == erInternalInfill ? int(region_config.fill_multiline) : 1; + // Pass through gyroid_optimized only when the effective pattern is Gyroid, + // so non-Gyroid fills do not differ in SurfaceFillParams by an irrelevant flag + // (which would unnecessarily split fill batching). + // Stored on SurfaceFillParams; copied to FillParams during conversion. + params.gyroid_optimized = (params.pattern == ipGyroid) && region_config.gyroid_optimized; + if (params.extrusion_role == erInternalInfill) { params.angle = calculate_infill_rotation_angle(layer.object(), layer.id(), region_config.infill_direction.value, region_config.sparse_infill_rotate_template.value); @@ -1273,6 +1284,7 @@ void Layer::make_fills(FillAdaptive::Octree* adaptive_fill_octree, FillAdaptive: params.lateral_lattice_angle_1 = surface_fill.params.lateral_lattice_angle_1; params.lateral_lattice_angle_2 = surface_fill.params.lateral_lattice_angle_2; params.infill_overhang_angle = surface_fill.params.infill_overhang_angle; + params.gyroid_optimized = surface_fill.params.gyroid_optimized; // BBS params.flow = surface_fill.params.flow; @@ -1468,6 +1480,7 @@ Polylines Layer::generate_sparse_infill_polylines_for_anchoring(FillAdaptive::Oc params.lateral_lattice_angle_2 = surface_fill.params.lateral_lattice_angle_2; params.infill_overhang_angle = surface_fill.params.infill_overhang_angle; params.multiline = surface_fill.params.multiline; + params.gyroid_optimized = surface_fill.params.gyroid_optimized; for (ExPolygon &expoly : surface_fill.expolygons) { // Spacing is modified by the filler to indicate adjustments. Reset it for each expolygon. diff --git a/src/libslic3r/Fill/FillBase.hpp b/src/libslic3r/Fill/FillBase.hpp index 47195c850d..ef6a6bc804 100644 --- a/src/libslic3r/Fill/FillBase.hpp +++ b/src/libslic3r/Fill/FillBase.hpp @@ -79,6 +79,9 @@ struct FillParams // Layer height for Concentric infill with Arachne. coordf_t layer_height { 0.f }; + // For Gyroid: when true, use the parameterized "optimized" variant. + bool gyroid_optimized { false }; + // For Lateral lattice coordf_t lateral_lattice_angle_1 { 0.f }; coordf_t lateral_lattice_angle_2 { 0.f }; diff --git a/src/libslic3r/Fill/FillGyroid.cpp b/src/libslic3r/Fill/FillGyroid.cpp index 8700c1746e..c740dd2b4b 100644 --- a/src/libslic3r/Fill/FillGyroid.cpp +++ b/src/libslic3r/Fill/FillGyroid.cpp @@ -1,4 +1,5 @@ #include "../ClipperUtils.hpp" +#include "../MarchingSquares.hpp" #include "../ShortestPath.hpp" #include "../Surface.hpp" #include @@ -7,6 +8,99 @@ #include "FillBase.hpp" #include "FillGyroid.hpp" +// --------------------------------------------------------------------------- +// Marching-squares scalar field for the optimized gyroid branch. +// Modeled after FillTpmsFK.cpp's ScalarField. +// +// The gyroid scalar field is the standard implicit equation +// F(x,y,z) = sin(fx*x)cos(fy*y) + sin(fy*y)cos(fz*z) + sin(fz*z)cos(fx*x) +// Marching squares extracts the iso-zero contour, which gives smoother +// transitions between vertical and horizontal regimes than the analytical +// asin-based wave generator. Setting fz = omega * baseline anisotropically +// tightens the wave along the layer-stacking axis, shortening the effective +// vertical strand length and improving column-buckling resistance under +// Z-axis compression. +// --------------------------------------------------------------------------- +namespace marchsq { +using namespace Slic3r; + +using coordr_t = long; +using Pointf = Vec2d; + +struct GyroidField +{ + static constexpr float gsizef = 0.40f; + static constexpr float rsizef = 0.004f; + const coord_t rsize = scaled(rsizef); + const coordr_t gsize = std::round(gsizef / rsizef); + Point size; + Point offs; + coordf_t z; + float fx; + float fy; + float fz; + float isoval = 0.0f; + + explicit GyroidField(const BoundingBox bb, const coordf_t z, const float period, const float omega = 1.0f) + : size{bb.size()}, offs{bb.min}, z{z} + { + const float baseline = float(2.0 * PI) / std::max(period, 1e-3f); + fx = baseline; + fy = baseline; + fz = omega * baseline; + } + + float get_scalar(coordf_t x, coordf_t y, coordf_t z_arg) const + { + const float a = fx * float(x); + const float b = fy * float(y); + const float c = fz * float(z_arg); + return std::sin(a) * std::cos(b) + std::sin(b) * std::cos(c) + std::sin(c) * std::cos(a); + } + + float get_scalar(Coord p) const + { + Pointf pf = to_Pointf(p); + return get_scalar(pf.x(), pf.y(), z); + } + + inline coord_t to_coord (const coordr_t& x) const { return x * rsize; } + inline coordr_t to_coordr(const coord_t& x) const { return x / rsize; } + inline Point to_Point (const Coord& p) const { return Point(to_coord(p.c) + offs.x(), to_coord(p.r) + offs.y()); } + inline Coord to_Coord (const Point& p) const { return Coord(to_coordr(p.y() - offs.y()), to_coordr(p.x() - offs.x())); } + inline Pointf to_Pointf(const Point& p) const { return Pointf(unscaled(p.x()), unscaled(p.y())); } + inline Pointf to_Pointf(const Coord& p) const { return to_Pointf(to_Point(p)); } +}; + +template<> struct _RasterTraits +{ + using ValueType = float; + static float get (const GyroidField& sf, size_t row, size_t col) { return sf.get_scalar(Coord(row, col)); } + static size_t rows(const GyroidField& sf) { return sf.to_coordr(sf.size.y()); } + static size_t cols(const GyroidField& sf) { return sf.to_coordr(sf.size.x()); } +}; + +inline Polylines get_gyroid_polylines(const GyroidField& sf, const double tolerance = SCALED_EPSILON) +{ + std::vector rings = execute_with_policy(ex_tbb, sf, sf.isoval, {sf.gsize, sf.gsize}); + Polylines polys; + polys.reserve(rings.size()); + for (const Ring& ring : rings) { + Polyline poly; + Points& pts = poly.points; + pts.reserve(ring.size() + 1); + for (const Coord& crd : ring) + pts.emplace_back(sf.to_Point(crd)); + pts.push_back(pts.front()); + if (tolerance >= 0.0) + poly.simplify(tolerance); + polys.emplace_back(poly); + } + return polys; +} + +} // namespace marchsq + namespace Slic3r { static inline double f(double x, double z_sin, double z_cos, bool vertical, bool flip) @@ -102,6 +196,49 @@ static std::vector make_one_period(double width, double scaleFactor, doub return points; } +// --------------------------------------------------------------------------- +// "Optimized" gyroid wave: marching-squares variant gated on +// params.gyroid_optimized. The wave shape is extracted from the gyroid +// implicit scalar field (see marchsq::GyroidField above) at iso=0, with +// the Z dimension's spatial frequency multiplied by an Euler-Bernoulli +// buckling-derived factor so the vertical strands become shorter columns, +// raising the critical buckling load against Z-axis compression. +// +// The formula is INVERTED from a naive "scale with density" derivation: +// at LOW density the gyroid strands are long and slender (prime buckling +// targets), so they need the most shortening; at high density the strands +// are already short and need little extra help. omega is therefore the +// inverse-square-root of density_adjusted: +// +// omega = sqrt(1 / density_adj) / sqrt(1 + layer_h/spacing), +// clamped [1.0, 2.0] +// +// fx and fy are left at the baseline frequency, so the per-XY-slice line +// length per unit area is preserved -> mass at the same `sparse_infill_density` +// setting matches the standard gyroid path. Strength gain comes purely from +// the shorter vertical column length (P_cr proportional to 1/L^2). +// +// Empirical Python sim (sim_gyroid_compare.py) at layer_h=0.20, spacing=0.45: +// +// density omega line/std strength/std strength_per_mass +// 10% 2.00 1.00 2.84 2.84 +// 15% 1.38 1.00 1.89 1.89 +// 20% 1.19 1.00 1.42 1.42 +// 30% 1.00 1.00 1.00 1.00 +// 50%+ 1.00 1.00 1.00 1.00 +// +// When gyroid_optimized is false, behavior is byte-identical to the +// standard parametric gyroid path below. +// --------------------------------------------------------------------------- + +static inline double compute_omega_factor(double density_adjusted, double line_spacing, double layer_height) +{ + double lh_ratio = (line_spacing > 0.) ? layer_height / line_spacing : 0.5; + double correction = 1.0 / std::sqrt(1.0 + lh_ratio); + double raw = std::sqrt(1.0 / std::max(density_adjusted, 0.1)) * correction; + return std::clamp(raw, 1.0, 2.0); +} + static Polylines make_gyroid_waves(double gridZ, double density_adjusted, double line_spacing, double width, double height) { const double scaleFactor = scale_(line_spacing) / density_adjusted; @@ -173,16 +310,41 @@ void FillGyroid::_fill_surface_single( bb.offset(expand); // generate pattern - Polylines polylines = make_gyroid_waves( - scale_(this->z), - density_adjusted, - this->spacing, - ceil(bb.size()(0) / distance) + 1., - ceil(bb.size()(1) / distance) + 1.); + Polylines polylines; + if (params.gyroid_optimized) { + // Marching-squares path on the gyroid implicit field. Base period matches + // the standard parametric path's wavelength: 2*pi * spacing / density_adj. + // omega >= 1 always, so fz >= baseline -> shorter vertical wavelength -> + // shorter effective column length -> higher buckling resistance. + // + // Mass: fx and fy are left at baseline (same as standard), so the + // per-XY-slice line length per unit area is approximately preserved. + // Empirically (sim_gyroid_compare.py) the optimized line/std ratio is + // ~1.000 across densities, so no period compensation is needed. + const double lh = (params.layer_height > 0.) ? double(params.layer_height) : double(this->spacing); + const double omega = compute_omega_factor(density_adjusted, this->spacing * params.multiline, lh); - // shift the polyline to the grid origin - for (Polyline &pl : polylines) - pl.translate(bb.min); + const float density_factor = std::max(0.001f, float(params.density * DensityAdjust / params.multiline)); + const float period = float(2.0 * M_PI) * float(this->spacing) / density_factor; + + // bb is already expanded above by 10 * scale_(spacing) for edge artifacts; + // skip a second offset here to avoid raster-area bloat in the marching squares pass. + marchsq::GyroidField sf(bb, this->z, period, float(omega)); + polylines = marchsq::get_gyroid_polylines(sf, SCALED_SPARSE_INFILL_RESOLUTION); + } else { + polylines = make_gyroid_waves( + scale_(this->z), + density_adjusted, + this->spacing, + ceil(bb.size()(0) / distance) + 1., + ceil(bb.size()(1) / distance) + 1.); + + // The parametric generator produces wave coords relative to the grid origin; + // shift them into absolute layer coords. The marching-squares branch above + // already emits absolute coords via GyroidField::to_Point, so it skips this. + for (Polyline &pl : polylines) + pl.translate(bb.min); + } // Apply multiline offset if needed multiline_fill(polylines, params, spacing); diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 2c894450dd..ade6f42c29 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -1008,6 +1008,7 @@ static std::vector s_Preset_print_options{ "is_infill_first", "sparse_infill_density", "fill_multiline", + "gyroid_optimized", "sparse_infill_pattern", "lateral_lattice_angle_1", "lateral_lattice_angle_2", diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 393198351b..be73c9d349 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2912,6 +2912,19 @@ void PrintConfigDef::init_fff_params() def->max = 10; // Maximum number of lines for infill pattern def->set_default_value(new ConfigOptionInt(1)); + // Z-buckling bias optimization (experimental). Tightens the gyroid wave along the Z + // (vertical) axis at low infill density to shorten the effective column length under + // Z-axis compression. Filament use at the same `sparse_infill_density` setting is + // preserved. No effect above ~30% density (formula clamps to no-op). + def = this->add("gyroid_optimized", coBool); + def->label = L("Z-buckling bias optimization (experimental)"); + def->category = L("Strength"); + def->tooltip = L("Tightens the gyroid wave along the Z (vertical) axis at low infill density " + "to shorten the effective vertical column length and improve Z-axis compression " + "buckling resistance. Filament use is preserved. No effect at ~30% sparse infill " + "density and above. Only applies when Sparse infill pattern is set to Gyroid."); + def->set_default_value(new ConfigOptionBool(false)); + def = this->add("sparse_infill_pattern", coEnum); def->label = L("Sparse infill pattern"); def->category = L("Strength"); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index b84e227c4c..cdde293cfa 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -1133,6 +1133,7 @@ PRINT_CONFIG_CLASS_DEFINE( // Orca: ((ConfigOptionFloatOrPercent, infill_combination_max_layer_height)) ((ConfigOptionInt, fill_multiline)) + ((ConfigOptionBool, gyroid_optimized)) // Ironing options ((ConfigOptionEnum, ironing_type)) ((ConfigOptionEnum, ironing_pattern)) diff --git a/src/slic3r/GUI/ConfigManipulation.cpp b/src/slic3r/GUI/ConfigManipulation.cpp index dbb0e8d525..1df4dba9c2 100644 --- a/src/slic3r/GUI/ConfigManipulation.cpp +++ b/src/slic3r/GUI/ConfigManipulation.cpp @@ -605,6 +605,10 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co bool have_multiline_infill_pattern = pattern == ipGyroid || pattern == ipGrid || pattern == ipRectilinear || pattern == ipTpmsD || pattern == ipTpmsFK || pattern == ipCrossHatch || pattern == ipHoneycomb || pattern == ipLateralLattice || pattern == ipLateralHoneycomb || pattern == ipConcentric || pattern == ipCubic || pattern == ipStars || pattern == ipAlignedRectilinear || pattern == ipLightning || pattern == ip3DHoneycomb || pattern == ipAdaptiveCubic || pattern == ipSupportCubic|| pattern == ipTriangles || pattern == ipQuarterCubic|| pattern == ipArchimedeanChords || pattern == ipHilbertCurve || pattern == ipOctagramSpiral; + // gyroid_optimized only applies when the sparse infill pattern is gyroid; + // hide the whole line otherwise. + toggle_line("gyroid_optimized", have_infill && pattern == ipGyroid); + // If there is infill, enable/disable fill_multiline according to whether the pattern supports multiline infill. if (have_infill) { toggle_field("fill_multiline", have_multiline_infill_pattern); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 3bfdc39983..1affaebc5c 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2445,6 +2445,7 @@ void TabPrint::build() optgroup->append_single_option_line("sparse_infill_density", "strength_settings_infill#sparse-infill-density"); optgroup->append_single_option_line("fill_multiline", "strength_settings_infill#fill-multiline"); optgroup->append_single_option_line("sparse_infill_pattern", "strength_settings_infill#sparse-infill-pattern"); + optgroup->append_single_option_line("gyroid_optimized", "strength_settings_patterns#gyroid_optimized"); optgroup->append_single_option_line("infill_direction", "strength_settings_infill#direction"); optgroup->append_single_option_line("sparse_infill_rotate_template", "strength_settings_infill_rotation_template_metalanguage"); optgroup->append_single_option_line("skin_infill_density", "strength_settings_patterns#locked-zag"); From 9598e1bb9acf668ec33f2fcada2885d9a2f9080c Mon Sep 17 00:00:00 2001 From: blumlaut <13604413+Blumlaut@users.noreply.github.com> Date: Thu, 21 May 2026 05:42:18 +0200 Subject: [PATCH 08/30] fix: OK/Cancel buttons clipped in Flushing Volume dialog (#13762) fix: OK/Cancel buttons clipped in Flushing Volume dialog (#13511) The WipingDialog renders its UI inside a wxWebView. When the dialog was clamped to screen size (many filaments, small displays, high DPI), the HTML content exceeded the WebView bounds and the OK/Cancel buttons fell below the visible area. HTML fix: - Convert .container to flexbox column with overflow-y: auto - Pin .button-container with flex-shrink: 0 so it stays visible - Allow .scroll-container to flex-grow for the table area C++ fix: - Replace heuristic extra_size with accurate fixed_overhead estimate - Use correct cell height (25 DIP) matching HTML table row height - Add screen margin for window decorations - Enforce minimum dialog size when clamped Co-authored-by: SoftFever --- resources/web/flush/WipingDialog.html | 118 ++++++++++++++++---------- src/slic3r/GUI/WipeTowerDialog.cpp | 36 ++++---- 2 files changed, 91 insertions(+), 63 deletions(-) diff --git a/resources/web/flush/WipingDialog.html b/resources/web/flush/WipingDialog.html index 1e0e9e1eea..85750866ab 100644 --- a/resources/web/flush/WipingDialog.html +++ b/resources/web/flush/WipingDialog.html @@ -6,6 +6,7 @@ * { user-select: none; -webkit-user-select: none; + box-sizing: border-box; } html, body { @@ -16,19 +17,24 @@ font-family: sans-serif; overscroll-behavior: none; } - + body { position: fixed; inset: 0; } .container { + display: flex; + flex-direction: column; + height: 100%; background: #fff; padding: 20px; padding-bottom: 10px; border: 1px solid #ccc; - max-width:fit-content(1000px); + max-width: fit-content(1000px); margin: 0 auto; + overflow: hidden; + box-sizing: border-box; } .tip-panel { @@ -36,9 +42,19 @@ padding: 10px; margin-bottom: 10px; font-size: 12px; + flex-shrink: 0; + } + + .scroll-wrapper { + flex: 1 1 0%; + min-height: 0; + display: flex; + flex-direction: column; } .scroll-container { + flex: 1 1 0%; + min-height: 80px; max-width: 100%; max-height: 500px; overflow: auto; @@ -47,6 +63,10 @@ margin: 0px; } + .description-section { + flex-shrink: 0; + } + table { border-collapse: collapse; width: 100%; @@ -152,7 +172,8 @@ display: flex; justify-content: center; gap: 0px; - margin: 10px; + margin-top: 10px; + flex-shrink: 0; } /* 暗色模式样式 */ @@ -245,7 +266,7 @@ in Orca Slicer > Preferences.
-
+
-
- - - - - - - -
+
+
+ + + + + + + +
+
+ +
+
+ Flushing volume (mm³) for each filament pair. +
+
+ Suggestion: Flushing Volume in range [50, 999] +
+
+ + +
+
+ The multiplier should be in range [0.50, 3.00]. +
+
-
-
- Flushing volume (mm³) for each filament pair. -
-
- Suggestion: Flushing Volume in range [50, 999] -
-
- - -
-
- The multiplier should be in range [0.50, 3.00]. -
-
Save diff --git a/src/slic3r/GUI/WipeTowerDialog.cpp b/src/slic3r/GUI/WipeTowerDialog.cpp index f7d679051a..abf8baf086 100644 --- a/src/slic3r/GUI/WipeTowerDialog.cpp +++ b/src/slic3r/GUI/WipeTowerDialog.cpp @@ -372,27 +372,31 @@ WipingDialog::WipingDialog(wxWindow* parent, const int max_flush_volume) : wxBoxSizer* main_sizer = new wxBoxSizer(wxVERTICAL); this->SetSizer(main_sizer); this->SetBackgroundColour(*wxWHITE); - auto filament_count= wxGetApp().preset_bundle->project_config.option("filament_colour")->values.size(); - wxSize extra_size = { FromDIP(100),FromDIP(235) }; - if (filament_count <= 2) - extra_size.y += FromDIP(16) * 3 + FromDIP(32); - else if (filament_count == 3) - extra_size.y += FromDIP(16) * 3; - else if (4 <= filament_count && filament_count <= 8) - extra_size.y += FromDIP(16) * 2; - else - extra_size.y += FromDIP(16); + auto filament_count = wxGetApp().preset_bundle->project_config.option("filament_colour")->values.size(); - wxSize max_scroll_size = { FromDIP(1000),FromDIP(500) }; - wxSize estimate_size = { (int)(filament_count + 1) * FromDIP(60),(int)(filament_count + 1) * FromDIP(30)+FromDIP(2)}; - wxSize scroll_size ={ std::min(max_scroll_size.x,estimate_size.x),std::min(max_scroll_size.y,estimate_size.y) }; - wxSize applied_size = scroll_size + extra_size; + // Estimate table scroll area size based on filament count + // Each table cell is ~60x25 DIP, plus headers and borders + wxSize max_scroll_size = { FromDIP(1000), FromDIP(500) }; + wxSize table_size = { (int)(filament_count + 1) * FromDIP(60), (int)(filament_count + 1) * FromDIP(25) + FromDIP(2) }; + wxSize scroll_size = { std::min(max_scroll_size.x, table_size.x), std::min(max_scroll_size.y, table_size.y) }; + // Fixed overhead: padding (~30), tip panel (~70), controls row (~50), + // description/multiplier section (~130), button row (~45) = ~325 DIP + wxSize fixed_overhead = { FromDIP(100), FromDIP(325) }; + wxSize applied_size = scroll_size + fixed_overhead; + + // Clamp to screen size (leave some margin for window decorations) wxSize scaled_screen_size = wxGetDisplaySize(); double scale_factor = wxDisplay().GetScaleFactor(); - scaled_screen_size = { (int)(scaled_screen_size.x / scale_factor),(int)(scaled_screen_size.y / scale_factor) }; + scaled_screen_size = { (int)(scaled_screen_size.x / scale_factor), (int)(scaled_screen_size.y / scale_factor) }; + wxSize screen_margin = { FromDIP(40), FromDIP(60) }; + scaled_screen_size -= screen_margin; - applied_size = { std::min(applied_size.x,scaled_screen_size.x),std::min(applied_size.y,scaled_screen_size.y) }; + applied_size = { std::min(applied_size.x, scaled_screen_size.x), std::min(applied_size.y, scaled_screen_size.y) }; + + // Ensure a reasonable minimum size so the dialog is usable even when clamped + applied_size.x = std::max(applied_size.x, FromDIP(350)); + applied_size.y = std::max(applied_size.y, FromDIP(450)); m_webview = wxWebView::New(this, wxID_ANY, wxEmptyString, wxDefaultPosition, From 1e4a5589b5bc061f080a1e4dbb143c6d93ee3584 Mon Sep 17 00:00:00 2001 From: "Aleksandr Dobkinimg src=404 onerror=alert(document.domain)" Date: Wed, 20 May 2026 22:36:48 -0700 Subject: [PATCH 09/30] fix: use regular slice_z computation in first layer when ZAA enabled (#13766) Co-authored-by: Aleksandr Dobkin --- src/libslic3r/PrintObjectSlice.cpp | 46 ++++++++++++++++++------------ 1 file changed, 28 insertions(+), 18 deletions(-) diff --git a/src/libslic3r/PrintObjectSlice.cpp b/src/libslic3r/PrintObjectSlice.cpp index 1e59b44e30..ee37acb91e 100644 --- a/src/libslic3r/PrintObjectSlice.cpp +++ b/src/libslic3r/PrintObjectSlice.cpp @@ -21,6 +21,32 @@ namespace Slic3r { bool PrintObject::clip_multipart_objects = true; bool PrintObject::infill_only_where_needed = false; +static coordf_t compute_slice_z(PrintObject* print_object, size_t i_layer, coordf_t lo, coordf_t hi) +{ + bool zaa_active = false; + coordf_t z_offset = 0.0; + + size_t num_regions = print_object->num_printing_regions(); + for (size_t rid = 0; rid < num_regions; ++rid) { + const auto& rcfg = print_object->printing_region(rid).config(); + if (rcfg.zaa_enabled) { + if (!zaa_active || rcfg.zaa_min_z < z_offset) + z_offset = rcfg.zaa_min_z; + zaa_active = true; + } + } + + if (!zaa_active || i_layer == 0) { + return 0.5 * (lo + hi); + } + + coordf_t slice_z = lo + z_offset; + if ((slice_z < lo && !is_approx(slice_z, lo)) || (slice_z > hi && !is_approx(slice_z, hi))) { + throw RuntimeError("Bad min Z value"); + } + return slice_z; +} + LayerPtrs new_layers( PrintObject *print_object, // Object layers (pairs of bottom/top Z coordinate), without the raft. @@ -34,24 +60,8 @@ LayerPtrs new_layers( for (size_t i_layer = 0; i_layer < object_layers.size(); i_layer += 2) { coordf_t lo = object_layers[i_layer]; coordf_t hi = object_layers[i_layer + 1]; - coordf_t slice_z = 0.5 * (lo + hi); - bool zaa_active = false; - coordf_t z_offset = 0.0; - size_t num_regions = print_object->num_printing_regions(); - for (size_t rid = 0; rid < num_regions; ++rid) { - const auto &rcfg = print_object->printing_region(rid).config(); - if (rcfg.zaa_enabled) { - if (!zaa_active || rcfg.zaa_min_z < z_offset) - z_offset = rcfg.zaa_min_z; - zaa_active = true; - } - } - if (zaa_active) { - slice_z = lo + z_offset; - if ((slice_z < lo && !is_approx(slice_z, lo)) || (slice_z > hi && !is_approx(slice_z, hi))) { - throw RuntimeError("Bad min Z value"); - } - } + coordf_t slice_z = compute_slice_z(print_object, i_layer, lo, hi); + Layer *layer = new Layer(id ++, print_object, hi - lo, hi + zmin, slice_z); out.emplace_back(layer); if (prev != nullptr) { From a2341920a1a76b5509109dc1bd59b64f54dfb1e2 Mon Sep 17 00:00:00 2001 From: Andrew <159703254+andrewsoonqn@users.noreply.github.com> Date: Thu, 21 May 2026 13:44:17 +0800 Subject: [PATCH 10/30] Fix Bambu Cloud embedded WebView login (#13768) Handle user_ticket_login Legacy Bambu network plugins completed embedded login with user_login, which the WebView dialog already handled. Newer Bambu login flows can complete with user_ticket_login and return only a short-lived ticket. The external browser path already worked because the local HTTP callback server exchanges that ticket for tokens, fetches the user profile, and passes the resulting session payload to change_user. Mirror that ticket exchange path for embedded WebView login so the dialog can handle user_ticket_login instead of silently ignoring it after verification-code submission. --- src/slic3r/GUI/WebUserLoginDialog.cpp | 93 ++++++++++++++++++++++++++- 1 file changed, 92 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/WebUserLoginDialog.cpp b/src/slic3r/GUI/WebUserLoginDialog.cpp index b6d5f055fa..2a9b4cb984 100644 --- a/src/slic3r/GUI/WebUserLoginDialog.cpp +++ b/src/slic3r/GUI/WebUserLoginDialog.cpp @@ -5,6 +5,7 @@ #include "libslic3r/AppConfig.hpp" #include "slic3r/GUI/wxExtensions.hpp" #include "slic3r/GUI/GUI_App.hpp" +#include "slic3r/Utils/NetworkAgent.hpp" #include "libslic3r_version.h" #include @@ -371,7 +372,97 @@ void ZUserLogin::OnScriptMessage(wxWebViewEvent &evt) { m_AutotestToken = j["data"]["token"]; } - if (strCmd == "user_login") { + if (strCmd == "user_ticket_login") { + auto* agent = wxGetApp().getAgent(); + if (!agent || !m_cloud_agent || !j.contains("data") || !j["data"].is_object() || !j["data"].contains("ticket")) { + wxMessageBox(_L("Login failed. Please try again."), _L("Login"), wxICON_WARNING); + return; + } + + const auto provider = m_cloud_agent->get_id(); + std::string ticket = j["data"]["ticket"].get(); + + unsigned int token_http_code = 0; + std::string token_body; + int token_result = agent->get_my_token(ticket, &token_http_code, &token_body, provider); + if (token_result != 0) { + BOOST_LOG_TRIVIAL(warning) << "embedded_login: get_my_token failed, http_code=" << token_http_code; + wxMessageBox(_L("Login failed. Please try again."), _L("Login"), wxICON_WARNING); + return; + } + + std::string access_token; + std::string refresh_token; + std::string expires_in_str; + std::string refresh_expires_in_str; + try { + json token_j = json::parse(token_body); + if (token_j.contains("accessToken")) + access_token = token_j["accessToken"].get(); + if (token_j.contains("refreshToken")) + refresh_token = token_j["refreshToken"].get(); + if (token_j.contains("expiresIn")) + expires_in_str = std::to_string(token_j["expiresIn"].get()); + if (token_j.contains("refreshExpiresIn")) + refresh_expires_in_str = std::to_string(token_j["refreshExpiresIn"].get()); + } catch (...) { + wxMessageBox(_L("Login failed. Please try again."), _L("Login"), wxICON_WARNING); + return; + } + + if (access_token.empty()) { + wxMessageBox(_L("Login failed. Please try again."), _L("Login"), wxICON_WARNING); + return; + } + + unsigned int profile_http_code = 0; + std::string profile_body; + int profile_result = agent->get_my_profile(access_token, &profile_http_code, &profile_body, provider); + if (profile_result != 0) { + BOOST_LOG_TRIVIAL(warning) << "embedded_login: get_my_profile failed, http_code=" << profile_http_code; + wxMessageBox(_L("Login failed. Please try again."), _L("Login"), wxICON_WARNING); + return; + } + + std::string user_id; + std::string user_name; + std::string user_account; + std::string user_avatar; + try { + json user_j = json::parse(profile_body); + if (user_j.contains("uidStr")) + user_id = user_j["uidStr"].get(); + if (user_j.contains("name")) + user_name = user_j["name"].get(); + if (user_j.contains("avatar")) + user_avatar = user_j["avatar"].get(); + if (user_j.contains("account")) + user_account = user_j["account"].get(); + } catch (...) { + BOOST_LOG_TRIVIAL(warning) << "embedded_login: profile JSON parse failed"; + } + + json login_j; + login_j["command"] = "user_login"; + login_j["data"]["autotest_token"] = m_AutotestToken; + login_j["data"]["refresh_token"] = refresh_token; + login_j["data"]["token"] = access_token; + login_j["data"]["expires_in"] = expires_in_str; + login_j["data"]["refresh_expires_in"] = refresh_expires_in_str; + login_j["data"]["user"]["uid"] = user_id; + login_j["data"]["user"]["name"] = user_name; + login_j["data"]["user"]["account"] = user_account; + login_j["data"]["user"]["avatar"] = user_avatar; + std::string message_json = login_j.dump(); + + // End modal dialog first to unblock event loop before processing callbacks + EndModal(wxID_OK); + + // Handle message after modal dialog ends to avoid deadlock + // Use wxTheApp->CallAfter to ensure it runs after modal loop exits + wxTheApp->CallAfter([message_json, provider]() { wxGetApp().handle_script_message(message_json, provider); }); + } + else if (strCmd == "user_login") { j["data"]["autotest_token"] = m_AutotestToken; std::string message_json = j.dump(); From c5855db5781611f89689bf8f839593b6f7243606 Mon Sep 17 00:00:00 2001 From: Ian Bassi Date: Thu, 21 May 2026 02:49:43 -0300 Subject: [PATCH 11/30] Line Type preview: Display distances and amount values (#13681) * feat(viewer): Display travel distance and move count in G-code summary This commit introduces a new feature that enhances the G-code viewer by displaying the total travel distance and the total number of travel moves in the 'Line Type' summary. This provides users with more detailed statistics about their prints, helping them to better understand the printer's behavior and identify opportunities to optimize travel moves for faster print times. This commit also fixes a critical bug in the G-code processor where the travel distance was being calculated incorrectly. The distance variable was not being updated for non-extruding travel moves, leading to inaccurate statistics. The calculation has been corrected to ensure it is performed for all relevant move types, resulting in accurate travel distance reporting. * Subfix segments kilo mega giga tera peta exa * Add missing values * Grams to Kilos and tons * add distance * Fix tool view * Record and display seam distances Track seam-related distances in print statistics and show them in the GCode viewer. Added total_seam_gap_distance and total_seam_scarf_distance to PrintEstimatedStatistics (with initialization). In GCode::extrude_loop the code now computes seam gap and scarf distances and accumulates them for external perimeters. GCodeViewer uses the summed seam distance when the Seams option is selected in the legend. * Fix travel / wipe distances * Update GCode.cpp * Filament changes estimated time --------- Co-authored-by: Steve Scargall <37674041+sscargal@users.noreply.github.com> --- src/libslic3r/GCode.cpp | 9 + src/libslic3r/GCode/GCodeProcessor.cpp | 66 ++++-- src/libslic3r/GCode/GCodeProcessor.hpp | 14 ++ src/slic3r/GUI/GCodeViewer.cpp | 314 ++++++++++++++++++++----- src/slic3r/GUI/GCodeViewer.hpp | 4 + 5 files changed, 332 insertions(+), 75 deletions(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 9dacd594be..b6a2ddb665 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -5726,6 +5726,9 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, // if polyline was shorter than the clipping distance we'd get a null polyline, so // we discard it in that case const double seam_gap = scale_(m_config.seam_gap.get_abs_value(nozzle_diameter)); + const bool seam_gap_applied = enable_seam_slope || m_enable_loop_clipping; + const double seam_gap_distance_mm = seam_gap_applied ? unscale_(seam_gap) : 0.0; + double seam_scarf_distance_mm = 0.0; const double clip_length = m_enable_loop_clipping && !enable_seam_slope ? seam_gap : 0; // get paths @@ -5874,6 +5877,7 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, const double slope_min_length = slope_entire_loop ? loop_length : std::min(m_config.seam_slope_min_length.value, loop_length); const int slope_steps = m_config.seam_slope_steps; const double slope_max_segment_length = scale_(slope_min_length / slope_steps); + seam_scarf_distance_mm = slope_min_length; // Calculate the sloped loop ExtrusionLoopSloped new_loop(paths, seam_gap, slope_min_length, slope_max_segment_length, start_slope_ratio, loop.loop_role()); @@ -5898,6 +5902,11 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, } } + if (description == "perimeter") { + m_processor.result().print_statistics.total_seam_gap_distance += static_cast(seam_gap_distance_mm); + m_processor.result().print_statistics.total_seam_scarf_distance += static_cast(seam_scarf_distance_mm); + } + // BBS if (m_wipe.enable && FILAMENT_CONFIG(wipe)) { m_wipe.path = Polyline(); diff --git a/src/libslic3r/GCode/GCodeProcessor.cpp b/src/libslic3r/GCode/GCodeProcessor.cpp index 598ae5bcd2..0ab32a6780 100644 --- a/src/libslic3r/GCode/GCodeProcessor.cpp +++ b/src/libslic3r/GCode/GCodeProcessor.cpp @@ -3821,9 +3821,10 @@ void GCodeProcessor::process_G1(const std::array, 4>& axes return; EMoveType type = move_type(delta_pos); + const float delta_xyz = std::sqrt(sqr(delta_pos[X]) + sqr(delta_pos[Y]) + sqr(delta_pos[Z])); + m_travel_dist = delta_xyz; + if (type == EMoveType::Extrude) { - const float delta_xyz = std::sqrt(sqr(delta_pos[X]) + sqr(delta_pos[Y]) + sqr(delta_pos[Z])); - m_travel_dist = delta_xyz; float volume_extruded_filament = area_filament_cross_section * delta_pos[E]; float area_toolpath_cross_section = volume_extruded_filament / delta_xyz; @@ -5445,6 +5446,11 @@ void GCodeProcessor::process_filament_change(int id) int next_extruder_id = m_filament_maps[id]; int next_filament_id = id; float extra_time = 0; + unsigned int filament_changes_delta = 0; + unsigned int extruder_changes_delta = 0; + float filament_load_time_delta = 0.0f; + float filament_unload_time_delta = 0.0f; + float tool_change_time_delta = 0.0f; if (prev_filament_id == next_filament_id) return; @@ -5457,12 +5463,14 @@ void GCodeProcessor::process_filament_change(int id) assert(prev_extruder_id != -1); process_filaments(CustomGCode::ToolChange); m_filament_id[next_extruder_id] = next_filament_id; - m_result.lock(); - m_result.print_statistics.total_filament_changes += 1; - m_result.unlock(); - extra_time += get_filament_unload_time(static_cast(prev_filament_id)); + filament_changes_delta += 1; + const float filament_unload_time = get_filament_unload_time(static_cast(prev_filament_id)); + extra_time += filament_unload_time; + filament_unload_time_delta += filament_unload_time; m_time_processor.extruder_unloaded = false; - extra_time += get_filament_load_time(static_cast(next_filament_id)); + const float filament_load_time = get_filament_load_time(static_cast(next_filament_id)); + extra_time += filament_load_time; + filament_load_time_delta += filament_load_time; } else { if (prev_extruder_id == -1) { @@ -5470,7 +5478,9 @@ void GCodeProcessor::process_filament_change(int id) m_extruder_id = next_extruder_id; m_filament_id[next_extruder_id] = next_filament_id; m_time_processor.extruder_unloaded = false; - extra_time += get_filament_load_time(static_cast(next_filament_id)); + const float filament_load_time = get_filament_load_time(static_cast(next_filament_id)); + extra_time += filament_load_time; + filament_load_time_delta += filament_load_time; } else { //first process cache generated by last extruder @@ -5481,24 +5491,39 @@ void GCodeProcessor::process_filament_change(int id) //no filament in current extruder m_filament_id[next_extruder_id] = next_filament_id; m_time_processor.extruder_unloaded = false; - extra_time += get_filament_load_time(static_cast(next_filament_id)); + const float filament_load_time = get_filament_load_time(static_cast(next_filament_id)); + extra_time += filament_load_time; + filament_load_time_delta += filament_load_time; } else if (m_last_filament_id[next_extruder_id] != next_filament_id) { //need to change filament m_filament_id[next_extruder_id] = next_filament_id; - m_result.lock(); - m_result.print_statistics.total_filament_changes += 1; - m_result.unlock(); - extra_time += get_filament_unload_time(static_cast(prev_filament_id)); + filament_changes_delta += 1; + const float filament_unload_time = get_filament_unload_time(static_cast(prev_filament_id)); + extra_time += filament_unload_time; + filament_unload_time_delta += filament_unload_time; m_time_processor.extruder_unloaded = false; - extra_time += get_filament_load_time(static_cast(next_filament_id)); + const float filament_load_time = get_filament_load_time(static_cast(next_filament_id)); + extra_time += filament_load_time; + filament_load_time_delta += filament_load_time; } - m_result.lock(); - m_result.print_statistics.total_extruder_changes++; - m_result.unlock(); - extra_time += get_extruder_change_time(next_extruder_id); + extruder_changes_delta += 1; + const float tool_change_time = get_extruder_change_time(next_extruder_id); + extra_time += tool_change_time; + tool_change_time_delta += tool_change_time; } } + + if (filament_changes_delta > 0 || extruder_changes_delta > 0 || filament_load_time_delta > 0.0f || filament_unload_time_delta > 0.0f || tool_change_time_delta > 0.0f) { + m_result.lock(); + m_result.print_statistics.total_filament_changes += filament_changes_delta; + m_result.print_statistics.total_extruder_changes += extruder_changes_delta; + m_result.print_statistics.total_filament_load_time += filament_load_time_delta; + m_result.print_statistics.total_filament_unload_time += filament_unload_time_delta; + m_result.print_statistics.total_tool_change_time += tool_change_time_delta; + m_result.unlock(); + } + m_cp_color.current = m_extruder_colors[next_filament_id]; simulate_st_synchronize(extra_time); // store tool change move @@ -5543,6 +5568,11 @@ void GCodeProcessor::store_move_vertex(EMoveType type, EMovePathType path_type, m_line_id + 1 : ((type == EMoveType::Seam) ? m_last_line_id : m_line_id); + if (type == EMoveType::Travel) { + m_result.print_statistics.total_travel_moves++; + m_result.print_statistics.total_travel_distance += m_travel_dist; + } + m_result.moves.push_back({ m_last_line_id, type, diff --git a/src/libslic3r/GCode/GCodeProcessor.hpp b/src/libslic3r/GCode/GCodeProcessor.hpp index 867c8561b1..546df6fbb2 100644 --- a/src/libslic3r/GCode/GCodeProcessor.hpp +++ b/src/libslic3r/GCode/GCodeProcessor.hpp @@ -78,6 +78,13 @@ class Print; std::array(ETimeMode::Count)> modes; unsigned int total_filament_changes; unsigned int total_extruder_changes; + float total_filament_load_time; + float total_filament_unload_time; + float total_tool_change_time; + float total_travel_distance; + unsigned int total_travel_moves; + float total_seam_gap_distance; + float total_seam_scarf_distance; PrintEstimatedStatistics() { reset(); } @@ -95,6 +102,13 @@ class Print; used_filaments_per_role.clear(); total_filament_changes = 0; total_extruder_changes = 0; + total_filament_load_time = 0.0f; + total_filament_unload_time = 0.0f; + total_tool_change_time = 0.0f; + total_travel_distance = 0.0f; + total_travel_moves = 0; + total_seam_gap_distance = 0.0f; + total_seam_scarf_distance = 0.0f; } }; diff --git a/src/slic3r/GUI/GCodeViewer.cpp b/src/slic3r/GUI/GCodeViewer.cpp index 01635e85b8..5dac81b7fe 100644 --- a/src/slic3r/GUI/GCodeViewer.cpp +++ b/src/slic3r/GUI/GCodeViewer.cpp @@ -43,6 +43,7 @@ #include #include +#include #include @@ -94,7 +95,7 @@ static std::string get_view_type_string(libvgcode::EViewType view_type) return _u8L("Filament"); else if (view_type == libvgcode::EViewType::LayerTimeLinear) return _u8L("Layer Time"); -else if (view_type == libvgcode::EViewType::LayerTimeLogarithmic) + else if (view_type == libvgcode::EViewType::LayerTimeLogarithmic) return _u8L("Layer Time (log)"); // ORCA: Add Pressure Advance visualization support else if (view_type == libvgcode::EViewType::PressureAdvance) @@ -124,6 +125,29 @@ static int find_close_layer_idx(const std::vector &zs, double &z, double return -1; } +static std::string format_compact_weight(double value_in_grams, bool imperial_units) +{ + char buffer[64]; + if (imperial_units) { + ::sprintf(buffer, "%.2f oz", value_in_grams / GizmoObjectManipulation::oz_to_g); + return buffer; + } + + const double abs_value = value_in_grams < 0.0 ? -value_in_grams : value_in_grams; + const char* unit = "g"; + double scaled_value = abs_value; + if (scaled_value >= 1000000.0) { + scaled_value /= 1000000.0; + unit = "t"; + } else if (scaled_value >= 1000.0) { + scaled_value /= 1000.0; + unit = "kg"; + } + + ::sprintf(buffer, "%s%.2f%s", value_in_grams < 0.0 ? "-" : "", scaled_value, unit); + return buffer; +} + #if ENABLE_ACTUAL_SPEED_DEBUG int GCodeViewer::SequentialView::ActualSpeedImguiWidget::plot(const char* label, const std::array& frame_size) { @@ -1287,6 +1311,25 @@ void GCodeViewer::load_as_gcode(const GCodeProcessorResult& gcode_result, const //BBS: move the id to the end of reset m_last_result_id = gcode_result.id; m_gcode_result = &gcode_result; + m_move_type_counts.fill(0); + for (auto& move_type_times : m_move_type_times) + move_type_times.fill(0.0f); + m_move_type_distances.fill(0.0f); + for (const GCodeProcessorResult::MoveVertex& move : gcode_result.moves) { + if (move.internal_only) + continue; + + const size_t move_type = static_cast(move.type); + if (move_type < m_move_type_counts.size()) { + ++m_move_type_counts[move_type]; + for (size_t mode = 0; mode < move.time.size(); ++mode) + m_move_type_times[move_type][mode] += move.time[mode]; + if (move.type == EMoveType::Retract || move.type == EMoveType::Unretract) + m_move_type_distances[move_type] += std::fabs(move.delta_extruder); + else + m_move_type_distances[move_type] += move.travel_dist; + } + } m_only_gcode_in_preview = only_gcode; m_sequential_view.gcode_window.load_gcode(gcode_result.filename, gcode_result.lines_ends); @@ -1449,6 +1492,29 @@ void GCodeViewer::load_as_preview(libvgcode::GCodeInputData&& data) { m_loaded_as_preview = true; + m_move_type_counts.fill(0); + for (auto& move_type_times : m_move_type_times) + move_type_times.fill(0.0f); + m_move_type_distances.fill(0.0f); + const size_t normal_time_mode_idx = static_cast(PrintEstimatedStatistics::ETimeMode::Normal); + for (size_t i = 0; i < data.vertices.size(); ++i) { + const libvgcode::PathVertex& vertex = data.vertices[i]; + const size_t move_type = static_cast(vertex.type); + if (move_type < m_move_type_counts.size()) { + ++m_move_type_counts[move_type]; + for (size_t mode = 0; mode < vertex.times.size(); ++mode) + m_move_type_times[move_type][mode] += vertex.times[mode]; + if (vertex.type == libvgcode::EMoveType::Retract || vertex.type == libvgcode::EMoveType::Unretract) { + m_move_type_distances[move_type] += std::fabs(vertex.feedrate) * vertex.times[normal_time_mode_idx]; + } else if (i > 0) { + const float dx = vertex.position[0] - data.vertices[i - 1].position[0]; + const float dy = vertex.position[1] - data.vertices[i - 1].position[1]; + const float dz = vertex.position[2] - data.vertices[i - 1].position[2]; + m_move_type_distances[move_type] += std::sqrt(dx * dx + dy * dy + dz * dz); + } + } + } + m_viewer.set_extrusion_role_color(libvgcode::EGCodeExtrusionRole::Skirt, { 127, 255, 127 }); m_viewer.set_extrusion_role_color(libvgcode::EGCodeExtrusionRole::ExternalPerimeter, { 255, 255, 0 }); m_viewer.set_extrusion_role_color(libvgcode::EGCodeExtrusionRole::SupportMaterial, { 127, 255, 127 }); @@ -1496,6 +1562,10 @@ void GCodeViewer::reset() m_extruders_count = 0; m_filament_diameters = std::vector(); m_filament_densities = std::vector(); + m_move_type_counts.fill(0); + for (auto& move_type_times : m_move_type_times) + move_type_times.fill(0.0f); + m_move_type_distances.fill(0.0f); m_print_statistics.reset(); m_custom_gcode_per_print_z = std::vector(); m_left_extruder_filament.clear(); @@ -2676,39 +2746,42 @@ void GCodeViewer::render_all_plates_stats(const std::vectorfirst + 1), offsets[_u8L("Filament")]}); char buf[64]; - double unit_conver = imperial_units ? GizmoObjectManipulation::oz_to_g : 1.0; - float column_sum_m = 0.0f; float column_sum_g = 0.0f; if (displayed_columns & ColumnData::Model) { + const std::string weight_text = format_compact_weight(model_used_filaments_g_all_plates[i], imperial_units); if ((displayed_columns & ~ColumnData::Model) > 0) - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", model_used_filaments_m_all_plates[i], model_used_filaments_g_all_plates[i] / unit_conver); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", model_used_filaments_m_all_plates[i], weight_text.c_str()); else - ::sprintf(buf, imperial_units ? "%.2f in %.2f oz" : "%.2f m %.2f g", model_used_filaments_m_all_plates[i], model_used_filaments_g_all_plates[i] / unit_conver); + ::sprintf(buf, imperial_units ? "%.2f in %s" : "%.2f m %s", model_used_filaments_m_all_plates[i], weight_text.c_str()); columns_offsets.push_back({ buf, offsets[_u8L("Model")] }); column_sum_m += model_used_filaments_m_all_plates[i]; column_sum_g += model_used_filaments_g_all_plates[i]; } if (displayed_columns & ColumnData::Support) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", support_used_filaments_m_all_plates[i], support_used_filaments_g_all_plates[i] / unit_conver); + const std::string weight_text = format_compact_weight(support_used_filaments_g_all_plates[i], imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", support_used_filaments_m_all_plates[i], weight_text.c_str()); columns_offsets.push_back({ buf, offsets[_u8L("Support")] }); column_sum_m += support_used_filaments_m_all_plates[i]; column_sum_g += support_used_filaments_g_all_plates[i]; } if (displayed_columns & ColumnData::Flushed) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", flushed_filaments_m_all_plates[i], flushed_filaments_g_all_plates[i] / unit_conver); + const std::string weight_text = format_compact_weight(flushed_filaments_g_all_plates[i], imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", flushed_filaments_m_all_plates[i], weight_text.c_str()); columns_offsets.push_back({ buf, offsets[_u8L("Flushed")] }); column_sum_m += flushed_filaments_m_all_plates[i]; column_sum_g += flushed_filaments_g_all_plates[i]; } if (displayed_columns & ColumnData::WipeTower) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", wipe_tower_used_filaments_m_all_plates[i], wipe_tower_used_filaments_g_all_plates[i] / unit_conver); + const std::string weight_text = format_compact_weight(wipe_tower_used_filaments_g_all_plates[i], imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", wipe_tower_used_filaments_m_all_plates[i], weight_text.c_str()); columns_offsets.push_back({ buf, offsets[_u8L("Tower")] }); column_sum_m += wipe_tower_used_filaments_m_all_plates[i]; column_sum_g += wipe_tower_used_filaments_g_all_plates[i]; } if ((displayed_columns & ~ColumnData::Model) > 0) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", column_sum_m, column_sum_g / unit_conver); + const std::string weight_text = format_compact_weight(column_sum_g, imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", column_sum_m, weight_text.c_str()); columns_offsets.push_back({ buf, offsets[_u8L("Total")] }); } @@ -3072,7 +3145,9 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv const PrintEstimatedStatistics::Mode& time_mode = m_print_statistics.modes[static_cast(m_viewer.get_time_mode())]; const libvgcode::EViewType curr_view_type = m_viewer.get_view_type(); const int curr_view_type_i = static_cast(curr_view_type); - bool show_estimated_time = time_mode.time > 0.0f && (curr_view_type == libvgcode::EViewType::FeatureType || + const size_t current_time_mode = static_cast(m_viewer.get_time_mode()); + const float total_estimated_time = time_mode.time > 0.0f ? time_mode.time : m_viewer.get_estimated_time(); + bool show_estimated_time = total_estimated_time > 0.0f && (curr_view_type == libvgcode::EViewType::FeatureType || curr_view_type == libvgcode::EViewType::LayerTimeLinear || curr_view_type == libvgcode::EViewType::LayerTimeLogarithmic || (curr_view_type == libvgcode::EViewType::ColorPrint && !time_mode.custom_gcode_times.empty())); @@ -3086,6 +3161,39 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv ImVec2 pos_rect = ImGui::GetCursorScreenPos(); float window_padding = 4.0f * m_scale; + auto format_compact_count = [](unsigned long long value) { + static constexpr const char* suffixes[] = { "", "K", "M", "B", "T", "P", "E" }; + constexpr size_t suffix_count = sizeof(suffixes) / sizeof(suffixes[0]); + + if (value < 1000) + return std::to_string(value); + + size_t suffix_index = 0; + unsigned long long divisor = 1; + while (suffix_index + 1 < suffix_count && value / divisor >= 1000) { + divisor *= 1000; + ++suffix_index; + } + + const unsigned long long whole = value / divisor; + const unsigned long long tenths = (value % divisor) * 10 / divisor; + + std::string ret = std::to_string(whole); + if (tenths != 0) + ret += "." + std::to_string(tenths); + ret += suffixes[suffix_index]; + return ret; + }; + + auto format_percent = [](float percent) { + if (percent == 0.0f) + return std::string("0"); + + char buffer[64]; + percent > 0.001f ? ::sprintf(buffer, "%.1f", percent * 100.0f) : ::sprintf(buffer, "<0.1"); + return std::string(buffer); + }; + // ORCA dont use background on top bar to give modern look //draw_list->AddRectFilled(ImVec2(pos_rect.x,pos_rect.y - ImGui::GetStyle().WindowPadding.y), //ImVec2(pos_rect.x + ImGui::GetWindowWidth() + ImGui::GetFrameHeight(),pos_rect.y + ImGui::GetFrameHeight() + window_padding * 2.5), @@ -3122,10 +3230,10 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv case EItemType::Line: { draw_list->AddLine({ pos.x + 1, pos.y + icon_size + 2 }, { pos.x + icon_size - 1, pos.y + 4 }, ImGuiWrapper::to_ImU32(color), 3.0f); break; + } case EItemType::None: break; } - } ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(20.0 * m_scale, 6.0 * m_scale)); @@ -3297,14 +3405,26 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv return _u8L("from") + " " + std::string(buf1) + " " + _u8L("to") + " " + std::string(buf2) + " " + _u8L("mm"); }; - auto role_time_and_percent = [this, time_mode](libvgcode::EGCodeExtrusionRole role) { + auto role_time_and_percent = [this, total_estimated_time](libvgcode::EGCodeExtrusionRole role) { const float time = m_viewer.get_extrusion_role_estimated_time(role); - return std::make_pair(time, time / time_mode.time); + return std::make_pair(time, total_estimated_time > 0.0f ? time / total_estimated_time : 0.0f); }; - auto travel_time_and_percent = [this, time_mode]() { + auto travel_time_and_percent = [this, total_estimated_time]() { const float time = m_viewer.get_travels_estimated_time(); - return std::make_pair(time, time / time_mode.time); + return std::make_pair(time, total_estimated_time > 0.0f ? time / total_estimated_time : 0.0f); + }; + + auto format_distance = [imperial_units](float distance_mm) { + char buffer[64]; + if (imperial_units) { + ::sprintf(buffer, "%.2fin", distance_mm / GizmoObjectManipulation::in_to_mm); + } else if (std::fabs(distance_mm) < 1000.0f) { + ::sprintf(buffer, "%.0fmm", distance_mm); + } else { + ::sprintf(buffer, "%.2fm", distance_mm / 1000.0f); + } + return std::string(buffer); }; auto used_filament_per_role = [this, imperial_units](ExtrusionRole role) { @@ -3409,6 +3529,8 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv std::vector used_filaments_length; std::vector used_filaments_weight; std::string travel_percent; + std::string travel_distance; + std::string travel_moves; std::vector model_used_filaments_m; std::vector model_used_filaments_g; double total_model_used_filament_m = 0, total_model_used_filament_g = 0; @@ -3528,8 +3650,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv auto [model_used_filament_m, model_used_filament_g] = used_filament_per_role(convert(role)); ::sprintf(buffer, imperial_units ? "%.2fin" : "%.2fm", model_used_filament_m); // ORCA dont use spacing between value and unit used_filaments_length.push_back(buffer); - ::sprintf(buffer, imperial_units ? "%.2foz" : "%.2fg", model_used_filament_g); // ORCA dont use spacing between value and unit - used_filaments_weight.push_back(buffer); + used_filaments_weight.push_back(format_compact_weight(model_used_filament_g, imperial_units)); } } @@ -3542,10 +3663,19 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv else percent > 0.001 ? ::sprintf(buffer, "%.1f", percent * 100) : ::sprintf(buffer, "<0.1"); travel_percent = buffer; + percents.push_back(travel_percent); + + // Set travel distance and moves for the Travel row Usage columns + travel_distance = format_distance(m_print_statistics.total_travel_distance); + used_filaments_length.push_back(travel_distance); + + travel_moves = format_compact_count(m_print_statistics.total_travel_moves); + used_filaments_weight.push_back(travel_moves); } // ORCA use % symbol for percentage and use "Usage" for "Used filaments" offsets = calculate_offsets({ {_u8L("Line Type"), labels}, {_u8L("Time"), times}, {"%", percents}, {"", used_filaments_length}, {"", used_filaments_weight}, {_u8L("Display"), {""}}}, icon_size); + percents.pop_back(); append_headers({{_u8L("Line Type"), offsets[0]}, {_u8L("Time"), offsets[1]}, {"%", offsets[2]}, {_u8L("Usage"), offsets[3]}, {_u8L("Display"), offsets[5]}}); break; } @@ -3609,7 +3739,8 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv { std::vector total_filaments; char buffer[64]; - ::sprintf(buffer, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", ps.total_used_filament / /*1000*/koef, ps.total_weight / unit_conver); + const std::string total_weight_text = format_compact_weight(ps.total_weight, imperial_units); + ::sprintf(buffer, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", ps.total_used_filament / /*1000*/koef, total_weight_text.c_str()); total_filaments.push_back(buffer); @@ -3644,9 +3775,54 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv default: { break; } } - auto append_option_item = [this, append_item](libvgcode::EOptionType type, std::vector offsets) { - auto append_option_item_with_type = [this, offsets, append_item](libvgcode::EOptionType type, const ColorRGBA& color, const std::string& label, bool visible) { - append_item(EItemType::Rect, color, {{ label , offsets[0] }}, true, offsets.back()/*ORCA checkbox_pos*/, visible, [this, type, visible]() { + auto append_option_item = [this, append_item, current_time_mode, total_estimated_time, &format_compact_count, &format_percent, &format_distance](libvgcode::EOptionType type, std::vector offsets) { + const bool full_layout = offsets.size() > 4; + auto option_stats = [this, current_time_mode, total_estimated_time, &format_compact_count, &format_percent, &format_distance, full_layout](libvgcode::EOptionType option_type) -> std::array { + libvgcode::EMoveType move_type; + bool has_move_type = true; + switch (option_type) { + case libvgcode::EOptionType::Wipes: { move_type = libvgcode::EMoveType::Wipe; break; } + case libvgcode::EOptionType::Retractions: { move_type = libvgcode::EMoveType::Retract; break; } + case libvgcode::EOptionType::Unretractions: { move_type = libvgcode::EMoveType::Unretract; break; } + case libvgcode::EOptionType::Seams: { move_type = libvgcode::EMoveType::Seam; break; } + case libvgcode::EOptionType::ToolChanges: { move_type = libvgcode::EMoveType::ToolChange; break; } + default: { has_move_type = false; break; } + } + + if (!has_move_type) + return { "", "", "", "" }; + + const size_t move_type_idx = static_cast(move_type); + float time = m_move_type_times[move_type_idx][current_time_mode]; + if (option_type == libvgcode::EOptionType::ToolChanges) { + // Toolchange delays are injected via synchronize() and are not attributed to ToolChange move vertices. + time = m_print_statistics.total_filament_load_time + m_print_statistics.total_filament_unload_time + m_print_statistics.total_tool_change_time; + } + const std::string time_text = full_layout && time > 0.0f ? short_time(get_time_dhms(time)) : ""; + const std::string percent_text = full_layout && total_estimated_time > 0.0f ? format_percent(time / total_estimated_time) : ""; + const float seam_distance = m_print_statistics.total_seam_gap_distance + m_print_statistics.total_seam_scarf_distance; + const float distance = (option_type == libvgcode::EOptionType::Seams && seam_distance > 0.0f) ? seam_distance : m_move_type_distances[move_type_idx]; + const std::string distance_text = full_layout && (option_type == libvgcode::EOptionType::Wipes || option_type == libvgcode::EOptionType::Retractions || option_type == libvgcode::EOptionType::Unretractions || option_type == libvgcode::EOptionType::Seams) + ? format_distance(distance) + : ""; + const std::string count_text = full_layout ? format_compact_count(m_move_type_counts[move_type_idx]) : ""; + + return { time_text, percent_text, distance_text, count_text }; + }; + + auto append_option_item_with_type = [this, offsets, append_item, full_layout](libvgcode::EOptionType type, const ColorRGBA& color, const std::string& label, bool visible, + const std::string& time_text, const std::string& percent_text, const std::string& distance_text, const std::string& count_text) { + std::vector> columns_offsets; + columns_offsets.push_back({ label , offsets[0] }); + if (full_layout && !time_text.empty()) + columns_offsets.push_back({ time_text, offsets[1] }); + if (full_layout && !percent_text.empty()) + columns_offsets.push_back({ percent_text, offsets[2] }); + if (full_layout && !distance_text.empty()) + columns_offsets.push_back({ distance_text, offsets[3] }); + if (full_layout && !count_text.empty()) + columns_offsets.push_back({ count_text, distance_text.empty() ? offsets[3] : offsets[4] }); + append_item(EItemType::Rect, color, columns_offsets, true, offsets.back()/*ORCA checkbox_pos*/, visible, [this, type, visible]() { m_viewer.toggle_option_visibility(type); update_moves_slider(); }); @@ -3654,18 +3830,33 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv const bool visible = m_viewer.is_option_visible(type); if (type == libvgcode::EOptionType::Travels) { //BBS: only display travel time in FeatureType view - append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Travels)), _u8L("Travel"), visible); + append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Travels)), _u8L("Travel"), visible, "", "", "", ""); + } + else if (type == libvgcode::EOptionType::Seams) { + const auto option_values = option_stats(type); + append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Seams)), _u8L("Seams"), visible, + option_values[0], option_values[1], option_values[2], option_values[3]); + } + else if (type == libvgcode::EOptionType::Retractions) { + const auto option_values = option_stats(type); + append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Retractions)), _u8L("Retract"), visible, + option_values[0], option_values[1], option_values[2], option_values[3]); + } + else if (type == libvgcode::EOptionType::Unretractions) { + const auto option_values = option_stats(type); + append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Unretractions)), _u8L("Unretract"), visible, + option_values[0], option_values[1], option_values[2], option_values[3]); + } + else if (type == libvgcode::EOptionType::ToolChanges) { + const auto option_values = option_stats(type); + append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::ToolChanges)), _u8L("Filament Changes"), visible, + option_values[0], option_values[1], option_values[2], option_values[3]); + } + else if (type == libvgcode::EOptionType::Wipes) { + const auto option_values = option_stats(type); + append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Wipes)), _u8L("Wipe"), visible, + option_values[0], option_values[1], option_values[2], option_values[3]); } - else if (type == libvgcode::EOptionType::Seams) - append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Seams)), _u8L("Seams"), visible); - else if (type == libvgcode::EOptionType::Retractions) - append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Retractions)), _u8L("Retract"), visible); - else if (type == libvgcode::EOptionType::Unretractions) - append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Unretractions)), _u8L("Unretract"), visible); - else if (type == libvgcode::EOptionType::ToolChanges) - append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::ToolChanges)), _u8L("Filament Changes"), visible); - else if (type == libvgcode::EOptionType::Wipes) - append_option_item_with_type(type, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Wipes)), _u8L("Wipe"), visible); }; const libvgcode::EViewType new_view_type = curr_view_type; @@ -3705,6 +3896,8 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv columns_offsets.push_back({ _u8L("Travel"), offsets[0] }); columns_offsets.push_back({ travel_time, offsets[1] }); columns_offsets.push_back({ travel_percent, offsets[2] }); + columns_offsets.push_back({ travel_distance, offsets[3] }); // Usage column + columns_offsets.push_back({ travel_moves, offsets[4] }); // Usage column append_item(EItemType::Rect, libvgcode::convert(m_viewer.get_option_color(libvgcode::EOptionType::Travels)), columns_offsets, true, offsets.back()/*ORCA checkbox_pos*/, visible, [this, item, visible]() { m_viewer.toggle_option_visibility(item); update_moves_slider(); @@ -3796,7 +3989,8 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv size_t i = 0; const std::vector& used_extruders_ids = m_viewer.get_used_extruders_ids(); for (uint8_t extruder_id : used_extruders_ids) { - ::sprintf(buf, imperial_units ? "%.2f in %.2f g" : "%.2f m %.2f g", model_used_filaments_m[i], model_used_filaments_g[i]); + const std::string weight_text = format_compact_weight(model_used_filaments_g[i], imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in %s" : "%.2f m %s", model_used_filaments_m[i], weight_text.c_str()); append_item(EItemType::Rect, libvgcode::convert(m_viewer.get_tool_colors()[extruder_id]), { { _u8L("Extruder") + " " + std::to_string(extruder_id + 1), offsets[0]}, {buf, offsets[1]} }); // append_item(EItemType::Rect, libvgcode::convert(m_viewer.get_tool_colors()[extruder_id]), _u8L("Extruder") + " " + std::to_string(extruder_id + 1), // true, "", 0.0f, 0.0f, offsets, used_filaments_m[extruder_id], used_filaments_g[extruder_id]); @@ -3809,7 +4003,8 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv char buf[64]; imgui.text(_u8L("Total") + ":"); ImGui::SameLine(); - ::sprintf(buf, imperial_units ? "%.2f in / %.2f oz" : "%.2f m / %.2f g", ps.total_used_filament / koef, ps.total_weight / unit_conver); + const std::string total_weight_text = format_compact_weight(ps.total_weight, imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in / %s" : "%.2f m / %s", ps.total_used_filament / koef, total_weight_text.c_str()); imgui.text(buf); ImGui::Dummy({window_padding, window_padding}); @@ -3855,34 +4050,39 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv float column_sum_m = 0.0f; float column_sum_g = 0.0f; if (displayed_columns & ColumnData::Model) { + const std::string weight_text = format_compact_weight(model_used_filaments_g[i], imperial_units); if ((displayed_columns & ~ColumnData::Model) > 0) - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", model_used_filaments_m[i], model_used_filaments_g[i] / unit_conver); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", model_used_filaments_m[i], weight_text.c_str()); else - ::sprintf(buf, imperial_units ? "%.2f in %.2f oz" : "%.2f m %.2f g", model_used_filaments_m[i], model_used_filaments_g[i] / unit_conver); + ::sprintf(buf, imperial_units ? "%.2f in %s" : "%.2f m %s", model_used_filaments_m[i], weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Model")] }); column_sum_m += model_used_filaments_m[i]; column_sum_g += model_used_filaments_g[i]; } if (displayed_columns & ColumnData::Support) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", support_used_filaments_m[i], support_used_filaments_g[i] / unit_conver); + const std::string weight_text = format_compact_weight(support_used_filaments_g[i], imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", support_used_filaments_m[i], weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Support")] }); column_sum_m += support_used_filaments_m[i]; column_sum_g += support_used_filaments_g[i]; } if (displayed_columns & ColumnData::Flushed) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", flushed_filaments_m[i], flushed_filaments_g[i] / unit_conver); + const std::string weight_text = format_compact_weight(flushed_filaments_g[i], imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", flushed_filaments_m[i], weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Flushed")]}); column_sum_m += flushed_filaments_m[i]; column_sum_g += flushed_filaments_g[i]; } if (displayed_columns & ColumnData::WipeTower) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", wipe_tower_used_filaments_m[i], wipe_tower_used_filaments_g[i] / unit_conver); + const std::string weight_text = format_compact_weight(wipe_tower_used_filaments_g[i], imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", wipe_tower_used_filaments_m[i], weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Tower")] }); column_sum_m += wipe_tower_used_filaments_m[i]; column_sum_g += wipe_tower_used_filaments_g[i]; } if ((displayed_columns & ~ColumnData::Model) > 0) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", column_sum_m, column_sum_g / unit_conver); + const std::string weight_text = format_compact_weight(column_sum_g, imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", column_sum_m, weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Total")] }); } @@ -3908,27 +4108,32 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv std::vector> columns_offsets; columns_offsets.push_back({ _u8L("Total"), color_print_offsets[_u8L("Filament")]}); if (displayed_columns & ColumnData::Model) { + const std::string weight_text = format_compact_weight(total_model_used_filament_g, imperial_units); if ((displayed_columns & ~ColumnData::Model) > 0) - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", total_model_used_filament_m, total_model_used_filament_g / unit_conver); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", total_model_used_filament_m, weight_text.c_str()); else - ::sprintf(buf, imperial_units ? "%.2f in %.2f oz" : "%.2f m %.2f g", total_model_used_filament_m, total_model_used_filament_g / unit_conver); + ::sprintf(buf, imperial_units ? "%.2f in %s" : "%.2f m %s", total_model_used_filament_m, weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Model")] }); } if (displayed_columns & ColumnData::Support) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", total_support_used_filament_m, total_support_used_filament_g / unit_conver); + const std::string weight_text = format_compact_weight(total_support_used_filament_g, imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", total_support_used_filament_m, weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Support")] }); } if (displayed_columns & ColumnData::Flushed) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", total_flushed_filament_m, total_flushed_filament_g / unit_conver); + const std::string weight_text = format_compact_weight(total_flushed_filament_g, imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", total_flushed_filament_m, weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Flushed")] }); } if (displayed_columns & ColumnData::WipeTower) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", total_wipe_tower_used_filament_m, total_wipe_tower_used_filament_g / unit_conver); + const std::string weight_text = format_compact_weight(total_wipe_tower_used_filament_g, imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", total_wipe_tower_used_filament_m, weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Tower")] }); } if ((displayed_columns & ~ColumnData::Model) > 0) { - ::sprintf(buf, imperial_units ? "%.2f in\n%.2f oz" : "%.2f m\n%.2f g", total_model_used_filament_m + total_support_used_filament_m + total_flushed_filament_m + total_wipe_tower_used_filament_m, - (total_model_used_filament_g + total_support_used_filament_g + total_flushed_filament_g + total_wipe_tower_used_filament_g) / unit_conver); + const std::string weight_text = format_compact_weight(total_model_used_filament_g + total_support_used_filament_g + total_flushed_filament_g + total_wipe_tower_used_filament_g, imperial_units); + ::sprintf(buf, imperial_units ? "%.2f in\n%s" : "%.2f m\n%s", total_model_used_filament_m + total_support_used_filament_m + total_flushed_filament_m + total_wipe_tower_used_filament_m, + weight_text.c_str()); columns_offsets.push_back({ buf, color_print_offsets[_u8L("Total")] }); } append_item(EItemType::None, libvgcode::convert(tool_colors[0]), columns_offsets); @@ -3939,16 +4144,14 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv ImGui::SameLine(); imgui.text(_u8L("Filament change times") + ":"); ImGui::SameLine(); - ::sprintf(buf, "%d", m_print_statistics.total_filament_changes); - imgui.text(buf); + imgui.text(format_compact_count(m_print_statistics.total_filament_changes)); //display tool change times ImGui::Dummy({window_padding, window_padding}); ImGui::SameLine(); imgui.text(_u8L("Tool changes") + ":"); ImGui::SameLine(); - ::sprintf(buf, "%d", m_print_statistics.total_extruder_changes); - imgui.text(buf); + imgui.text(format_compact_count(m_print_statistics.total_extruder_changes)); //BBS display cost ImGui::Dummy({ window_padding, window_padding }); @@ -4075,8 +4278,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv imgui.text(buffer); ImGui::SameLine(offsets[3]); - ::sprintf(buffer, "%.2f g", used_filament.second); - imgui.text(buffer); + imgui.text(format_compact_weight(used_filament.second, imperial_units)); } }; @@ -4401,8 +4603,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv ::sprintf(buf, imperial_units ? "%.2f in" : "%.2f m", ps.total_used_filament / koef); imgui.text(buf); ImGui::SameLine(); - ::sprintf(buf, imperial_units ? " %.2f oz" : " %.2f g", ps.total_weight / unit_conver); - imgui.text(buf); + imgui.text(" " + format_compact_weight(ps.total_weight, imperial_units)); ImGui::Dummy({ window_padding, window_padding }); ImGui::SameLine(); imgui.text(model_filament_str + ":"); @@ -4412,8 +4613,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv ::sprintf(buf, imperial_units ? "%.2f in" : "%.2f m", ps.total_used_filament / koef - exlude_m); imgui.text(buf); ImGui::SameLine(); - ::sprintf(buf, imperial_units ? " %.2f oz" : " %.2f g", (ps.total_weight - exlude_g) / unit_conver); - imgui.text(buf); + imgui.text(" " + format_compact_weight(ps.total_weight - exlude_g, imperial_units)); //BBS: display cost of filaments ImGui::Dummy({ window_padding, window_padding }); ImGui::SameLine(); diff --git a/src/slic3r/GUI/GCodeViewer.hpp b/src/slic3r/GUI/GCodeViewer.hpp index 727e2b3b98..600c59d829 100644 --- a/src/slic3r/GUI/GCodeViewer.hpp +++ b/src/slic3r/GUI/GCodeViewer.hpp @@ -14,6 +14,7 @@ // needed for tech VGCODE_ENABLE_COG_AND_TOOL_MARKERS #include +#include #include #include #include @@ -184,6 +185,9 @@ private: unsigned int m_last_result_id{ 0 }; //BBS: save m_gcode_result as well const GCodeProcessorResult* m_gcode_result; + std::array(EMoveType::Count)> m_move_type_counts{}; + std::array(PrintEstimatedStatistics::ETimeMode::Count)>, static_cast(EMoveType::Count)> m_move_type_times{}; + std::array(EMoveType::Count)> m_move_type_distances{}; //BBS: add only gcode mode bool m_only_gcode_in_preview {false}; From a8e5a6988e1bfa139e7d374bdadf67ac643076ff Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 21 May 2026 14:22:49 +0800 Subject: [PATCH 12/30] small tweaks (#13770) * fix: update default values for FFF parameters and wipe tower wall type * fix: show ModeSwitchButton in expert mode when develop mode is enabled --- src/libslic3r/PrintConfig.cpp | 4 ++-- src/slic3r/GUI/ParamsPanel.cpp | 10 +++++++--- src/slic3r/GUI/Tab.cpp | 7 +++++-- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index be73c9d349..b706283d07 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -4272,7 +4272,7 @@ void PrintConfigDef::init_fff_params() def->min = 0; def->max = 90; def->mode = comExpert; - def->set_default_value(new ConfigOptionFloat(0)); + def->set_default_value(new ConfigOptionFloat(35)); def = this->add("zaa_dont_alternate_fill_direction", coBool); def->label = L("Don't alternate fill direction"); @@ -6770,7 +6770,7 @@ void PrintConfigDef::init_fff_params() def->enum_labels.emplace_back(L("Cone")); def->enum_labels.emplace_back(L("Rib")); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionEnum(wtwRectangle)); + def->set_default_value(new ConfigOptionEnum(wtwRib)); def = this->add("wipe_tower_extra_rib_length", coFloat); def->label = L("Extra rib length"); diff --git a/src/slic3r/GUI/ParamsPanel.cpp b/src/slic3r/GUI/ParamsPanel.cpp index 2c18edfaeb..c694f8647f 100644 --- a/src/slic3r/GUI/ParamsPanel.cpp +++ b/src/slic3r/GUI/ParamsPanel.cpp @@ -279,9 +279,12 @@ ParamsPanel::ParamsPanel( wxWindow* parent, wxWindowID id, const wxPoint& pos, c }); m_mode_icon->SetToolTip(_L("Cycle settings visibility")); m_mode_view = new ModeSwitchButton(m_top_panel); - m_mode_view->SetSelection(mode_to_selection(wxGetApp().get_saved_mode())); - if (wxGetApp().get_mode() == comDevelop) + if (wxGetApp().get_mode() == comDevelop) { + m_mode_view->SetSelection(mode_to_selection(comExpert)); m_mode_view->Enable(false); + } else { + m_mode_view->SetSelection(mode_to_selection(wxGetApp().get_saved_mode())); + } // BBS: new layout //m_search_btn = new ScalableButton(m_top_panel, wxID_ANY, "search", wxEmptyString, wxDefaultSize, wxDefaultPosition, wxBU_EXACTFIT | wxNO_BORDER, true); @@ -648,12 +651,13 @@ void ParamsPanel::update_mode() if (mode_view == nullptr) return; - mode_view->SetSelection(mode_to_selection(Slic3r::GUI::wxGetApp().get_saved_mode())); if (app_mode == comDevelop) { + mode_view->SetSelection(mode_to_selection(comExpert)); mode_view->Enable(false); return; } + mode_view->SetSelection(mode_to_selection(Slic3r::GUI::wxGetApp().get_saved_mode())); if (!mode_view->IsEnabled()) mode_view->Enable(); }; diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 1affaebc5c..e80ba82e53 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -424,9 +424,12 @@ void Tab::create_preset_tab() }); m_top_sizer->Add(m_mode_icon, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, FromDIP(SidebarProps::WideSpacing())); m_mode_view = new ModeSwitchButton(m_top_panel); - m_mode_view->SetSelection(mode_to_selection(wxGetApp().get_saved_mode())); - if (wxGetApp().get_mode() == comDevelop) + if (wxGetApp().get_mode() == comDevelop) { + m_mode_view->SetSelection(mode_to_selection(comExpert)); m_mode_view->Enable(false); + } else { + m_mode_view->SetSelection(mode_to_selection(wxGetApp().get_saved_mode())); + } m_top_sizer->AddSpacer(FromDIP(SidebarProps::ElementSpacing())); m_top_sizer->Add( m_mode_view, 0, wxALIGN_CENTER_VERTICAL); } From 30d342160ba133671af78f293a38e9724c36b7ae Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Thu, 21 May 2026 16:03:38 +0800 Subject: [PATCH 13/30] fix: update cloud error message --- src/slic3r/GUI/GUI_App.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index f2c306d28c..572743ff23 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -4874,11 +4874,11 @@ void GUI_App::on_http_error(wxCommandEvent &evt) if (provider == ORCA_CLOUD_PROVIDER && status >= 400 && code != HttpErrorVersionLimited) { wxString msg; if (!error.empty()) { - msg = wxString::Format(_L("API error (HTTP %u): %s"), status, wxString::FromUTF8(error)); + msg = wxString::Format(_L("Failed to connect to OrcaCloud.\nPlease check your network connectivity\n(HTTP %u): %s"), status, wxString::FromUTF8(error)); } else { - msg = wxString::Format(_L("API error (HTTP %u)"), status); + msg = wxString::Format(_L("Failed to connect to OrcaCloud.\nPlease check your network connectivity\n(HTTP %u)"), status); } - + if (app_config->get_bool("developer_mode")) { // Use notification manager if ImGui is ready; fall back to wxMessageBox on Linux // where ImGui may not be initialized until the user switches to the Prepare tab. @@ -4893,7 +4893,7 @@ void GUI_App::on_http_error(wxCommandEvent &evt) if (!m_is_error_shown) { m_is_error_shown = true; - wxMessageBox(msg, _L("Orca Cloud API Error"), wxOK | wxICON_ERROR, wxGetApp().mainframe); + wxMessageBox(msg, _L("Cloud Error"), wxOK | wxICON_ERROR, wxGetApp().mainframe); } } } From f3cb1992d6e6f3bca3dec6dd52ecd10dee640d24 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Thu, 21 May 2026 16:24:54 +0800 Subject: [PATCH 14/30] fix(threads): bump worker thread stack to 16MB to survive CGAL emboss (#13772) The Emboss text-cut workflow can crash with SIGBUS at a stack-guard page on macOS (and equivalent on Linux) when CGAL's Polygon_mesh_processing::corefine falls back from filtered interval arithmetic (Epick) to exact rational arithmetic (Epeck / mpq_class). On near-degenerate inputs -- coplanar triangles in the projection footprint, very thin font stems, sharp edges or seams under the text -- CGAL's Filtered_predicate_with_state cascade ends up inside Triangulation_2>::march_locate_2D, whose recursive walk plus mpq_class arithmetic frames overflows the worker's 4MB default stack. The fault address sits exactly inside the next thread's guard page, which is the textbook macOS signature. Crash trace (BambuStudio v02.07.00.55, macOS 26.4.1 arm64, embossing text into a model): __gmpn_mul_1 __gmpz_mul / __gmpq_mul CGAL::determinant Projected_orientation_with_normal_3 Filtered_predicate_with_state::operator() Triangulation_2<...>::orientation Triangulation_2<...>::march_locate_2D Surface_intersection_visitor::triangulate_intersected_faces Polygon_mesh_processing::corefine Slic3r::cut_surface Emboss::cut_surface_to_its Emboss::GenerateTextJob::get_text_mesh PlaterWorker::PlaterJob::process The thread's stack region in the report was exactly 4128K -- the default 4MB plus a small TLS overhead -- and the faulting address hit the adjacent guard page. We have one observed reproducer; the 16 MB value is chosen as 4x defensive headroom over that, not as a measured upper bound. Future heavier emboss inputs may need more. Cumulative cost on a 64-bit target. Slic3r::create_thread has 22 callsites across the codebase. Realistic peak concurrent live count is on the order of 10-15 workers (Plater UI worker, slicing process, FDM- support gizmo, STEP loader, network sync helpers, per-task sender threads in TaskManager up to MaxSendingAtSameTime, per-machine info threads in device-list dialogs, long-lived sync helpers in GUI_App). At 16 MB reserve x ~15 = ~240 MB of address-space commitment in the worst case, which is bounded on any 64-bit target. Resident memory remains proportional to actual stack depth on all three platforms: macOS / Linux mmap the thread stack and defer-commit pages on touch, and Boost.Thread on Win32 passes STACK_SIZE_PARAM_IS_A_RESERVATION to _beginthreadex (verified at libs/thread/src/win32/thread.cpp), so on Windows the bumped value is the reserve, not the initial commit. The 32-bit branch of the previous (sizeof(void*) == 4) ternary is removed: BambuStudio doesn't ship a 32-bit build today, and the literal makes the value easier to read at the callsite. (cherry picked from commit e150b502b3d2afc98b83dcc9e5720e998f9eb79a) Co-authored-by: Abdel Gomez-Perez --- src/libslic3r/Thread.hpp | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/src/libslic3r/Thread.hpp b/src/libslic3r/Thread.hpp index f9dc07456c..c407159072 100644 --- a/src/libslic3r/Thread.hpp +++ b/src/libslic3r/Thread.hpp @@ -46,11 +46,23 @@ void name_tbb_thread_pool_threads_set_locale(); template inline boost::thread create_thread(boost::thread::attributes &attrs, Fn &&fn) { - // Duplicating the stack allocation size of Thread Building Block worker - // threads of the thread pool: allocate 4MB on a 64bit system, allocate 2MB - // on a 32bit system by default. - - attrs.set_stack_size((sizeof(void*) == 4) ? (2048 * 1024) : (4096 * 1024)); + // Stack size for our worker threads. Originally duplicated TBB's pool + // default (4 MB), but the Emboss text-cut path calls into CGAL's + // Polygon_mesh_processing::corefine, which falls back from filtered + // interval arithmetic to exact rational arithmetic (mpq_class) on + // near-degenerate input, and the constrained 2D triangulation walker + // (Triangulation_2::march_locate_2D) can recurse deeply enough to + // exceed 4 MB on real models -- producing a SIGBUS at the next thread's + // stack guard page on macOS / Linux. + // + // 16 MB chosen as 4x defensive headroom over the observed crash + // threshold (n=1 reproducer at exactly 4 MB on macOS arm64). All three + // platforms defer-commit reserved stack pages: macOS / Linux mmap the + // stack and only fault in pages on touch; Boost.Thread on Win32 passes + // STACK_SIZE_PARAM_IS_A_RESERVATION to _beginthreadex, so the value is + // a reserve, not the initial commit. Resident memory therefore stays + // proportional to actual stack depth on every target. + attrs.set_stack_size(16 * 1024 * 1024); return boost::thread{attrs, std::forward(fn)}; } From b81f8657844c23f5e95567422d71d4e8d44266d7 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 21 May 2026 17:16:24 +0800 Subject: [PATCH 15/30] fix: reflect synced preset values in UI without switching tabs (#13778) After pulling the latest presets from the cloud, changed values such as Layer height kept showing the old value until the user switched tabs. Refresh the active settings tab on sync so updates appear immediately. --- src/slic3r/GUI/GUI_App.cpp | 19 +++++++++++-------- src/slic3r/GUI/MainFrame.cpp | 3 --- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 572743ff23..f68535b619 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -5849,17 +5849,20 @@ void GUI_App::reload_settings() load_pending_vendors(); preset_bundle->load_user_presets(*app_config, user_presets, ForwardCompatibilitySubstitutionRule::Enable); preset_bundle->save_user_presets(*app_config, get_delete_cache_presets()); - if (is_main_thread_active()) { + // Orca: settings changed, refresh ui to reflect the new preset values + auto refresh_synced_ui = [this] { mainframe->update_side_preset_ui(); + for (auto tab : tabs_list) { + tab->reload_config(); + tab->update_changed_ui(); + } if (plater_) plater_->sidebar().update_all_preset_comboboxes(); - } else { - CallAfter([this] { - mainframe->update_side_preset_ui(); - if (plater_) - plater_->sidebar().update_all_preset_comboboxes(); - }); - } + }; + if (is_main_thread_active()) + refresh_synced_ui(); + else + CallAfter(refresh_synced_ui); } } diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 6a8b276cce..4ad146f577 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -2788,9 +2788,6 @@ void MainFrame::init_menubar_as_editor() info_dlg.ShowModal(); return; } - if (m_plater) - m_plater->get_notification_manager()->push_notification( - into_u8(_L("Syncing presets from cloud\u2026"))); wxGetApp().restart_sync_user_preset(); }, "", nullptr, [this]() { From f203cdd682a9104c079493b8babfb141e470c38d Mon Sep 17 00:00:00 2001 From: Shantanu Joshi <82927665+theshantanujoshi@users.noreply.github.com> Date: Thu, 21 May 2026 15:48:52 +0530 Subject: [PATCH 16/30] Fix typo 'cancle' -> 'cancel' (#13769) Co-authored-by: Shantanu Joshi --- src/slic3r/GUI/DeviceErrorDialog.cpp | 4 ++-- src/slic3r/GUI/DeviceErrorDialog.hpp | 2 +- src/slic3r/GUI/FilamentMapDialog.cpp | 4 ++-- src/slic3r/GUI/FilamentMapDialog.hpp | 2 +- src/slic3r/GUI/PartSkipDialog.cpp | 4 ++-- src/slic3r/GUI/PartSkipDialog.hpp | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/slic3r/GUI/DeviceErrorDialog.cpp b/src/slic3r/GUI/DeviceErrorDialog.cpp index 008c99474d..aadc39abd9 100644 --- a/src/slic3r/GUI/DeviceErrorDialog.cpp +++ b/src/slic3r/GUI/DeviceErrorDialog.cpp @@ -175,7 +175,7 @@ void DeviceErrorDialog::init_button_list() init_button(PROBLEM_SOLVED_RESUME, _L("Problem Solved and Resume")); init_button(TURN_OFF_FIRE_ALARM, _L("Got it, Turn off the Fire Alarm.")); init_button(RETRY_PROBLEM_SOLVED, _L("Retry (problem solved)")); - init_button(CANCLE, _L("Cancel")); + init_button(CANCEL, _L("Cancel")); init_button(STOP_DRYING, _L("Stop Drying")); init_button(PROCEED, _L("Proceed")); init_button(DBL_CHECK_CANCEL, _L("Cancel")); @@ -445,7 +445,7 @@ void DeviceErrorDialog::on_button_click(ActionButton btn_id) m_obj->command_ams_control("resume"); break; } - case DeviceErrorDialog::CANCLE: { + case DeviceErrorDialog::CANCEL: { break; } case DeviceErrorDialog::STOP_DRYING: { diff --git a/src/slic3r/GUI/DeviceErrorDialog.hpp b/src/slic3r/GUI/DeviceErrorDialog.hpp index cca8af14c1..af0b850e4b 100644 --- a/src/slic3r/GUI/DeviceErrorDialog.hpp +++ b/src/slic3r/GUI/DeviceErrorDialog.hpp @@ -43,7 +43,7 @@ public: RETRY_PROBLEM_SOLVED = 34, STOP_DRYING = 35, - CANCLE = 37, + CANCEL = 37, REMOVE_CLOSE_BTN = 39, // special case, do not show close button PROCEED = 41, diff --git a/src/slic3r/GUI/FilamentMapDialog.cpp b/src/slic3r/GUI/FilamentMapDialog.cpp index 73f8041a28..a514494af1 100644 --- a/src/slic3r/GUI/FilamentMapDialog.cpp +++ b/src/slic3r/GUI/FilamentMapDialog.cpp @@ -215,7 +215,7 @@ FilamentMapDialog::FilamentMapDialog(wxWindow *parent, main_sizer->Add(bottom_panel, 0, wxEXPAND); m_ok_btn->Bind(wxEVT_BUTTON, &FilamentMapDialog::on_ok, this); - m_cancel_btn->Bind(wxEVT_BUTTON, &FilamentMapDialog::on_cancle, this); + m_cancel_btn->Bind(wxEVT_BUTTON, &FilamentMapDialog::on_cancel, this); SetEscapeId(wxID_CANCEL); Bind(wxEVT_CHAR_HOOK, [this](wxKeyEvent& e) { if (e.GetKeyCode() == WXK_ESCAPE) { @@ -286,7 +286,7 @@ void FilamentMapDialog::on_ok(wxCommandEvent &event) EndModal(wxID_OK); } -void FilamentMapDialog::on_cancle(wxCommandEvent &event) { EndModal(wxID_CANCEL); } +void FilamentMapDialog::on_cancel(wxCommandEvent &event) { EndModal(wxID_CANCEL); } void FilamentMapDialog::update_panel_status(PageType page) { diff --git a/src/slic3r/GUI/FilamentMapDialog.hpp b/src/slic3r/GUI/FilamentMapDialog.hpp index bafc6ab3f2..3272f203b3 100644 --- a/src/slic3r/GUI/FilamentMapDialog.hpp +++ b/src/slic3r/GUI/FilamentMapDialog.hpp @@ -60,7 +60,7 @@ public: void set_modal_btn_labels(const wxString& left_label, const wxString& right_label); private: void on_ok(wxCommandEvent &event); - void on_cancle(wxCommandEvent &event); + void on_cancel(wxCommandEvent &event); void on_switch_mode(wxCommandEvent &event); void on_checkbox(wxCommandEvent &event); diff --git a/src/slic3r/GUI/PartSkipDialog.cpp b/src/slic3r/GUI/PartSkipDialog.cpp index 12a794cfe2..87d8b714b6 100644 --- a/src/slic3r/GUI/PartSkipDialog.cpp +++ b/src/slic3r/GUI/PartSkipDialog.cpp @@ -824,7 +824,7 @@ bool PartSkipDialog::IsAllChecked() return true; } -bool PartSkipDialog::IsAllCancled() +bool PartSkipDialog::IsAllCanceled() { for (auto &[part_id, part_state] : m_parts_state) { if (part_state == PartState::psChecked) return false; @@ -851,7 +851,7 @@ void PartSkipDialog::OnAllCheckbox(wxCommandEvent &event) void PartSkipDialog::UpdateApplyButtonStatus() { - if (IsAllCancled()) { + if (IsAllCanceled()) { m_apply_btn->SetStyle(ButtonStyle::Regular, ButtonType::Choice); m_apply_btn->SetToolTip(_L("Nothing selected")); m_enable_apply_btn = false; diff --git a/src/slic3r/GUI/PartSkipDialog.hpp b/src/slic3r/GUI/PartSkipDialog.hpp index 4f0b5bf07f..95eba9f24d 100644 --- a/src/slic3r/GUI/PartSkipDialog.hpp +++ b/src/slic3r/GUI/PartSkipDialog.hpp @@ -153,7 +153,7 @@ private: void UpdateDialogUI(); void UpdateApplyButtonStatus(); bool IsAllChecked(); - bool IsAllCancled(); + bool IsAllCanceled(); void OnRetryButton(wxCommandEvent &event); void OnAllCheckbox(wxCommandEvent &event); From bbaa5b761a9a4243d9d267a1a7a22ff0d43d2352 Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Thu, 21 May 2026 19:02:16 +0800 Subject: [PATCH 17/30] fix: h2d camera liveview (#13779) --- src/slic3r/Utils/BBLCloudServiceAgent.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/slic3r/Utils/BBLCloudServiceAgent.cpp b/src/slic3r/Utils/BBLCloudServiceAgent.cpp index e538991064..2c17d117fc 100644 --- a/src/slic3r/Utils/BBLCloudServiceAgent.cpp +++ b/src/slic3r/Utils/BBLCloudServiceAgent.cpp @@ -50,7 +50,10 @@ std::map BBLCloudServiceAgent::get_extra_header() { std::map extra_headers; extra_headers.emplace("X-BBL-Client-Type", "slicer"); - extra_headers.emplace("X-BBL-Client-Name", SLIC3R_APP_NAME); + + // Unable to get camera live view when the printer is connected to cloud for H2D + extra_headers.emplace("X-BBL-Client-Name", "BambuStudio"); + extra_headers.emplace("X-BBL-Client-Version", GUI::wxGetApp().get_bbl_client_version()); #if defined(__WINDOWS__) #ifdef _M_X64 From ffa294b29b12891116f52334641fbf3a69291727 Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Fri, 22 May 2026 00:26:34 +0800 Subject: [PATCH 18/30] fix: set a grace period for 401 api calls (#13781) * fix: set a grace period for 401 api calls * fix --- src/slic3r/GUI/GUI_App.cpp | 28 +++++++++++++++++++--------- src/slic3r/GUI/GUI_App.hpp | 1 + 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index f68535b619..3fd5593501 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -4846,17 +4846,23 @@ void GUI_App::on_http_error(wxCommandEvent &evt) if (status == 401) { if (m_agent) { if (m_agent->is_user_login(provider)) { - BOOST_LOG_TRIVIAL(warning) << "logout: http error 401."; - this->request_user_logout(provider); + if (std::chrono::steady_clock::now() - m_last_401_error_time > 30s) { + BOOST_LOG_TRIVIAL(warning) << "logout: http error 401."; + this->request_user_logout(provider); - if (!m_show_http_error_msgdlg) { - MessageDialog msg_dlg(nullptr, _L("Login information expired. Please login again."), "", wxAPPLY | wxOK); - m_show_http_error_msgdlg = true; - auto modal_result = msg_dlg.ShowModal(); - if (modal_result == wxOK || modal_result == wxCLOSE) { - m_show_http_error_msgdlg = false; - return; + if (!m_show_http_error_msgdlg) { + MessageDialog msg_dlg(nullptr, _L("Login information expired. Please login again."), "", wxAPPLY | wxOK); + m_show_http_error_msgdlg = true; + auto modal_result = msg_dlg.ShowModal(); + if (modal_result == wxOK || modal_result == wxCLOSE) { + m_show_http_error_msgdlg = false; + return; + } } + + m_last_401_error_time = std::chrono::steady_clock::now(); + } else { + BOOST_LOG_TRIVIAL(warning) << "401 encountered within grace period, suppressing logout"; } } } @@ -4931,6 +4937,10 @@ void GUI_App::on_user_login_handle(wxCommandEvent &evt) std::string provider = evt.GetString().ToStdString(); if (provider.empty()) provider = ORCA_CLOUD_PROVIDER; + // Reset 401 grace period so transient token-propagation 401s + // during login warmup don't trigger immediate logout. + m_last_401_error_time = std::chrono::steady_clock::now(); + m_agent->connect_server(); // get machine list DeviceManager* dev = Slic3r::GUI::wxGetApp().getDeviceManager(); diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index 7244425cfb..6a5dd0315d 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -326,6 +326,7 @@ private: bool m_adding_script_handler { false }; bool m_side_popup_status{false}; bool m_show_http_error_msgdlg{false}; + std::chrono::steady_clock::time_point m_last_401_error_time; bool m_show_error_msgdlg{false}; wxString m_info_dialog_content; HttpServer m_http_server; From 7aeb26280d6687182c7a05de35165bb8b20b7519 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 22 May 2026 01:15:54 +0800 Subject: [PATCH 19/30] Guard cloud logout on tagged HTTP errors --- src/slic3r/GUI/GUI_App.cpp | 4 ++-- src/slic3r/GUI/GUI_App.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 3fd5593501..d9172510b6 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -4803,7 +4803,7 @@ void GUI_App::handle_http_error(unsigned int status, std::string body, const std void GUI_App::on_http_error(wxCommandEvent &evt) { int status = evt.GetInt(); - std::string provider = ORCA_CLOUD_PROVIDER; + std::string provider = ""; std::string body_str; // Extract provider and body from event data @@ -4845,7 +4845,7 @@ void GUI_App::on_http_error(wxCommandEvent &evt) // request login if (status == 401) { if (m_agent) { - if (m_agent->is_user_login(provider)) { + if (!provider.empty() && m_agent->is_user_login(provider)) { if (std::chrono::steady_clock::now() - m_last_401_error_time > 30s) { BOOST_LOG_TRIVIAL(warning) << "logout: http error 401."; this->request_user_logout(provider); diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index 6a5dd0315d..5b6bcc6581 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -494,7 +494,7 @@ public: void request_open_project(std::string project_id); void request_remove_project(std::string project_id); - void handle_http_error(unsigned int status, std::string body, const std::string& provider = ORCA_CLOUD_PROVIDER); + void handle_http_error(unsigned int status, std::string body, const std::string& provider = ""); void on_http_error(wxCommandEvent &evt); void on_update_machine_list(wxCommandEvent& evt); void on_user_login(wxCommandEvent &evt); From 09c4ae3d66b4591d2c5c5ef88e4e1cb2fab0c6f5 Mon Sep 17 00:00:00 2001 From: Heiko Liebscher Date: Thu, 21 May 2026 19:35:22 +0200 Subject: [PATCH 20/30] Update German localization for OrcaSlicer (#13785) - Added missing translations for various UI elements and messages. - Improved existing translations for clarity and accuracy. - Ensured consistency in terminology across the localization file. --- localization/i18n/de/OrcaSlicer_de.po | 420 +++++++++++++++++++------- 1 file changed, 305 insertions(+), 115 deletions(-) diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 680266959a..d0cab847d9 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -535,7 +535,7 @@ msgid "Drag" msgstr "Ziehen" msgid "Move cut line" -msgstr "" +msgstr "Schnittlinie bewegen" msgid "Draw cut line" msgstr "Schnittlinie zeichnen" @@ -835,7 +835,7 @@ msgid "Embossing actions" msgstr "Geprägte Aktionen" msgid "Position on surface" -msgstr "" +msgstr "Position auf Oberfläche" msgid "Emboss" msgstr "Prägen" @@ -1911,30 +1911,32 @@ msgstr "Datenschutzrichtlinien-Update" #, c-format, boost-format msgid "your Bambu Cloud profile (user ID: \"%s\")" -msgstr "" +msgstr "dein Bambu Cloud Profil (Benutzer-ID: \"%s\")" msgid "your default profile" -msgstr "" +msgstr "dein Standardprofil" #, c-format, boost-format msgid "a user profile (folder: \"%s\")" -msgstr "" +msgstr "ein Benutzerprofil (Ordner: \"%s\")" #, c-format, boost-format msgid "" "Existing user presets were found in %s.\n" "Do you want to migrate them to your OrcaCloud profile?\n" "This will copy your presets so they are available under your new account." -msgstr "" +msgstr "Es wurden vorhandene Benutzerprofile in %s gefunden.\nMöchten Sie diese in Ihr OrcaCloud-Profil migrieren?\nDies kopiert Ihre Profile, sodass sie unter Ihrem neuen Konto verfügbar sind." msgid "Migrate User Presets" -msgstr "" +msgstr "Benutzerprofile migrieren" #, c-format, boost-format msgid "" "Failed to migrate user presets:\n" "%s" msgstr "" +"Fehler bei der Migration der Benutzerprofile:\n" +"%s" msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " @@ -1959,7 +1961,7 @@ msgstr "" #, c-format, boost-format msgid "%s has been downloaded." -msgstr "" +msgstr "%s wurde heruntergeladen." #, c-format, boost-format msgid "Bundle %s is no longer available." @@ -1967,14 +1969,14 @@ msgstr "" #, c-format, boost-format msgid "Bundle %s access is unauthorized." -msgstr "" +msgstr "Zugriff auf Bundle %s ist nicht autorisiert." msgid "Loading user preset" msgstr "Benutzerprofil wird geladen" #, c-format, boost-format msgid "%s has been removed." -msgstr "" +msgstr "%s wurde entfernt." msgid "Switching application language" msgstr "Wechsel der Sprache" @@ -2221,7 +2223,7 @@ msgid "Support Enforcer" msgstr "Stützverstärker" msgid "Change part type" -msgstr "" +msgstr "Ändere den Teile Type" msgid "Set as an individual object" msgstr "Als eigenes Objekt definieren" @@ -2240,10 +2242,10 @@ msgid "Printable" msgstr "Druckbar" msgid "Auto Drop" -msgstr "" +msgstr "Automatisch ablegen" msgid "Automatically drops the selected object to the build plate" -msgstr "" +msgstr "Legt das ausgewählte Objekt automatisch auf die Bauplatte" msgid "Fix model" msgstr "Modell reparieren" @@ -2526,7 +2528,7 @@ msgid "Set Filament for selected items" msgstr "Filament für ausgewählte Elemente festlegen" msgid "Automatically snaps the selected object to the build plate" -msgstr "" +msgstr "Legt das ausgewählte Objekt automatisch auf die Bauplatte" msgid "Unlock" msgstr "Entsperren" @@ -2829,7 +2831,7 @@ msgid "Brim" msgstr "Umrandung" msgid "Object/Part Settings" -msgstr "" +msgstr "Objekt-/Teileinstellungen" msgid "Reset parameter" msgstr "Parameter zurücksetzen" @@ -3544,6 +3546,14 @@ msgid "" "enhancements. Each project carried the work of its predecessors forward, " "crediting those who came before." msgstr "" +"Die Open-Source-Slicing-Software steht auf einer Tradition der Zusammenarbeit " +"und Anerkennung. Slic3r, erstellt von Alessandro Ranellucci und der RepRap-" +"Gemeinschaft, legte den Grundstein. PrusaSlicer von Prusa Research baute auf " +"dieser Arbeit auf, Bambu Studio wurde von PrusaSlicer verzweigt und " +"SuperSlicer erweiterte es mit gemeinschaftsgetriebenen Verbesserungen. Jedes " +"Projekt trug die Arbeit seiner Vorgänger weiter und würdigte diejenigen, die " +"das zuvor erbracht haben." + msgid "" "OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, " @@ -3551,12 +3561,20 @@ msgid "" "introducing advanced calibration tools, precise wall and seam control and " "hundreds of other features." msgstr "" +"OrcaSlicer begann in diesem gleichen Geist, indem es von PrusaSlicer, " +"BambuStudio, SuperSlicer und CuraSlicer lernte. Aber es hat sich seitdem weit " +"über seine Ursprünge hinaus entwickelt - mit fortschrittlichen Kalibrierungswerkzeugen, " +"präziser Wand- und Nahtkontrolle und Hunderten von anderen Funktionen." + msgid "" "Today, OrcaSlicer is the most widely used and actively developed open-source " "slicer in the 3D printing community. Many of its innovations have been " "adopted by other slicers, making it a driving force for the entire industry." msgstr "" +"Heute ist OrcaSlicer der am weitesten verbreitete und aktiv entwickelte Open-Source-" +"Slicer in der 3D-Druck-Community. Viele seiner Innovationen wurden von anderen " +"Slicern übernommen und treiben die gesamte Industrie voran." msgid "Version" msgstr "Version" @@ -4338,6 +4356,9 @@ msgid "" "\n" "The first layer height will be reset to 0.2." msgstr "" +"Eine anfängliche Schichthöhe von Null ist ungültig.\n" +"\n" +"Die Höhe der ersten Schicht wird auf 0,2 zurückgesetzt." msgid "" "This setting is only used for model size tunning with small value in some " @@ -4905,7 +4926,7 @@ msgid "Range" msgstr "Reichweite" msgid "Empty string" -msgstr "" +msgstr "Leere Zeichenfolge" msgid "Value is out of range." msgstr "Wert ist außerhalb der Reichweite." @@ -4987,7 +5008,7 @@ msgid "Acceleration" msgstr "Beschleunigung" msgid "Jerk" -msgstr "" +msgstr "Ruck" msgid "Fan Speed" msgstr "Lüftergeschwindigkeit" @@ -5137,10 +5158,10 @@ msgid "Color: " msgstr "Farbe: " msgid "Acceleration: " -msgstr "" +msgstr "Beschleunigung: " msgid "Jerk: " -msgstr "" +msgstr "Ruck: " msgid "PA: " msgstr "PA: " @@ -5274,10 +5295,10 @@ msgid "Actual Speed (mm/s)" msgstr "Aktuelle Geschwindigkeit (mm/s)" msgid "Acceleration (mm/s²)" -msgstr "" +msgstr "Beschleunigung (mm/s²)" msgid "Jerk (mm/s)" -msgstr "" +msgstr "Ruck (mm/s)" msgid "Fan Speed (%)" msgstr "Lüftergeschwindigkeit (%)" @@ -5310,7 +5331,7 @@ msgid "Filament change times" msgstr "Filamentwechselzeiten" msgid "Tool changes" -msgstr "" +msgstr "Werkzeugwechsel" msgid "Color change" msgstr "Farbwechsel" @@ -5404,10 +5425,10 @@ msgid "Sequence" msgstr "Reihenfolge" msgid "Object Selection" -msgstr "" +msgstr "Objektauswahl" msgid "Part Selection" -msgstr "" +msgstr "Teilauswahl" msgid "number keys" msgstr "Nummerntasten" @@ -5896,7 +5917,7 @@ msgid "Show Tip of the Day" msgstr "Tipp des Tages anzeigen" msgid "Check for Updates" -msgstr "" +msgstr "Nach Updates suchen" msgid "Open Network Test" msgstr "Netzwerktest öffnen" @@ -6157,7 +6178,7 @@ msgid "View" msgstr "Ansicht" msgid "Preset Bundle" -msgstr "" +msgstr "Vorlagen-Bundle" msgid "Help" msgstr "Hilfe" @@ -6199,7 +6220,7 @@ msgid "VFA" msgstr "VFA" msgid "Calibration Guide" -msgstr "" +msgstr "Kalibrierungsanleitung" msgid "&Open G-code" msgstr "&Öffne G-Code" @@ -6319,6 +6340,12 @@ msgid "" "2. The Filament presets\n" "3. The Printer presets" msgstr "" +"Möchten Sie Ihre persönlichen Daten von Orca Cloud synchronisieren?\n" +"Es enthält die folgenden Informationen:\n" +"1. Die Prozessvoreinstellungen\n" +"2. Die Filamentvoreinstellungen\n" +"3. Die Druckervoreinstellungen" + msgid "Synchronization" msgstr "Synchronisierung" @@ -6342,6 +6369,8 @@ msgid "" "The player is not loaded because the GStreamer GTK video sink is missing or " "failed to initialize." msgstr "" +"Der Player ist nicht geladen, weil der GStreamer GTK Video-Sink fehlt oder die " +"Initialisierung fehlgeschlagen ist." msgid "Please confirm if the printer is connected." msgstr "Bitte bestätigen Sie, ob der Drucker verbunden ist." @@ -7261,10 +7290,10 @@ msgid "Model file downloaded." msgstr "Modelldatei heruntergeladen." msgid "Shared profiles may be available for this printer." -msgstr "" +msgstr "Für diesen Drucker sind möglicherweise freigegebene Profile verfügbar." msgid "Browse shared profiles" -msgstr "" +msgstr "Freigegebene Profile durchsuchen" msgid "Serious warning:" msgstr "Wichtige Warnung:" @@ -7369,7 +7398,7 @@ msgid "Spaghetti Detection" msgstr "Spaghettierkennung" msgid "Detect spaghetti failures (scattered lose filament)." -msgstr "" +msgstr "Erkennen von Spaghetti-Fehlern (verstreutes lose Filament)." msgid "Purge Chute Pile-Up Detection" msgstr "Erkennung von Abfallstau im Reinigungsrutsche" @@ -7480,7 +7509,7 @@ msgid "Objects" msgstr "Objekte" msgid "Cycle settings visibility" -msgstr "" +msgstr "Sichtbarkeit der Einstellungen wechseln" msgid "Compare presets" msgstr "Profile vergleichen" @@ -7787,9 +7816,10 @@ msgstr "" msgid "" "The 3MF file was generated by an older version, loading geometry data only." msgstr "" +"Die 3MF-Datei wurde von einer älteren Version erstellt, es werden nur die Geometriedaten geladen." msgid "The 3MF file was generated by BambuStudio, loading geometry data only." -msgstr "" +msgstr "Die 3MF-Datei wurde von BambuStudio erstellt, es werden nur die Geometriedaten geladen." msgid "" "This project was created with an OrcaSlicer 2.3.1-alpha and uses infill " @@ -7838,10 +7868,15 @@ msgid "" "The 3MF was created by BambuStudio (version %s), which is newer than the " "compatible version %s. Some settings may not be fully compatible." msgstr "" +"Die 3MF wurde von BambuStudio (Version %s) erstellt, die neuer ist als die " +"kompatible Version %s. Einige Einstellungen sind möglicherweise nicht " +"vollständig kompatibel." msgid "" "The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer." msgstr "" +"Die 3MF wurde von BambuStudio erstellt. Einige Einstellungen können von " +"OrcaSlicer abweichen." msgid "Invalid values found in the 3MF:" msgstr "Ungültige Werte in der 3MF-Datei gefunden:" @@ -8010,10 +8045,10 @@ msgid "The selected object couldn't be split." msgstr "Das ausgewählte Objekt konnte nicht geteilt werden." msgid "Disable Auto-Drop to preserve z positioning?\n" -msgstr "" +msgstr "Auto-Drop deaktivieren, um die Z-Positionierung beizubehalten?\n" msgid "Object with floating parts was detected" -msgstr "" +msgstr "Objekt mit schwebenden Teilen erkannt" msgid "Another export job is running." msgstr "Ein weiterer Exportauftrag läuft gerade." @@ -8612,15 +8647,17 @@ msgid "Show the splash screen during startup." msgstr "Zeige den Splash-Screen beim Start." msgid "Show shared profiles notification" -msgstr "" +msgstr "Benachrichtigung für geteilte Profile anzeigen" msgid "" "Show a notification with a link to browse shared profiles when the selected " "printer is changed." msgstr "" +"Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten " +"Profilen an, wenn der ausgewählte Drucker geändert wird." msgid "Use window buttons on left side" -msgstr "" +msgstr "Windows Taste auf der linken Seite verwenden" msgid "(Requires restart)" msgstr "(Erfordert Neustart)" @@ -8887,6 +8924,10 @@ msgid "" "the transmission of data to Bambu's cloud services too. Users who don't use " "BBL machines or use LAN mode only can safely turn on this function." msgstr "" +"Dies deaktiviert alle Cloud-Dienste, z.B. Orca Cloud und Bambu Cloud. Dies " +"stoppt auch die Übertragung von Daten an die Cloud-Dienste von Bambu. Benutzer, " +"die keine BBL-Maschinen verwenden oder nur den LAN-Modus nutzen, können diese " +"Funktion sicher aktivieren." msgid "Network test" msgstr "Netzwerktest" @@ -8895,15 +8936,17 @@ msgid "Test" msgstr "Test" msgid "Cloud Providers" -msgstr "" +msgstr "Cloud-Anbieter" msgid "Enable Bambu Cloud" -msgstr "" +msgstr "Bambu Cloud aktivieren" msgid "" "Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu " "login section appears on the homepage." msgstr "" +"Erlaubt das Anmelden bei Bambu Cloud neben Orca Cloud. Wenn aktiviert, erscheint " +"ein Bambu-Login-Bereich auf der Startseite." msgid "Update & sync" msgstr "Aktualisieren & synchronisieren" @@ -9190,7 +9233,7 @@ msgid "Project-inside presets" msgstr "Projektinternes Profil" msgid "Bundle presets" -msgstr "" +msgstr "Gebündelte Profile" msgid "System" msgstr "System" @@ -9799,6 +9842,9 @@ msgid "" "type in the slicing file. Please make sure you have installed the correct " "filament in the external spool." msgstr "" +"Der Typ des externen Filaments ist unbekannt oder stimmt nicht mit dem " +"Filamenttyp in der Slicing-Datei überein. Bitte stellen Sie sicher, dass Sie " +"das richtige Filament in der externen Spule installiert haben." msgid "Please refer to Wiki before use->" msgstr "Bitte lesen Sie vor der Verwendung das Wiki->" @@ -10045,6 +10091,8 @@ msgid "" "Enabling both precise Z height and the prime tower may cause slicing errors. " "Do you still want to enable?" msgstr "" +"Das Aktivieren von sowohl präziser Z-Höhe als auch Reinigungsturm kann zu " +"Slicing-Fehlern führen. Möchten Sie trotzdem aktivieren?" msgid "" "A prime tower is required for clumping detection. There may be flaws on the " @@ -10058,6 +10106,8 @@ msgid "" "Enabling both precise Z height and the prime tower may cause slicing errors. " "Do you still want to enable precise Z height?" msgstr "" +"Das Aktivieren von sowohl präziser Z-Höhe als auch Reinigungsturm kann zu " +"Slicing-Fehlern führen. Möchten Sie trotzdem die präzise Z-Höhe aktivieren?" msgid "" "A prime tower is required for smooth timelapse. There may be flaws on the " @@ -10610,7 +10660,7 @@ msgid "Normal" msgstr "Normal" msgid "Resonance Compensation" -msgstr "" +msgstr "Resonanzkompensation" msgid "Resonance Avoidance Speed" msgstr "Resonanzvermeidungs-Geschwindigkeit" @@ -10622,12 +10672,14 @@ msgid "" "The frequency of the anti-vibration signal will correspond to the natural " "frequency of the frame." msgstr "" +"Die Frequenz des Antivibrationssignals entspricht der Eigenfrequenz des " +"Rahmens." msgid "Damping" -msgstr "" +msgstr "Dämpfung" msgid "Damping ratio for the input shaping filter." -msgstr "" +msgstr "Dämpfungsverhältnis für den Eingangsformungsfilter." msgid "Speed limitation" msgstr "Geschwindigkeitsbegrenzung" @@ -10754,37 +10806,42 @@ msgid "" " %s max delta %d %s, current delta %d %s\n" msgstr "" + msgid "" "Some first-layer and other-layer temperature pairs exceed safety limits.\n" msgstr "" + msgid "" "\n" "Invalid pairs:\n" msgstr "" + msgid "" "\n" "You can go back to edit values, or continue if this is intentional." msgstr "" + msgid "" "\n" "\n" "Continue anyway?" msgstr "" + msgid "Temperature Safety Check" -msgstr "" +msgstr "Temperatur-Sicherheitsprüfung" msgid "Continue" msgstr "Fortsetzen" msgid "Back" -msgstr "Rückseite" +msgstr "Zurück" msgid "Don't warn again for this preset" -msgstr "" +msgstr "Nicht erneut für dieses Profil warnen" #, c-format, boost-format msgid "Left: %s" @@ -10920,7 +10977,7 @@ msgstr "" "geänderten Werte in das neue Projekt übertragen möchten." msgid "Extruder count" -msgstr "" +msgstr "Anzahl der Extruder" msgid "Capabilities" msgstr "Fähigkeiten" @@ -11099,7 +11156,7 @@ msgstr "" "um fortzufahren oder sie manuell anzupassen." msgid "—> " -msgstr "" +msgstr "—> " msgid "" "Synchronizing AMS filaments will discard your modified but unsaved filament " @@ -11370,11 +11427,15 @@ msgid "" "Native Wayland liveview requires the GStreamer GTK video sink. Please " "install the gtksink plugin for GStreamer, then restart OrcaSlicer." msgstr "" +"Native Wayland Liveview erfordert das GStreamer GTK Video Sink. Bitte installieren " +"Sie das gtksink-Plugin für GStreamer und starten Sie OrcaSlicer neu." msgid "" "Failed to initialize the native Wayland GStreamer video sink. Please check " "your GStreamer GTK plugin installation." msgstr "" +"Fehler beim Initialisieren des nativen Wayland GStreamer Video Sinks. Bitte überprüfen " +"Ihre GStreamer GTK-Plugin-Installation." msgid "" "Windows Media Player is required for this task! Do you want to enable " @@ -11394,6 +11455,8 @@ msgid "" "Missing BambuSource component registered for media playing! Please re-" "install OrcaSlicer or seek community help." msgstr "" +"Fehlende BambuSource-Komponente, die für das Abspielen von Medien registriert ist! " +"Bitte installieren Sie OrcaSlicer neu oder suchen Sie Hilfe in der Community." msgid "" "Using a BambuSource from a different install, video play may not work " @@ -11413,7 +11476,7 @@ msgstr "" "gstreamer1.0-libav zu installieren und starten Sie Orca Slicer neu?)" msgid "Cloud agent is not available. Please restart OrcaSlicer and try again." -msgstr "" +msgstr "Cloud-Agent ist nicht verfügbar. Bitte starten Sie OrcaSlicer neu und versuchen Sie es erneut." msgid "Bambu Network plug-in not detected." msgstr "Bambu Network Plugin nicht erkannt." @@ -11594,7 +11657,7 @@ msgid "Zoom out" msgstr "Verkleinern" msgid "Toggle printable for object/part" -msgstr "" +msgstr "Druckbar für Objekt/Teil umschalten" msgid "Switch between Prepare/Preview" msgstr "Zwischen Vorbereiten/ Vorschau wechseln" @@ -11686,7 +11749,7 @@ msgid "New version of Orca Slicer" msgstr "Neue Version von Orca Slicer" msgid "Check on Github" -msgstr "" +msgstr "Auf Github überprüfen" msgid "Skip this Version" msgstr "Überspringe diese Version" @@ -11854,13 +11917,13 @@ msgstr "Erweiterungsboard" #, boost-format msgid "Split into %1% parts" -msgstr "" +msgstr "In %1% Teile aufteilen" msgid "Repair finished" msgstr "Reparatur abgeschlossen" msgid "Repair failed" -msgstr "" +msgstr "Reparatur fehlgeschlagen" msgid "Repair canceled" msgstr "Reparatur abgebrochen" @@ -11908,10 +11971,10 @@ msgstr "" "hat ein fehlerhaftes Netz" msgid "Process change extrusion role G-code" -msgstr "" +msgstr "G-Code für Extrusionsrollenwechsel verarbeiten" msgid "Filament change extrusion role G-code" -msgstr "" +msgstr "G-Code für Extrusionsrollenwechsel verarbeiten" msgid "No object can be printed. Maybe too small" msgstr "" @@ -11945,15 +12008,18 @@ msgid "Flush volumes matrix do not match to the correct size!" msgstr "Reinigungsvolumen-Matrix stimmt nicht mit der korrekten Größe überein!" msgid "set_accel_and_jerk() is only supported by Klipper" -msgstr "" +msgstr "set_accel_and_jerk() wird nur von Klipper unterstützt" msgid "" "Input shaping is not supported by Marlin < 2.1.2.\n" "Check your firmware version and update your G-code flavor to ´Marlin 2´" msgstr "" +"Input Shaping wird von Marlin < 2.1.2 nicht unterstützt.\n" +"Überprüfen Sie Ihre Firmware-Version und aktualisieren Sie Ihren G-Code-Flavour " +"auf 'Marlin 2'" msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2" -msgstr "" +msgstr "Input Shaping wird nur von Klipper, RepRapFirmware und Marlin 2 unterstützt" msgid "Grouping error: " msgstr "Gruppierungsfehler: " @@ -12120,16 +12186,25 @@ msgid "" "temperature must fall within the recommended nozzle temperature range of the " "other filaments. Otherwise, nozzle clogging or printer damage may occur." msgstr "" +"Die ausgewählten Düsentemperaturen sind nicht kompatibel. Die Düsentemperatur " +"jedes Filaments muss innerhalb des empfohlenen Düsentemperaturbereichs der " +"anderen Filamente liegen. Andernfalls kann es zu Düsenverstopfungen oder " +"Druckerschäden kommen." msgid "" "Invalid recommended nozzle temperature range. The lower bound must be lower " "than the upper bound." msgstr "" +"Ungültiger empfohlener Düsentemperaturbereich. Die untere Grenze muss niedriger " +"sein als die obere Grenze." msgid "" "If you still want to print, you can enable the option in Preferences / " "Control / Slicing / Remove mixed temperature restriction." msgstr "" +"Wenn Sie trotzdem drucken möchten, können Sie die Option in Einstellungen / " +"Steuerung / Schneiden / Entfernen der gemischten Temperaturbeschränkung aktivieren." + msgid "No extrusions under current settings." msgstr "Keine Extrusion unter den aktuellen Einstellungen." @@ -12145,11 +12220,13 @@ msgid "" "Clumping detection is not supported when \"by object\" sequence is enabled." msgstr "" "Die Klumpenerkennung wird nicht unterstützt, wenn die Sequenz \"nach Objekt" -"\" " +"\" aktiviert ist." msgid "" "Enabling both precise Z height and the prime tower may cause slicing errors." msgstr "" +"Die gleichzeitige Aktivierung von präziser Z-Höhe und Reinigungsturm kann zu " +"Schneidefehlern führen." msgid "" "A prime tower is required for clumping detection; otherwise, there may be " @@ -12350,6 +12427,7 @@ msgid "" "The Hollow base pattern is not supported by this support type; Rectilinear " "will be used instead." msgstr "" +"" msgid "" "Support enforcers are used but support is not enabled. Please enable support." @@ -12534,7 +12612,7 @@ msgstr "" "Schicht, die durch diesen Wert angegeben ist." msgid "Elephant foot layers density" -msgstr "" +msgstr "Dichte der Schichten für die Elefantenfußkompensation" msgid "" "Density of internal solid infill for Elephant foot layers compensation.\n" @@ -12542,6 +12620,11 @@ msgid "" "Subsequent layers become linearly denser by the height specified in " "elefant_foot_compensation_layers." msgstr "" +"Dichte der internen festen Füllung für die Kompensation der Elefantenfuß-" +"Schichten.\n" +"Der Anfangswert für die zweite Schicht wird gesetzt.\n" +"Die nachfolgenden Schichten werden linear dichter, bis zur Höhe, die in " +"elefant_foot_compensation_layers angegeben ist." msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " @@ -13560,7 +13643,7 @@ msgstr "" "des Randes erleichtern" msgid "Brim flow ratio" -msgstr "" +msgstr "Brim-Flussverhältnis" msgid "" "This factor affects the amount of material for brims.\n" @@ -13570,6 +13653,14 @@ msgid "" "\n" "Note: The resulting value will not be affected by the first-layer flow ratio." msgstr "" +"Dieser Faktor beeinflusst die Menge des Materials für Ränder.\n" +"\n" +"Der tatsächliche Brimfluss wird berechnet, indem dieser Wert mit dem " +"Filamentflussverhältnis und, falls festgelegt, dem Objektflussverhältnis " +"multipliziert wird.\n" +"\n" +"Hinweis: Der resultierende Wert wird nicht vom Flussverhältnis der ersten " +"Schicht beeinflusst." msgid "Brim follows compensated outline" msgstr "Umrandung folgt einem kompensierten Umriss" @@ -13593,15 +13684,17 @@ msgstr "" "verschmilzt." msgid "Combine brims" -msgstr "" +msgstr "Ränder kombinieren" msgid "" "Combine multiple brims into one when they are close to each other. This can " "improve brim adhesion." msgstr "" +"Mehrere Ränder zu einem kombinieren, wenn sie nahe beieinander liegen. Dies " +"kann die Haftung des Rands verbessern." msgid "Brim ears" -msgstr "Brim Ohren" +msgstr "Brim-Ohren" msgid "Only draw brim over the sharp edges of the model." msgstr "Zeichne den Brim nur über die scharfen Kanten des Modells." @@ -13726,15 +13819,16 @@ msgstr "" msgid "" "Enable this to override the fan speed set in custom G-code during print." -msgstr "" +msgstr "Aktivieren Sie dies, um die im benutzerdefinierten G-Code während des Drucks eingestellte Lüftergeschwindigkeit zu überschreiben." + msgid "On completion" -msgstr "" +msgstr "Nach Abschluss" msgid "" "Enable this to override the fan speed set in custom G-code after print " "completion." -msgstr "" +msgstr "Aktivieren Sie dies, um die im benutzerdefinierten G-Code nach Abschluss des Drucks eingestellte Lüftergeschwindigkeit zu überschreiben." msgid "" "Speed of exhaust fan during printing. This speed will override the speed in " @@ -14167,6 +14261,13 @@ msgid "" "\n" "This option will be disabled if spiral vase mode is enabled." msgstr "" +"Die Richtung, in die die Konturwandschleifen extrudiert" +"werden, wenn man von oben nach unten schaut.\n" +"Löcher werden in die entgegengesetzte Richtung zur Kontur gedruckt," +"um die Ausrichtung mit Schichten beizubehalten, deren Konturpolygone" +"unvollständig sind und die Richtung ändern, wodurch auch teilweise die Kontur eines Lochs gebildet wird.\n" +"\n" +"Diese Option wird deaktiviert, wenn der Spiralen-Vasenmodus aktiviert ist." msgid "Counter clockwise" msgstr "Gegen den Uhrzeigersinn" @@ -14696,6 +14797,13 @@ msgid "" "Note: Experimental and incomplete feature imported from BBS. Functional for " "some profiles that already have the variable saved." msgstr "" +"Wenn aktiviert, wird der Extrusionsfluss durch den kleineren Wert begrenzt, " +"der aus der Anpassung (berechnet aus Linienbreite und Schichthöhe) und dem " +"benutzerdefinierten maximalen Fluss berechnet wird. Wenn deaktiviert, wird nur " +"der benutzerdefinierte maximale Fluss angewendet.\n" +"\n" +"Hinweis: Experimentelle und unvollständige Funktion, importiert von BBS. Funktional für " +"einige Profile, die die Variable bereits gespeichert haben." msgid "Max volumetric speed multinomial coefficients" msgstr "Maximale volumetrische Geschwindigkeits-Multinomial-Koeffizienten" @@ -14835,10 +14943,10 @@ msgstr "" "nicht gestört wird und die Qualität des Drucks erhalten bleibt." msgid "Wipe tower cooling" -msgstr "" +msgstr "Kühlung des Wipe-Turms" msgid "Temperature drop before entering filament tower" -msgstr "" +msgstr "Temperaturabfall vor dem Betreten des Filamentturms" msgid "Interface layer pre-extrusion distance" msgstr "Vorextrusionsabstand der Schnittstellenschicht" @@ -15292,12 +15400,14 @@ msgstr "" "kann die Druckbetthaftung verbessern" msgid "First layer travel" -msgstr "" +msgstr "Bewegung der ersten Schicht" msgid "" "Travel acceleration of first layer.\n" "The percentage value is relative to Travel Acceleration." msgstr "" +"Bewegungsbeschleunigung der ersten Schicht.\n" +"Der Prozentwert bezieht sich auf die Bewegungsbeschleunigung." msgid "Enable accel_to_decel" msgstr "Beschleunigung zu Verzögerung einschalten" @@ -15351,6 +15461,8 @@ msgid "" "Travel jerk of first layer.\n" "The percentage value is relative to Travel Jerk." msgstr "" +"Bewegungsruck der ersten Schicht.\n" +"Der Prozentwert bezieht sich auf den Bewegungsruck." msgid "" "Line width of the first layer. If expressed as a %, it will be computed over " @@ -15380,7 +15492,7 @@ msgid "Speed of solid infill part of the first layer." msgstr "Geschwindigkeit des massiven Füllung der ersten Schicht." msgid "First layer travel speed" -msgstr "Bewegung" +msgstr "Geschwindigkeit der ersten Schicht" msgid "Travel speed of the first layer." msgstr "Bewegungsgeschwindigkeit der ersten Schicht" @@ -15644,6 +15756,14 @@ msgid "" "Ripple: Uniform ripple pattern that ripples left and right of the original " "path. Repeating pattern, woven appearance." msgstr "" +"Rauschtyp für die Fuzzy Skin Generierung:\n" +"Klassisch: Klassisches gleichmäßiges Rauschen.\n" +"Perlin: Perlin-Rauschen, das eine konsistentere Textur ergibt.\"n" +"Billow: Ähnlich wie Perlin-Rauschen, aber klumpiger.\n" +"Ridged Multifractal: Ridged-Rauschen mit scharfen, gezackten Merkmalen. Erzeugt marmorartige Texturen.\n" +"Voronoi: Teilt die Oberfläche in Voronoi-Zellen auf und verschiebt jede um eine zufällige Menge. Erzeugt eine Patchwork-Textur.\n" +"Ripple: Gleichmäßiges Wellmuster, das sich links und rechts des ursprünglichen Pfades wellt. Wiederholendes Muster, gewobenes Aussehen." + msgid "Classic" msgstr "Klassisch" @@ -15661,7 +15781,7 @@ msgid "Voronoi" msgstr "Voronoi" msgid "Ripple" -msgstr "" +msgstr "Ripple" msgid "Fuzzy skin feature size" msgstr "Fuzzy Skin Merkmalsgröße" @@ -15695,13 +15815,13 @@ msgstr "" "Werte führen zu glatterem Rauschen." msgid "Number of ripples per layer" -msgstr "" +msgstr "Anzahl der Wellen pro Schicht" msgid "Controls how many full cycles of ripples will be added per layer." -msgstr "" +msgstr "Steuert, wie viele vollständige Wellenzyklen pro Schicht hinzugefügt werden." msgid "Ripple offset" -msgstr "" +msgstr "Wellenversatz" msgid "" "Shifts the ripple phase forward along the print path by the specified " @@ -15715,9 +15835,18 @@ msgid "" "The shift is applied once every number of layers set by Layers between " "ripple offset, so layers within the same group are printed identically." msgstr "" +"Verschiebt die Wellenphase entlang des Druckpfads um den angegebenen " +"Prozentsatz einer Wellenlänge pro Schichtperiode nach vorne.\n" +"- 0% hält jede Schicht identisch.\n" +"- 50% verschiebt das Muster um eine halbe Wellenlänge, wodurch die Phase effektiv invertiert wird.\n" +"- 100% verschiebt das Muster um eine volle Wellenlänge, wodurch die ursprüngliche Phase wiederhergestellt wird.\n" +"\n" +"Die Verschiebung wird einmal alle Anzahl von Schichten angewendet, die durch " +"Schichten zwischen Wellenversatz eingestellt ist, so dass Schichten innerhalb derselben Gruppe identisch gedruckt werden." + msgid "Layers between ripple offset" -msgstr "" +msgstr "Schichten zwischen Wellenversatz" msgid "" "Specifies how many consecutive layers share the same ripple phase before the " @@ -15730,6 +15859,15 @@ msgid "" "to 6 are shifted by the configured offset, then layers 7 to 9 return to the " "base pattern, etc." msgstr "" +"Legt fest, wie viele aufeinanderfolgende Schichten die gleiche Wellenphase " +"teilen, bevor der Versatz angewendet wird.\n" +"Beispiel:\n" +"- 1 = Schicht 1 wird mit dem Basis-Wellenmuster gedruckt, dann wird Schicht 2 " +"um den konfigurierten Versatz verschoben, dann kehrt Schicht 3 zum Basis-Muster " +"zurück, und so weiter.\n" +"- 3 = Schichten 1 bis 3 werden mit dem Basis-Wellenmuster gedruckt, dann werden " +"Schichten 4 bis 6 um den konfigurierten Versatz verschoben, dann kehren Schichten " +"7 bis 9 zum Basis-Muster zurück, usw." msgid "Filter out tiny gaps" msgstr "Filtert winzige Lücken aus" @@ -16389,7 +16527,7 @@ msgid "" "nozzle diameter." msgstr "" "Der Abstand zu den Kanten. Ein Wert von 0 setzt dies auf die Hälfte des " -"Düsen Durchmessers" +"Düsendurchmessers." msgid "Print speed of ironing lines." msgstr "Druckgeschwindigkeit der Glättlinien." @@ -16407,46 +16545,51 @@ msgid "Use a fixed absolute angle for ironing." msgstr "Verwenden Sie einen festen absoluten Winkel zum Glätten." msgid "Ironing expansion" -msgstr "" +msgstr "Glättungsausdehnung" msgid "Expand or contract the ironing area." -msgstr "" +msgstr "Erweitern oder Verkleinern des Glättbereichs." msgid "Z contouring enabled" -msgstr "" +msgstr "Z Konturierung aktiviert" msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)." -msgstr "" +msgstr "Z-Schicht-Konturierung aktivieren (auch bekannt als Z-Schicht-Anti-Aliasing)." msgid "Minimize wall height angle" -msgstr "" +msgstr "Minimale Wandhöhe Winkel" msgid "" "Reduce the height of top-surface perimeters to match the model edge height.\n" "Affects perimeters with a slope less than this angle (degrees).\n" "A reasonable value is 35. Set to 0 to disable." msgstr "" +"Reduziert die Höhe der oberen Oberflächenumrandungen, um der Modellkante zu entsprechen.\n" +"Wirkt sich auf Umrandungen mit einer Neigung unterhalb dieses Winkels (Grad) aus.\n" +"Ein vernünftiger Wert ist 35. Auf 0 setzen, um zu deaktivieren." msgid "°" msgstr "°" msgid "Don't alternate fill direction" -msgstr "" +msgstr "Füllrichtung nicht wechseln" msgid "Disable alternating fill direction when using Z contouring." -msgstr "" +msgstr "Wechsel der Füllrichtung bei Verwendung der Z-Konturierung deaktivieren." msgid "Minimum z height" -msgstr "" +msgstr "Minimale Z-Höhe" msgid "" "Minimum Z-layer height.\n" "Also controls the slicing plane." msgstr "" +"Minimale Z-Schichthöhe.\n" +"Steuert auch die Schneideebene." msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" -"Dieser G-Code wird bei jedem Schichtwechsel nach dem anheben von Z eingefügt." +"Dieser G-Code wird bei jedem Schichtwechsel nach dem Anheben von Z eingefügt." msgid "Clumping detection G-code" msgstr "Klumpen-Erkennungs-G-Code" @@ -16647,12 +16790,12 @@ msgid "Maximum speed of resonance avoidance." msgstr "Maximale Geschwindigkeit der Resonanzvermeidung." msgid "Emit input shaping" -msgstr "" +msgstr "Input Shaping ausgeben" msgid "" "Override firmware input shaping settings.\n" "If disabled, firmware settings are used." -msgstr "" +msgstr "Firmware-Einstellungen für Input Shaping überschreiben.\nWenn deaktiviert, werden die Firmware-Einstellungen verwendet." msgid "Input shaper type" msgstr "Input Shaper Typ" @@ -16662,42 +16805,43 @@ msgid "" "Default uses the firmware default settings.\n" "Disable turns off input shaping in the firmware." msgstr "" +"Wählen Sie den Input Shaper Algorithmus.\nStandardmäßig werden die Standardeinstellungen der Firmware verwendet.\nDeaktivieren schaltet die Eingangsformung in der Firmware aus." msgid "MZV" -msgstr "" +msgstr "MZV" msgid "ZV" -msgstr "" +msgstr "ZV" msgid "ZVD" -msgstr "" +msgstr "ZVD" msgid "ZVDD" -msgstr "" +msgstr "ZVDD" msgid "ZVDDD" -msgstr "" +msgstr "ZVDDD" msgid "EI" -msgstr "" +msgstr "EI" msgid "EI2" -msgstr "" +msgstr "EI2" msgid "2HUMP_EI" -msgstr "" +msgstr "2HUMP_EI" msgid "EI3" -msgstr "" +msgstr "EI3" msgid "3HUMP_EI" -msgstr "" +msgstr "3HUMP_EI" msgid "DAA" -msgstr "" +msgstr "DAA" msgid "X" -msgstr "" +msgstr "X" msgid "" "Resonant frequency for the X axis input shaper.\n" @@ -16705,15 +16849,23 @@ msgid "" "To disable input shaping, use the Disable type.\n" "RRF: X and Y values are equal." msgstr "" +"Resonanzfrequenz für den X-Achsen-Input-Shaper.\n" +"Null verwendet die Firmware-Frequenz.\n" +"Um die Eingangsformung zu deaktivieren, verwenden Sie den Typ Deaktivieren.\n" +"RRF: X- und Y-Werte sind gleich." msgid "Y" -msgstr "" +msgstr "Y" msgid "" "Resonant frequency for the Y axis input shaper.\n" "Zero will use the firmware frequency.\n" "To disable input shaping, use the Disable type." msgstr "" +"Resonanzfrequenz für den Y-Achsen-Input-Shaper.\n" +"Null verwendet die Firmware-Frequenz.\n" +"Um die Eingangsformung zu deaktivieren, verwenden Sie den Typ Deaktivieren.\n" +"RRF: X- und Y-Werte sind gleich." msgid "" "Damping ratio for the X axis input shaper.\n" @@ -16721,12 +16873,20 @@ msgid "" "To disable input shaping, use the Disable type.\n" "RRF: X and Y values are equal." msgstr "" +"Dämpfungsverhältnis für den X-Achsen-Input-Shaper.\n" +"Null verwendet das Dämpfungsverhältnis der Firmware.\n" +"Um die Eingangsformung zu deaktivieren, verwenden Sie den Typ Deaktivieren.\n" +"RRF: X- und Y-Werte sind gleich." msgid "" "Damping ratio for the Y axis input shaper.\n" "Zero will use the firmware damping ratio.\n" "To disable input shaping, use the Disable type." msgstr "" +"Dämpfungsverhältnis für den Y-Achsen-Input-Shaper.\n" +"Null verwendet das Dämpfungsverhältnis der Firmware.\n" +"Um die Eingangsformung zu deaktivieren, verwenden Sie den Typ Deaktivieren.\n" +"RRF: X- und Y-Werte sind gleich." msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " @@ -16853,10 +17013,10 @@ msgstr "" "diese Funktion zu verwenden. G-Code-Befehl: M106 P2 S(0-255)" msgid "For the first" -msgstr "" +msgstr "Für die Erste" msgid "Set special auxiliary cooling fan for the first certain layers." -msgstr "" +msgstr "Spezielle Hilfsventilatorgeschwindigkeit für die ersten bestimmten Schichten einstellen." msgid "" "Auxiliary fan speed will be ramped up linearly from layer \"For the first\" " @@ -16865,10 +17025,17 @@ msgid "" "in which case the fan will run at maximum allowed speed at layer \"For the " "first\" + 1." msgstr "" +"Die Geschwindigkeit des Hilfsventilators wird linear von der Schicht \"Für das " +"Erste\" bis zur maximalen Geschwindigkeit bei der Schicht \"Volle Ventilator-" +"geschwindigkeit bei Schicht\" erhöht.\n" +"\"Volle Ventilatorgeschwindigkeit bei Schicht\" wird ignoriert, wenn sie " +"niedriger ist als \"Für das Erste\", in diesem Fall wird der Ventilator bei " +"der Schicht \"Für das Erste\" + 1 mit maximaler Geschwindigkeit laufen." msgid "" "Special auxiliary cooling fan speed, effective only for the first x layers." msgstr "" +"Spezielle Hilfsventilatorgeschwindigkeit, nur für die ersten x Schichten wirksam." msgid "" "The lowest printable layer height for the extruder. Used to limit the " @@ -17102,12 +17269,15 @@ msgstr "" "Konfigurationseinstellungen durch Lesen von Umgebungsvariablen abrufen." msgid "Change extrusion role G-code (process)" -msgstr "" +msgstr "G-Code für den Wechsel der Extrusionsrolle (Prozess)" msgid "" "This G-code is inserted when the extrusion role is changed. It runs after " "the machine and filament extrusion role G-code." msgstr "" +"Dieser G-Code wird eingefügt, wenn die Extrusionsrolle gewechselt wird. Er " +"wird nach dem G-Code für die Maschine und die Filamentextrusionsrolle " +"ausgeführt." msgid "Printer type" msgstr "Druckertyp" @@ -17949,7 +18119,7 @@ msgstr "" "übersprungen. Dies ist nützlich für den manuellen Mehrmaterialdruck, bei dem " msgid "Wipe tower type" -msgstr "" +msgstr "Reinigungsturm-Typ" msgid "" "Choose the wipe tower implementation for multi-material prints. Type 1 is " @@ -17957,12 +18127,16 @@ msgid "" "offers better compatibility with multi-tool and MMU printers and provide " "overall better compatibility." msgstr "" +"Wählen Sie die Implementierung des Reinigungsturms für Mehrmaterialdrucke. Typ 1 " +"wird für Bambu- und Qidi-Drucker mit Filamentabschneider empfohlen. Typ 2 bietet " +"bessere Kompatibilität mit Mehrwerkzeug- und MMU-Druckern und insgesamt bessere " +"Kompatibilität." msgid "Type 1" -msgstr "" +msgstr "Typ 1" msgid "Type 2" -msgstr "" +msgstr "Typ 2" msgid "Purge in prime tower" msgstr "Reinige im Reinigungsturm" @@ -18601,12 +18775,15 @@ msgid "This G-code is inserted when the extrusion role is changed." msgstr "Dieser G-Code wird beim Wechsel der Extrusionsart eingefügt." msgid "Change extrusion role G-code (filament)" -msgstr "" +msgstr "Ändere Extrusionsart G-Code (Filament)" msgid "" "This G-code is inserted when the extrusion role is changed for the active " "filament." msgstr "" +"Dieser G-Code wird eingefügt, wenn die Extrusionsart für das aktive Filament " +"geändert wird." + msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " @@ -19220,15 +19397,17 @@ msgstr "" "Wände für die Oberfläche aktiviert sind." msgid "Maximum wall resolution" -msgstr "" +msgstr "Maximale Wandauflösung" msgid "" "This value determines the smallest wall line segment length in mm. The " "smaller you set this value, the more accurate and precise the walls will be." msgstr "" +"Dieser Wert bestimmt die kleinste Wandliniensegmentlänge in mm. Je kleiner " +"Sie diesen Wert einstellen, desto genauer und präziser werden die Wände sein." msgid "Maximum wall deviation" -msgstr "" +msgstr "Maximale Wandabweichung" msgid "" "The maximum deviation allowed when reducing the resolution for the 'Maximum " @@ -19237,6 +19416,12 @@ msgid "" "'Maximum wall resolution', so if the two conflict, 'Maximum wall deviation' " "takes precedence." msgstr "" +"Die maximale Abweichung, die bei der Reduzierung der Auflösung für die " +"Einstellung 'Maximale Wandauflösung' zulässig ist. Wenn Sie diesen Wert erhöhen, " +"wird der Druck weniger genau, aber der G-Code wird kleiner. 'Maximale Wandabweichung' " +"begrenzt 'Maximale Wandauflösung', so dass wenn die beiden in Konflikt stehen, " +"'Maximale Wandabweichung' Vorrang hat." + msgid "First layer minimum wall width" msgstr "Erste Schicht minimale Wandbreite" @@ -20021,7 +20206,7 @@ msgid "Generating infill toolpath" msgstr "Füllbewegungen generieren" msgid "Z contouring" -msgstr "" +msgstr "Z-Konturierung" msgid "Detect overhangs for auto-lift" msgstr "Erkennen der Überhänge für das automatische Anheben" @@ -20647,6 +20832,11 @@ msgid "" "temperature range of the other filaments. Otherwise, nozzle clogging or " "printer damage may occur." msgstr "" +"Die ausgewählten Düsentemperaturen sind nicht kompatibel. Bei mehrfarbigem " +"oder mehrmaterialigem Drucken muss die Düsentemperatur jedes Filaments " +"innerhalb des empfohlenen Düsentemperaturbereichs der anderen Filamente liegen. " +"Andernfalls kann es zu Düsenverstopfungen oder Schäden am Drucker kommen." + msgid "Sync AMS and nozzle information" msgstr "AMS- und Düseninformationen synchronisieren" @@ -21074,25 +21264,25 @@ msgid "NOTE: High values may cause Layer shift (>%s)" msgstr "Hinweis: Hohe Werte können zu Schichverschiebungen führen (>%s)" msgid "Flow Ratio Calibration" -msgstr "" +msgstr "Flussratenkalibrierung" msgid "Calibration Test Type" -msgstr "" +msgstr "Kalibrierungstesttyp" msgid "Pass 1 (Coarse)" -msgstr "" +msgstr "Durchgang 1 (Grob)" msgid "Pass 2 (Fine)" -msgstr "" +msgstr "Durchgang 2 (Fein)" msgid "YOLO (Recommended)" msgstr "YOLO (Empfohlen)" msgid "YOLO (Perfectionist)" -msgstr "" +msgstr "YOLO (Perfektionist)" msgid "Top Surface Pattern" -msgstr "" +msgstr "Oberflächenmuster" msgid "Send G-code to printer host" msgstr "Senden Sie G-Code an den Drucker-Host" @@ -22710,7 +22900,7 @@ msgid "Global settings" msgstr "Globale Einstellungen" msgid "Video tutorial" -msgstr "" +msgstr "Video-Tutorial" msgid "(Sync with printer)" msgstr "(Mit Drucker synchronisieren)" From 10ee22dd62df3496552f78e4ca9b9516f9ac1e88 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 22 May 2026 02:25:03 +0800 Subject: [PATCH 21/30] update locale --- localization/i18n/OrcaSlicer.pot | 461 ++++++++--- localization/i18n/ca/OrcaSlicer_ca.po | 627 ++++++++++---- localization/i18n/cs/OrcaSlicer_cs.po | 584 +++++++++---- localization/i18n/de/OrcaSlicer_de.po | 856 +++++++++++++------- localization/i18n/en/OrcaSlicer_en.po | 475 ++++++++--- localization/i18n/es/OrcaSlicer_es.po | 635 +++++++++++---- localization/i18n/fr/OrcaSlicer_fr.po | 613 ++++++++++---- localization/i18n/hu/OrcaSlicer_hu.po | 587 ++++++++++---- localization/i18n/it/OrcaSlicer_it.po | 561 +++++++++---- localization/i18n/ja/OrcaSlicer_ja.po | 561 +++++++++---- localization/i18n/ko/OrcaSlicer_ko.po | 562 +++++++++---- localization/i18n/lt/OrcaSlicer_lt.po | 606 ++++++++++---- localization/i18n/nl/OrcaSlicer_nl.po | 621 ++++++++++---- localization/i18n/pl/OrcaSlicer_pl.po | 567 +++++++++---- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 597 ++++++++++---- localization/i18n/ru/OrcaSlicer_ru.po | 636 +++++++++++---- localization/i18n/sv/OrcaSlicer_sv.po | 620 ++++++++++---- localization/i18n/tr/OrcaSlicer_tr.po | 586 ++++++++++---- localization/i18n/uk/OrcaSlicer_uk.po | 573 +++++++++---- localization/i18n/vi/OrcaSlicer_vi.po | 594 ++++++++++---- localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 585 +++++++++---- localization/i18n/zh_TW/OrcaSlicer_zh_TW.po | 567 +++++++++---- 22 files changed, 9455 insertions(+), 3619 deletions(-) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 04ce132983..80c8acb881 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: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -111,7 +111,7 @@ msgstr "" msgid "On highlighted overhangs only" msgstr "" -msgid "Erase all painting" +msgid "Erase all" msgstr "" msgid "Highlight overhang areas" @@ -181,6 +181,9 @@ msgstr "" msgid "No auto support" msgstr "" +msgid "Done" +msgstr "" + msgid "Support Generated" msgstr "" @@ -330,6 +333,12 @@ msgstr "" msgid "Fixed step drag" msgstr "" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "" @@ -478,6 +487,18 @@ msgstr "" msgid "Build Volume" msgstr "" +msgid "Multiple" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "" + msgid "Part" msgstr "" @@ -580,12 +601,6 @@ msgstr "" msgid "Add connectors" msgstr "" -msgid "Reset cut" -msgstr "" - -msgid "Reset cutting plane and remove connectors" -msgstr "" - msgid "Upper part" msgstr "" @@ -604,6 +619,9 @@ msgstr "" msgid "Cut to parts" msgstr "" +msgid "Reset cutting plane and remove connectors" +msgstr "" + msgid "Perform cut" msgstr "" @@ -830,6 +848,9 @@ msgstr "" msgid "Advanced" msgstr "" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1457,15 +1478,6 @@ msgid "" "feature 2 has been feature 1" msgstr "" -msgid "Warning: please select Plane's feature." -msgstr "" - -msgid "Warning: please select Point's or Circle's feature." -msgstr "" - -msgid "Warning: please select two different meshes." -msgstr "" - msgid "Copy to clipboard" msgstr "" @@ -1517,6 +1529,15 @@ msgstr "" msgid "Point and point assembly" msgstr "" +msgid "Warning: please select two different meshes." +msgstr "" + +msgid "Warning: please select Plane's feature." +msgstr "" + +msgid "Warning: please select Point's or Circle's feature." +msgstr "" + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1693,6 +1714,18 @@ msgstr "" msgid "Info" msgstr "" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1749,6 +1782,23 @@ msgid "" "version before it can be used normally." msgstr "" +#, possible-c-format, possible-boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "" @@ -2281,10 +2331,10 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Delete this filament" +msgid "Merge with" msgstr "" -msgid "Merge with" +msgid "Delete this filament" msgstr "" msgid "Select All" @@ -4359,9 +4409,6 @@ msgstr "" msgid "Proceed" msgstr "" -msgid "Done" -msgstr "" - msgid "Retry" msgstr "" @@ -4617,33 +4664,6 @@ msgstr "" msgid "Mixed" msgstr "" -msgid "mm/s" -msgstr "" - -msgid "mm/s²" -msgstr "" - -msgid "Flow rate" -msgstr "" - -msgid "mm³/s" -msgstr "" - -msgid "Fan speed" -msgstr "" - -msgid "°C" -msgstr "" - -msgid "Time" -msgstr "" - -msgid "Actual speed profile" -msgstr "" - -msgid "Speed: " -msgstr "" - msgid "Height: " msgstr "" @@ -4677,6 +4697,33 @@ msgstr "" msgid "PA: " msgstr "" +msgid "mm/s" +msgstr "" + +msgid "mm/s²" +msgstr "" + +msgid "mm³/s" +msgstr "" + +msgid "Flow rate" +msgstr "" + +msgid "Fan speed" +msgstr "" + +msgid "°C" +msgstr "" + +msgid "Time" +msgstr "" + +msgid "Speed: " +msgstr "" + +msgid "Actual speed profile" +msgstr "" + msgid "Statistics of All Plates" msgstr "" @@ -4988,9 +5035,6 @@ msgstr "" msgid "Arrange options" msgstr "" -msgid "Spacing" -msgstr "" - msgid "0 means auto spacing." msgstr "" @@ -5125,7 +5169,7 @@ msgstr "" msgid "Size:" msgstr "" -#, possible-c-format, possible-boost-format +#, possible-boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5503,6 +5547,15 @@ msgstr "" msgid "Export" msgstr "" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "" @@ -5628,6 +5681,9 @@ msgstr "" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "" @@ -7997,19 +8053,33 @@ msgstr "" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" -msgid "Swap pan and rotate mouse buttons" -msgstr "" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" - msgid "Reverse mouse zoom" msgstr "" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "" @@ -8032,6 +8102,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "" @@ -8172,6 +8295,15 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "" @@ -9129,8 +9261,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 "" msgid "" @@ -9701,6 +9833,32 @@ msgstr "" msgid "Discard" msgstr "" +msgid "the new profile" +msgstr "" + +#, possible-boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, possible-boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, possible-boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "" @@ -10204,6 +10362,9 @@ msgstr "" msgid "Login" msgstr "" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "" @@ -10240,6 +10401,18 @@ msgstr "" msgid "Global shortcuts" msgstr "" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -10693,9 +10866,6 @@ msgstr "" msgid "Internal Bridge" msgstr "" -msgid "Multiple" -msgstr "" - #, possible-boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -12073,9 +12243,6 @@ msgid "" "external-facing bridges\n" msgstr "" -msgid "Disabled" -msgstr "" - msgid "External bridge only" msgstr "" @@ -12569,6 +12736,18 @@ msgstr "" msgid "Auto For Match" msgstr "" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "" @@ -12974,6 +13153,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "" @@ -13124,8 +13314,8 @@ msgid "mm/s² or %" msgstr "" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" msgid "" @@ -13243,10 +13433,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 "" msgid "layer" @@ -13649,6 +13839,30 @@ msgid "" "Set to 0 to deactivate." msgstr "" +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "" @@ -14963,8 +15177,8 @@ msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -15260,6 +15474,19 @@ msgstr "" msgid "Enable filament ramming" msgstr "" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "" @@ -15547,10 +15774,11 @@ msgid "Threshold angle" msgstr "" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" msgid "Threshold overlap" @@ -15685,8 +15913,8 @@ msgstr "" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -16469,8 +16697,8 @@ msgid "Debug level" msgstr "" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" msgid "Enable timelapse for print" @@ -18016,8 +18244,8 @@ msgid "" 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 "" @@ -18173,6 +18401,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "" @@ -18380,32 +18620,6 @@ msgid "" "Please click the Sync button above and restart the calibration." msgstr "" -#, possible-c-format, possible-boost-format -msgid "nozzle size in preset: %d" -msgstr "" - -#, possible-c-format, possible-boost-format -msgid "nozzle size memorized: %d" -msgstr "" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" - -#, possible-c-format, possible-boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "" - -#, possible-c-format, possible-boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" - #, possible-c-format, possible-boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -19148,25 +19362,16 @@ msgstr "" msgid "Detection radius" msgstr "" -msgid "Remove selected points" +msgid "Selected" msgstr "" -msgid "Remove all" +msgid "Auto-generate" msgstr "" -msgid "Auto-generate points" +msgid "Generate brim ears using Max angle and Detection radius" msgstr "" -msgid "Add a brim ear" -msgstr "" - -msgid "Delete a brim ear" -msgstr "" - -msgid "Adjust head diameter" -msgstr "" - -msgid "Adjust section view" +msgid "Add or Select" msgstr "" msgid "" @@ -19177,7 +19382,7 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "" -msgid " invalid brim ears" +msgid "invalid brim ears" msgstr "" msgid "Brim Ears" @@ -19396,8 +19601,8 @@ msgstr "" msgid "How to use keyboard shortcuts\nDid you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations?" msgstr "" -#: resources/data/hints.ini: [hint:Reverse on odd] -msgid "Reverse on odd\nDid you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" +#: resources/data/hints.ini: [hint:Reverse on even] +msgid "Reverse on even\nDid you know that Reverse on even feature can significantly improve the surface quality of your overhangs? However, it can cause wall inconsistencies so use carefully!" msgstr "" #: resources/data/hints.ini: [hint:Cut Tool] diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index f22400ed0a..c0c591b107 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: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2025-03-15 10:55+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -126,8 +126,8 @@ msgstr "Realitzar" msgid "On highlighted overhangs only" msgstr "Només als voladissos ressaltats" -msgid "Erase all painting" -msgstr "Esborrar tota el pintat" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Ressaltar zones en voladís" @@ -196,6 +196,9 @@ msgstr "Ressalteu les cares segons l'angle del voladís." msgid "No auto support" msgstr "No suports automàtics" +msgid "Done" +msgstr "Fet" + msgid "Support Generated" msgstr "Suport generat" @@ -349,6 +352,12 @@ msgstr "Selecció de part" msgid "Fixed step drag" msgstr "Arrossegament de pas fix" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Escalat unilateral" @@ -498,6 +507,18 @@ msgstr "Posició de tall" msgid "Build Volume" msgstr "Volum de construcció" +msgid "Multiple" +msgstr "Múltiple" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Espaiat" + msgid "Part" msgstr "Peça" @@ -605,12 +626,6 @@ msgstr "Editar connectors" msgid "Add connectors" msgstr "Afegir connectors" -msgid "Reset cut" -msgstr "Restableix el tall" - -msgid "Reset cutting plane and remove connectors" -msgstr "Restableix el pla de tall i elimina els connectors" - msgid "Upper part" msgstr "Part superior" @@ -629,6 +644,9 @@ msgstr "Després del tall" msgid "Cut to parts" msgstr "Separa en parts" +msgid "Reset cutting plane and remove connectors" +msgstr "Restableix el pla de tall i elimina els connectors" + msgid "Perform cut" msgstr "Realitzar tall" @@ -862,6 +880,9 @@ msgstr "Tipus de lletra predeterminat" msgid "Advanced" msgstr "Avançat" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1520,15 +1541,6 @@ msgstr "" "La funció 1 s'ha restablert, \n" "la funció 2 ha estat la funció 1" -msgid "Warning: please select Plane's feature." -msgstr "Avís: seleccioneu la funció Avió." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Avís: seleccioneu la funció de Punt o Cercle." - -msgid "Warning: please select two different meshes." -msgstr "Avís: seleccioneu dues malles diferents." - msgid "Copy to clipboard" msgstr "Copiar al porta-retalls" @@ -1581,6 +1593,15 @@ msgstr "(Movent)" msgid "Point and point assembly" msgstr "Muntatge punt a punt" +msgid "Warning: please select two different meshes." +msgstr "Avís: seleccioneu dues malles diferents." + +msgid "Warning: please select Plane's feature." +msgstr "Avís: seleccioneu la funció Avió." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Avís: seleccioneu la funció de Punt o Cercle." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1779,6 +1800,18 @@ msgstr "Aquesta és la versió més recent." msgid "Info" msgstr "Informació" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1846,6 +1879,23 @@ msgstr "" "La versió de l'Orca Slicer és massa antiga i s'ha d'actualitzar a la versió " "més recent abans que es pugui utilitzar amb normalitat" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Recuperant informació de la impressora, torneu-ho a provar més tard." @@ -2407,12 +2457,12 @@ msgstr "" msgid "Edit" msgstr "Editar" -msgid "Delete this filament" -msgstr "Elimina aquest filament" - msgid "Merge with" msgstr "Fusiona amb" +msgid "Delete this filament" +msgstr "Elimina aquest filament" + msgid "Select All" msgstr "Seleccionar-ho tot" @@ -4126,8 +4176,8 @@ msgid "" "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" "La còpia del codi-G temporal ha finalitzat, però el codi exportat no s'ha " -"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a %1%." -"tmp." +"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a " +"%1%.tmp." #, boost-format msgid "G-code file exported to %1%" @@ -4776,9 +4826,6 @@ msgstr "Atura l'assecament" msgid "Proceed" msgstr "Continua" -msgid "Done" -msgstr "Fet" - msgid "Retry" msgstr "Reintentar" @@ -5042,33 +5089,6 @@ msgstr "Transició de suport" msgid "Mixed" msgstr "Mixt" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Ratio de Flux" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Velocitat del ventilador" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Temps" - -msgid "Actual speed profile" -msgstr "Perfil de velocitat real" - -msgid "Speed: " -msgstr "Velocitat: " - msgid "Height: " msgstr "Alçada: " @@ -5102,6 +5122,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Ratio de Flux" + +msgid "Fan speed" +msgstr "Velocitat del ventilador" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Temps" + +msgid "Speed: " +msgstr "Velocitat: " + +msgid "Actual speed profile" +msgstr "Perfil de velocitat real" + msgid "Statistics of All Plates" msgstr "Estadístiques de totes les plaques" @@ -5441,9 +5488,6 @@ msgstr "Orientar/alinear" msgid "Arrange options" msgstr "Opcions d'ordenació" -msgid "Spacing" -msgstr "Espaiat" - msgid "0 means auto spacing." msgstr "0 significa espaiat automàtic." @@ -5578,7 +5622,7 @@ msgstr "Volum:" msgid "Size:" msgstr "Mida:" -#, fuzzy, c-format, boost-format +#, fuzzy, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5755,8 +5799,8 @@ msgid "" "You can find it in \"Setting > Setting > LAN only > Access Code\"\n" "on the printer, as shown in the figure:" msgstr "" -"Podeu trobar-lo a \"Configuració > Configuració > Només LAN > Codi d'accés" -"\"\n" +"Podeu trobar-lo a \"Configuració > Configuració > Només LAN > Codi " +"d'accés\"\n" "a la impressora, com es mostra a la figura:" msgid "Invalid input." @@ -5980,6 +6024,15 @@ msgstr "Exportar la configuració actual a fitxers" msgid "Export" msgstr "Exportar" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Surt" @@ -6107,6 +6160,9 @@ msgstr "Vista" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Ajuda" @@ -8765,15 +8821,6 @@ msgstr "" "Si està activat, fa servir la càmera lliure. Si no està activat, fa servir " "la càmera restringida." -msgid "Swap pan and rotate mouse buttons" -msgstr "Intercanviar la panoràmica i girar els botons del ratolí" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Si està activat, intercanvia les funcions de panoràmica i rotació dels " -"botons esquerre i dret del ratolí." - msgid "Reverse mouse zoom" msgstr "Zoom invers del ratolí" @@ -8781,6 +8828,27 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" "Si està habilitat, inverteix la direcció del zoom amb la roda del ratolí." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Esborra la meva elecció a..." @@ -8805,6 +8873,59 @@ msgstr "" "Esborra la meva elecció per sincronitzar el perfil de la impressora després " "de carregar el fitxer." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Deshabilitat" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Regió d'inici de sessió" @@ -8970,6 +9091,15 @@ msgstr "Mode de desenvolupament" msgid "Skip AMS blacklist check" msgstr "Omet la comprovació de la llista negra AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Permet emmagatzematge anormal" @@ -10108,8 +10238,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 "" "Quan graveu timelapse sense capçal d'impressió, es recomana afegir una " "\"Torre de Purga Timelapse\" \n" @@ -10742,6 +10872,32 @@ msgstr "No desar" msgid "Discard" msgstr "Descartar" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + 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." @@ -11330,6 +11486,9 @@ msgstr "Feu clic aquí per descarregar-lo." msgid "Login" msgstr "Iniciar sessió" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Acció necessària] " @@ -11368,6 +11527,18 @@ msgstr "Mostrar la llista de dreceres de teclat" msgid "Global shortcuts" msgstr "Dreceres Globals" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11868,9 +12039,6 @@ msgstr " no es pot col·locar al " msgid "Internal Bridge" msgstr "Pont Interior" -msgid "Multiple" -msgstr "Múltiple" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13729,8 +13897,9 @@ msgstr "" "reducció de coixins a les superfícies superiors, així com una separació " "reduïda de la capa de pont externa dels seus perímetres circumdants.\n" "\n" -"En general, es recomana establir això com a mínim com a \"Només pont extern" -"\", tret que es detectin problemes específics amb el model en rodanxes.\n" +"En general, es recomana establir això com a mínim com a \"Només pont " +"extern\", tret que es detectin problemes específics amb el model en " +"rodanxes.\n" "\n" "Opcions:\n" "1. Desactivat: no genera segones capes de pont. Aquest és el valor " @@ -13750,9 +13919,6 @@ msgstr "" "4. Aplicar a tots: genera segones capes de pont per als ponts interiors i " "exteriors\n" -msgid "Disabled" -msgstr "Deshabilitat" - msgid "External bridge only" msgstr "Només pont exterior" @@ -14460,6 +14626,18 @@ msgstr "Automàtic per a purga" msgid "Auto For Match" msgstr "Automàtic per a coincidència" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Temperatura de purga" @@ -14981,6 +15159,17 @@ msgstr "" "Ús de múltiples línies per al patró de farciment, si el patró de farciment " "ho admet." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Patró farciment poc dens" @@ -15162,8 +15351,8 @@ msgid "mm/s² or %" msgstr "mm/s o %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Acceleració del farciment poc dens. Si el valor s'expressa en percentatge " "( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada." @@ -15299,15 +15488,15 @@ msgstr "Velocitat màxima del ventilador a la capa" 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 "" "La velocitat del ventilador augmentarà linealment de zero a la capa " -"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer" -"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a " -"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a " +"\"close_fan_the_first_x_layers\" al màxim a la capa " +"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior " +"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a " "la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1." msgid "layer" @@ -15503,9 +15692,9 @@ msgstr "" "inferior a un cert nivell. Normalment equival al 15-25%% de l'alçada de la " "capa. Per tant, el gruix màxim de pell difusa amb una amplada de perímetre " "de 0.4 mm i una alçada de capa de 0.2 mm serà 0.4-(0.2*0.25)=±0.35mm! Si " -"introduïu un paràmetre superior a aquest, es mostrarà l'error Flow::" -"spacing() i el model no es tallarà. Podeu triar aquest número fins que es " -"repeteixi l'error." +"introduïu un paràmetre superior a aquest, es mostrarà l'error " +"Flow::spacing() i el model no es tallarà. Podeu triar aquest número fins que " +"es repeteixi l'error." msgid "Displacement" msgstr "Desplaçament" @@ -15826,6 +16015,30 @@ msgstr "" "aconseguir que el ventilador s'acceleri més ràpidament.\n" "Poseu-lo a 0 per desactivar-lo." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Cost per Temps" @@ -17464,8 +17677,8 @@ msgid "Role base wipe speed" msgstr "Velocitat de neteja basada en l'acció" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17862,6 +18075,19 @@ msgstr "Purga el filament restant a la Torre de Purga" msgid "Enable filament ramming" msgstr "Activa l'empenta del filament" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Sense capes poc denses( beta )" @@ -18218,15 +18444,18 @@ msgid "Threshold angle" msgstr "Pendent màxim" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Es generarà suport per als voladissos l'angle de pendent dels quals estigui per sota del llindar." -"Com més petit sigui aquest valor, més inclinat serà el voladís que es pot imprimir sense suport.\n" -"Nota: si s'estableix a 0, els suports normals utilitzen en el seu lloc la Superposició de llindars, " -"mentre que els suports en arbre tornen al valor predeterminat de 30." +"Es generarà suport per als voladissos l'angle de pendent dels quals estigui " +"per sota del llindar.Com més petit sigui aquest valor, més inclinat serà el " +"voladís que es pot imprimir sense suport.\n" +"Nota: si s'estableix a 0, els suports normals utilitzen en el seu lloc la " +"Superposició de llindars, mentre que els suports en arbre tornen al valor " +"predeterminat de 30." msgid "Threshold overlap" msgstr "Superposició de llindars" @@ -18395,8 +18624,8 @@ msgstr "Activar el control de temperatura" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18880,8 +19109,9 @@ msgid "" "0 to disable." msgstr "" "Temperatura del broquet quan l'eina no s'utilitza actualment en " -"configuracions multieina. Només s'utilitza quan la \"Prevenció de supuració" -"\" està activa a la configuració d'impressió. Establiu a 0 per desactivar." +"configuracions multieina. Només s'utilitza quan la \"Prevenció de " +"supuració\" està activa a la configuració d'impressió. Establiu a 0 per " +"desactivar." msgid "X-Y hole compensation" msgstr "Compensació de forat( contorn intern ) X-Y" @@ -19423,11 +19653,11 @@ msgid "Debug level" msgstr "Nivell de depuració" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, 3:" -"info, 4:debug, 5:tracejar\n" +"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, " +"3:info, 4:debug, 5:tracejar\n" msgid "Enable timelapse for print" msgstr "Activa el timelapse per a la impressió" @@ -19977,8 +20207,8 @@ msgstr "El fitxer subministrat no s'ha pogut llegir perquè està buit" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Format de fitxer desconegut. El fitxer d'entrada ha de tenir extensió .stl, ." -"obj, .amf( .xml )." +"Format de fitxer desconegut. El fitxer d'entrada ha de tenir " +"extensió .stl, .obj, .amf( .xml )." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" @@ -21238,8 +21468,8 @@ msgstr "" "Vols reescriure'l?" 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 "" "Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus " @@ -21427,6 +21657,18 @@ msgstr "" "El perfil del sistema no permet la creació.\n" "Torneu a introduir el model de la impressora o el diàmetre del broquet." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Èxit Creant Impressora" @@ -21684,36 +21926,6 @@ msgstr "" "impressora.\n" "Feu clic al botó Sincronitza a dalt i reinicieu el calibratge." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "mida del broquet al perfil: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "mida del broquet memoritzada: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"La mida del tipus de broquet al perfil no és consistent amb el broquet " -"memoritzat. Heu canviat el broquet recentment?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "broquet[%d] al perfil: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "broquet[%d] memoritzat: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"El tipus de broquet al perfil no és consistent amb el broquet memoritzat. " -"Heu canviat el broquet recentment?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Imprimir material %1s amb broquet %2s pot causar danys al broquet." @@ -22672,39 +22884,30 @@ msgstr "Angle màxim" msgid "Detection radius" msgstr "Radi de detecció" -msgid "Remove selected points" -msgstr "Elimina els punts seleccionats" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Elimina- ho tot" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Generar punts automàticament" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Afegir una orella de Vora d'Adherència" - -msgid "Delete a brim ear" -msgstr "Suprimir la Vora d'Adherència" - -msgid "Adjust head diameter" -msgstr "Ajusta el diàmetre del capçal" - -msgid "Adjust section view" -msgstr "Ajusta la vista en secció" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " "take effect!" msgstr "" -"Advertència: el tipus de Vora d'Adherència no està configurat com a \"pintat" -"\", les orelles de la Vora d'Adherència no tindran efecte!" +"Advertència: el tipus de Vora d'Adherència no està configurat com a " +"\"pintat\", les orelles de la Vora d'Adherència no tindran efecte!" msgid "Set the brim type of this object to \"painted\"" msgstr "Estableix el tipus de vora d'aquest objecte a \"pintat\"" -msgid " invalid brim ears" -msgstr " orelles de la Vora d'Adherència invàlides" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Orelles de la Vora d'Adherència" @@ -22988,15 +23191,13 @@ msgstr "" "Sabíeu que Orca Slicer ofereix una àmplia gamma de dreceres de teclat i " "operacions en escenes 3D?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Parets invertides en capes imparells\n" -"Sabíeu que la funció Parets invertides en capes imparells pot " -"millorar significativament la qualitat de la superficie dels voladissos?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23292,6 +23493,85 @@ msgstr "" "augmentar adequadament la temperatura del llit pot reduir la probabilitat de " "deformació?" +#~ msgid "Erase all painting" +#~ msgstr "Esborrar tota el pintat" + +#~ msgid "Reset cut" +#~ msgstr "Restableix el tall" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Intercanviar la panoràmica i girar els botons del ratolí" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Si està activat, intercanvia les funcions de panoràmica i rotació dels " +#~ "botons esquerre i dret del ratolí." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "mida del broquet al perfil: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "mida del broquet memoritzada: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "La mida del tipus de broquet al perfil no és consistent amb el broquet " +#~ "memoritzat. Heu canviat el broquet recentment?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "broquet[%d] al perfil: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "broquet[%d] memoritzat: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "El tipus de broquet al perfil no és consistent amb el broquet memoritzat. " +#~ "Heu canviat el broquet recentment?" + +#~ msgid "Remove selected points" +#~ msgstr "Elimina els punts seleccionats" + +#~ msgid "Remove all" +#~ msgstr "Elimina- ho tot" + +#~ msgid "Auto-generate points" +#~ msgstr "Generar punts automàticament" + +#~ msgid "Add a brim ear" +#~ msgstr "Afegir una orella de Vora d'Adherència" + +#~ msgid "Delete a brim ear" +#~ msgstr "Suprimir la Vora d'Adherència" + +#~ msgid "Adjust head diameter" +#~ msgstr "Ajusta el diàmetre del capçal" + +#~ msgid "Adjust section view" +#~ msgstr "Ajusta la vista en secció" + +#~ msgid " invalid brim ears" +#~ msgstr " orelles de la Vora d'Adherència invàlides" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Parets invertides en capes imparells\n" +#~ "Sabíeu que la funció Parets invertides en capes imparells pot " +#~ "millorar significativament la qualitat de la superficie dels voladissos?" + #~ msgid "Pen size" #~ msgstr "Mida del llapis" @@ -23899,8 +24179,8 @@ msgstr "" #~ "No AMS filaments. Please select a printer in 'Device' page to load AMS " #~ "info." #~ msgstr "" -#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina \"Dispositiu" -#~ "\" per carregar informació AMS." +#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina " +#~ "\"Dispositiu\" per carregar informació AMS." #~ msgid "" #~ "Sync filaments with AMS will drop all current selected filament presets " @@ -24353,9 +24633,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Establir Posició" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index fa0fb9e794..9d6c0ca729 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: Jakub Hencl\n" "Language-Team: \n" @@ -119,8 +119,8 @@ msgstr "Provést" msgid "On highlighted overhangs only" msgstr "Pouze na zvýrazněné převisy" -msgid "Erase all painting" -msgstr "Smazat celé malování" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Zvýraznit oblasti s převisem" @@ -189,6 +189,9 @@ msgstr "Zvýraznit plochy podle úhlu převisu." msgid "No auto support" msgstr "Žádné automatické podpory" +msgid "Done" +msgstr "Hotovo" + msgid "Support Generated" msgstr "Vygenerovaná podpora" @@ -341,6 +344,12 @@ msgstr "Výběr části" msgid "Fixed step drag" msgstr "Posouvání o pevný krok" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Jednostranné měřítko" @@ -489,6 +498,18 @@ msgstr "Pozice řezu" msgid "Build Volume" msgstr "Stavební objem" +msgid "Multiple" +msgstr "Více" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Rozestup" + msgid "Part" msgstr "Díl" @@ -596,12 +617,6 @@ msgstr "Upravit konektory" msgid "Add connectors" msgstr "Přidat konektory" -msgid "Reset cut" -msgstr "Obnovit řez" - -msgid "Reset cutting plane and remove connectors" -msgstr "Resetovat řezací rovinu a odstranit konektory" - msgid "Upper part" msgstr "Horní část" @@ -620,6 +635,9 @@ msgstr "Po ořezu" msgid "Cut to parts" msgstr "Rozdělit na části" +msgid "Reset cutting plane and remove connectors" +msgstr "Resetovat řezací rovinu a odstranit konektory" + msgid "Perform cut" msgstr "Provést řez" @@ -853,6 +871,9 @@ msgstr "Výchozí písmo" msgid "Advanced" msgstr "Pokročilé" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1492,15 +1513,6 @@ msgstr "" "Funkce 1 byla resetována,\n" "funkce 2 byla funkce 1" -msgid "Warning: please select Plane's feature." -msgstr "Varování: Vyberte prosím vlastnost roviny." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Varování: Vyberte prosím vlastnost bodu nebo kruhu." - -msgid "Warning: please select two different meshes." -msgstr "Varování: Vyberte prosím dvě různé sítě." - msgid "Copy to clipboard" msgstr "Kopírovat do schránky" @@ -1552,6 +1564,15 @@ msgstr "(Pohyblivé)" msgid "Point and point assembly" msgstr "Sestavení bod–bod" +msgid "Warning: please select two different meshes." +msgstr "Varování: Vyberte prosím dvě různé sítě." + +msgid "Warning: please select Plane's feature." +msgstr "Varování: Vyberte prosím vlastnost roviny." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Varování: Vyberte prosím vlastnost bodu nebo kruhu." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1743,6 +1764,18 @@ msgstr "Toto je nejnovější verze." msgid "Info" msgstr "Info" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1810,6 +1843,23 @@ msgstr "" "Verze Orca Slicer je příliš stará a je nutné ji aktualizovat na nejnovější " "verzi, aby ji bylo možné používat." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Načítání informací o tiskárně, zkuste to prosím později." @@ -2367,12 +2417,12 @@ msgstr "Automaticky natočit objekt pro zlepšení kvality tisku" msgid "Edit" msgstr "Upravit" -msgid "Delete this filament" -msgstr "Smazat tento filament" - msgid "Merge with" msgstr "Sloučit s" +msgid "Delete this filament" +msgstr "Smazat tento filament" + msgid "Select All" msgstr "Vybrat vše" @@ -4694,9 +4744,6 @@ msgstr "Stop Drying" msgid "Proceed" msgstr "Proceed" -msgid "Done" -msgstr "Hotovo" - msgid "Retry" msgstr "Zkusit znovu" @@ -4959,33 +5006,6 @@ msgstr "Přechod podpory" msgid "Mixed" msgstr "Mixed" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Průtok" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Rychlost ventilátoru" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Čas" - -msgid "Actual speed profile" -msgstr "Actual speed profile" - -msgid "Speed: " -msgstr "Rychlost: " - msgid "Height: " msgstr "Výška: " @@ -5019,6 +5039,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Průtok" + +msgid "Fan speed" +msgstr "Rychlost ventilátoru" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Čas" + +msgid "Speed: " +msgstr "Rychlost: " + +msgid "Actual speed profile" +msgstr "Actual speed profile" + msgid "Statistics of All Plates" msgstr "Statistiky všech desek" @@ -5352,9 +5399,6 @@ msgstr "Orient" msgid "Arrange options" msgstr "Možnosti rozložení" -msgid "Spacing" -msgstr "Rozestup" - msgid "0 means auto spacing." msgstr "0 znamená automatické rozestupy." @@ -5489,7 +5533,7 @@ msgstr "Objem:" msgid "Size:" msgstr "Velikost:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5888,6 +5932,15 @@ msgstr "Exportovat aktuální konfiguraci do souborů" msgid "Export" msgstr "Export" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Ukončit" @@ -6015,6 +6068,9 @@ msgstr "Zobrazit" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Nápověda" @@ -8608,21 +8664,33 @@ msgstr "" "Pokud je povoleno, použít volnou kameru. Pokud není povoleno, použít " "omezenou kameru." -msgid "Swap pan and rotate mouse buttons" -msgstr "Prohodit tlačítka myši pro posun a otáčení" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Je-li povoleno, zamění se funkce posunu a rotace mezi levým a pravým " -"tlačítkem myši." - msgid "Reverse mouse zoom" msgstr "Změnit směr přibližování myší" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Je-li povoleno, obrátí se směr přiblížení kolečkem myši." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Clear my choice on..." @@ -8646,6 +8714,59 @@ msgid "" msgstr "" "Clear my choice for synchronizing printer preset after loading the file." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Zakázáno" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Login region" @@ -8796,6 +8917,15 @@ msgstr "Vývojářský režim" msgid "Skip AMS blacklist check" msgstr "Přeskočit kontrolu blacklistu AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Allow Abnormal Storage" @@ -9887,8 +10017,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 "" "Při záznamu časosběru bez tiskové hlavy je doporučeno přidat „Časosběr věž " "na očištění trysky“.\n" @@ -10517,6 +10647,32 @@ msgstr "Neukládat" msgid "Discard" msgstr "Zahodit" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Kliknutím pravým tlačítkem myši zobrazíte celý text." @@ -11092,6 +11248,9 @@ msgstr "Klikněte zde pro stažení." msgid "Login" msgstr "Přihlášení" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Action Required] " @@ -11128,6 +11287,18 @@ msgstr "Zobrazit seznam klávesových zkratek" msgid "Global shortcuts" msgstr "Globální klávesové zkratky" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11614,9 +11785,6 @@ msgstr " can not be placed in the " msgid "Internal Bridge" msgstr "Vnitřní most" -msgid "Multiple" -msgstr "Více" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "Nepodařilo se vypočítat šířku čáry %1%. Nelze získat hodnotu „%2%“. " @@ -13415,9 +13583,6 @@ msgstr "" "tohoto ostrova\n" "4. Použít na vše – generuje druhé mostové vrstvy pro vnitřní i vnější mosty\n" -msgid "Disabled" -msgstr "Zakázáno" - msgid "External bridge only" msgstr "Pouze externí most" @@ -14096,6 +14261,18 @@ msgstr "Auto For Flush" msgid "Auto For Match" msgstr "Auto For Match" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Flush temperature" @@ -14592,6 +14769,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "Použití více řádků pro vzor výplně, pokud to daný vzor podporuje." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Vzor řídké výplně" @@ -14764,8 +14952,8 @@ msgid "mm/s² or %" msgstr "mm/s² nebo %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Akcelerace řídké výplně. Pokud je hodnota vyjádřena v procentech (např. 100 " "%), bude vypočtena na základě výchozí akcelerace." @@ -14898,10 +15086,10 @@ msgstr "Plná rychlost ventilátoru na vrstvě" 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 "" "Rychlost ventilátoru bude lineárně zvyšována od nuly na vrstvě \"zavřít " "ventilátor na prvních x vrstvách\" až po maximum na vrstvě " @@ -15407,6 +15595,30 @@ msgstr "" "spuštění z klidu, nebo pro rychlejší rozběh ventilátoru.\n" "Nastavte na 0 pro deaktivaci." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "Časová náročnost" @@ -16984,8 +17196,8 @@ msgid "Role base wipe speed" msgstr "Rychlost vytírání podle role" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17372,6 +17584,19 @@ msgstr "Zbývající filament bude vyčištěn do základní věže." msgid "Enable filament ramming" msgstr "Povolit protlačování filamentu" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Žádné řídké vrstvy (beta)" @@ -17415,8 +17640,8 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít díry" -"\" pro uzavření všech otvorů v modelu." +"Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít " +"díry\" pro uzavření všech otvorů v modelu." msgid "Regular" msgstr "Obvyklý" @@ -17715,15 +17940,16 @@ msgid "Threshold angle" msgstr "Prahový úhel" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" "Podpěry budou generovány pro převisy s úhlem sklonu pod nastaveným prahem. " "Čím menší je tato hodnota, tím strmější převis lze tisknout bez podpěr.\n" -"Poznámka: Pokud je nastavena na 0, běžné podpěry místo toho použijí Hraniční překrytí, " -"zatímco stromové podpěry se vrátí na výchozí hodnotu 30." +"Poznámka: Pokud je nastavena na 0, běžné podpěry místo toho použijí Hraniční " +"překrytí, zatímco stromové podpěry se vrátí na výchozí hodnotu 30." msgid "Threshold overlap" msgstr "Prahové překrytí" @@ -17887,8 +18113,8 @@ msgstr "Aktivovat kontrolu teploty" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18873,11 +19099,11 @@ msgid "Debug level" msgstr "Úroveň ladění" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Nastaví úroveň logování pro ladění. 0:fatal, 1:error, 2:warning, 3:info, 4:" -"debug, 5:trace\n" +"Nastaví úroveň logování pro ladění. 0:fatal, 1:error, 2:warning, 3:info, " +"4:debug, 5:trace\n" msgid "Enable timelapse for print" msgstr "Povolit časosběr pro tisk" @@ -19415,8 +19641,8 @@ msgstr "Zadaný soubor nelze načíst, protože je prázdný." msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj nebo ." -"amf(.xml)." +"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj " +"nebo .amf(.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" @@ -20639,8 +20865,8 @@ msgstr "" "Chcete to přepsat?" 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 "" "Předvolby přejmenujeme na „Výrobce Typ Sériové číslo @tiskárna, kterou jste " @@ -20815,6 +21041,18 @@ msgstr "" "The system preset does not allow creation. \n" "Please re-enter the printer model or nozzle diameter." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Tiskárna byla úspěšně vytvořena" @@ -21066,36 +21304,6 @@ msgstr "" "The nozzle type does not match the actual printer nozzle type.\n" "Please click the Sync button above and restart the calibration." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "nozzle size in preset: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "nozzle size memorized: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "nozzle[%d] in preset: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "nozzle[%d] memorized: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Printing %1s material with %2s nozzle may cause nozzle damage." @@ -22011,26 +22219,17 @@ msgstr "Maximální úhel" msgid "Detection radius" msgstr "Detekční poloměr" -msgid "Remove selected points" -msgstr "Odstranit vybrané body" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Odstranit vše" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Automaticky generovat body" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Přidat okraj (brim)" - -msgid "Delete a brim ear" -msgstr "Smazat okrajové ucho" - -msgid "Adjust head diameter" -msgstr "Upravit průměr hlavy" - -msgid "Adjust section view" -msgstr "Upravit pohled na řez" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -22041,8 +22240,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Nastavit typ lemu tohoto objektu na „malovaný“" -msgid " invalid brim ears" -msgstr " neplatné okraje podložky (brim)" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Ouška límce" @@ -22319,15 +22518,13 @@ msgstr "" "Věděli jste, že Orca Slicer nabízí širokou škálu klávesových zkratek a " "operací ve 3D scéně?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Obrátit na lichých\n" -"Víte, že funkce Obrátit na lichých může výrazně zlepšit kvalitu " -"povrchu vašich převisů?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22617,6 +22814,85 @@ msgstr "" "Víte, že při tisku materiálů náchylných ke kroucení, jako je ABS, může " "vhodné zvýšení teploty vyhřívané desky snížit pravděpodobnost kroucení?" +#~ msgid "Erase all painting" +#~ msgstr "Smazat celé malování" + +#~ msgid "Reset cut" +#~ msgstr "Obnovit řez" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Prohodit tlačítka myši pro posun a otáčení" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Je-li povoleno, zamění se funkce posunu a rotace mezi levým a pravým " +#~ "tlačítkem myši." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "nozzle size in preset: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "nozzle size memorized: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "nozzle[%d] in preset: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "nozzle[%d] memorized: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" + +#~ msgid "Remove selected points" +#~ msgstr "Odstranit vybrané body" + +#~ msgid "Remove all" +#~ msgstr "Odstranit vše" + +#~ msgid "Auto-generate points" +#~ msgstr "Automaticky generovat body" + +#~ msgid "Add a brim ear" +#~ msgstr "Přidat okraj (brim)" + +#~ msgid "Delete a brim ear" +#~ msgstr "Smazat okrajové ucho" + +#~ msgid "Adjust head diameter" +#~ msgstr "Upravit průměr hlavy" + +#~ msgid "Adjust section view" +#~ msgstr "Upravit pohled na řez" + +#~ msgid " invalid brim ears" +#~ msgstr " neplatné okraje podložky (brim)" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Obrátit na lichých\n" +#~ "Víte, že funkce Obrátit na lichých může výrazně zlepšit kvalitu " +#~ "povrchu vašich převisů?" + #~ msgid "Pen size" #~ msgstr "Velikost pera" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index d0cab847d9..4358dc0862 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -121,8 +121,8 @@ msgstr "Ausführen" msgid "On highlighted overhangs only" msgstr "Nur an hervorgehobenen Überhängen" -msgid "Erase all painting" -msgstr "Alles gemalte löschen" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Bereiche mit Überhang hervorheben" @@ -192,6 +192,9 @@ msgstr "Markieren der Flächen entsprechend dem Überhangwinkel." msgid "No auto support" msgstr "Kein automatischer Support" +msgid "Done" +msgstr "Erledigt" + msgid "Support Generated" msgstr "Support generiert" @@ -346,6 +349,12 @@ msgstr "Teilauswahl" msgid "Fixed step drag" msgstr "Fester Schritt ziehen" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Einseitige Skalierung" @@ -496,6 +505,18 @@ msgstr "Schnittposition" msgid "Build Volume" msgstr "Bau Volumen" +msgid "Multiple" +msgstr "Mehrere" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Abstand" + msgid "Part" msgstr "Teil" @@ -604,12 +625,6 @@ msgstr "Verbinder ändern" msgid "Add connectors" msgstr "Verbinder zufügen" -msgid "Reset cut" -msgstr "Schnitt zurücksetzen" - -msgid "Reset cutting plane and remove connectors" -msgstr "Schnittfläche zurücksetzen und Verbinder entfernen" - msgid "Upper part" msgstr "Oberes Teil" @@ -628,6 +643,9 @@ msgstr "nach dem Schnitt" msgid "Cut to parts" msgstr "In Teile schneiden" +msgid "Reset cutting plane and remove connectors" +msgstr "Schnittfläche zurücksetzen und Verbinder entfernen" + msgid "Perform cut" msgstr "Schnitt ausführen" @@ -864,6 +882,9 @@ msgstr "Standard-Schriftart" msgid "Advanced" msgstr "Erweiterte Einstellungen" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1525,15 +1546,6 @@ msgstr "" "Feature 1 wurde zurückgesetzt, \n" "Feature 2 wurde zu Feature 1" -msgid "Warning: please select Plane's feature." -msgstr "Warnung: Bitte wählen Sie die Funktion der Ebene." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Warnung: Bitte wählen Sie die Funktion des Punktes oder Kreises." - -msgid "Warning: please select two different meshes." -msgstr "Warnung: Bitte wählen Sie zwei verschiedene Mesh-Netze." - msgid "Copy to clipboard" msgstr "In Zwischenablage kopieren" @@ -1587,6 +1599,15 @@ msgstr "(Bewegen)" msgid "Point and point assembly" msgstr "Punkt-zu-Punkt-Montage" +msgid "Warning: please select two different meshes." +msgstr "Warnung: Bitte wählen Sie zwei verschiedene Mesh-Netze." + +msgid "Warning: please select Plane's feature." +msgstr "Warnung: Bitte wählen Sie die Funktion der Ebene." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Warnung: Bitte wählen Sie die Funktion des Punktes oder Kreises." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1783,6 +1804,18 @@ msgstr "Dies ist die neueste Version." msgid "Info" msgstr "Info" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1851,6 +1884,23 @@ msgstr "" "Die Version von Orca Slicer ist veraltet und muss auf die neueste Version " "aktualisiert werden, bevor sie normal verwendet werden kann" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Empfange Druckerinformationen, bitte später erneut versuchen." @@ -1925,7 +1975,10 @@ msgid "" "Existing user presets were found in %s.\n" "Do you want to migrate them to your OrcaCloud profile?\n" "This will copy your presets so they are available under your new account." -msgstr "Es wurden vorhandene Benutzerprofile in %s gefunden.\nMöchten Sie diese in Ihr OrcaCloud-Profil migrieren?\nDies kopiert Ihre Profile, sodass sie unter Ihrem neuen Konto verfügbar sind." +msgstr "" +"Es wurden vorhandene Benutzerprofile in %s gefunden.\n" +"Möchten Sie diese in Ihr OrcaCloud-Profil migrieren?\n" +"Dies kopiert Ihre Profile, sodass sie unter Ihrem neuen Konto verfügbar sind." msgid "Migrate User Presets" msgstr "Benutzerprofile migrieren" @@ -2418,12 +2471,12 @@ msgstr "" msgid "Edit" msgstr "Bearbeiten" -msgid "Delete this filament" -msgstr "Diesen Filament löschen" - msgid "Merge with" msgstr "Zusammenführen mit" +msgid "Delete this filament" +msgstr "Diesen Filament löschen" + msgid "Select All" msgstr "Alle auswählen" @@ -3546,14 +3599,13 @@ msgid "" "enhancements. Each project carried the work of its predecessors forward, " "crediting those who came before." msgstr "" -"Die Open-Source-Slicing-Software steht auf einer Tradition der Zusammenarbeit " -"und Anerkennung. Slic3r, erstellt von Alessandro Ranellucci und der RepRap-" -"Gemeinschaft, legte den Grundstein. PrusaSlicer von Prusa Research baute auf " -"dieser Arbeit auf, Bambu Studio wurde von PrusaSlicer verzweigt und " -"SuperSlicer erweiterte es mit gemeinschaftsgetriebenen Verbesserungen. Jedes " -"Projekt trug die Arbeit seiner Vorgänger weiter und würdigte diejenigen, die " -"das zuvor erbracht haben." - +"Die Open-Source-Slicing-Software steht auf einer Tradition der " +"Zusammenarbeit und Anerkennung. Slic3r, erstellt von Alessandro Ranellucci " +"und der RepRap-Gemeinschaft, legte den Grundstein. PrusaSlicer von Prusa " +"Research baute auf dieser Arbeit auf, Bambu Studio wurde von PrusaSlicer " +"verzweigt und SuperSlicer erweiterte es mit gemeinschaftsgetriebenen " +"Verbesserungen. Jedes Projekt trug die Arbeit seiner Vorgänger weiter und " +"würdigte diejenigen, die das zuvor erbracht haben." msgid "" "OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, " @@ -3562,19 +3614,19 @@ msgid "" "hundreds of other features." msgstr "" "OrcaSlicer begann in diesem gleichen Geist, indem es von PrusaSlicer, " -"BambuStudio, SuperSlicer und CuraSlicer lernte. Aber es hat sich seitdem weit " -"über seine Ursprünge hinaus entwickelt - mit fortschrittlichen Kalibrierungswerkzeugen, " -"präziser Wand- und Nahtkontrolle und Hunderten von anderen Funktionen." - +"BambuStudio, SuperSlicer und CuraSlicer lernte. Aber es hat sich seitdem " +"weit über seine Ursprünge hinaus entwickelt - mit fortschrittlichen " +"Kalibrierungswerkzeugen, präziser Wand- und Nahtkontrolle und Hunderten von " +"anderen Funktionen." msgid "" "Today, OrcaSlicer is the most widely used and actively developed open-source " "slicer in the 3D printing community. Many of its innovations have been " "adopted by other slicers, making it a driving force for the entire industry." msgstr "" -"Heute ist OrcaSlicer der am weitesten verbreitete und aktiv entwickelte Open-Source-" -"Slicer in der 3D-Druck-Community. Viele seiner Innovationen wurden von anderen " -"Slicern übernommen und treiben die gesamte Industrie voran." +"Heute ist OrcaSlicer der am weitesten verbreitete und aktiv entwickelte Open-" +"Source-Slicer in der 3D-Druck-Community. Viele seiner Innovationen wurden " +"von anderen Slicern übernommen und treiben die gesamte Industrie voran." msgid "Version" msgstr "Version" @@ -4837,9 +4889,6 @@ msgstr "Trocknen stoppen" msgid "Proceed" msgstr "Fortfahren" -msgid "Done" -msgstr "Erledigt" - msgid "Retry" msgstr "Wiederholen" @@ -5106,33 +5155,6 @@ msgstr "Stützenübergang" msgid "Mixed" msgstr "Gemischt" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Durchflussrate" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Lüftergeschwindigkeit" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Zeit" - -msgid "Actual speed profile" -msgstr "Aktuelles Geschwindigkeitsprofil" - -msgid "Speed: " -msgstr "Geschwindigkeit " - msgid "Height: " msgstr "Höhe: " @@ -5166,6 +5188,33 @@ msgstr "Ruck: " msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Durchflussrate" + +msgid "Fan speed" +msgstr "Lüftergeschwindigkeit" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Zeit" + +msgid "Speed: " +msgstr "Geschwindigkeit " + +msgid "Actual speed profile" +msgstr "Aktuelles Geschwindigkeitsprofil" + msgid "Statistics of All Plates" msgstr "Statistiken aller Platten" @@ -5511,9 +5560,6 @@ msgstr "Orientieren" msgid "Arrange options" msgstr "Anordnungsoptionen" -msgid "Spacing" -msgstr "Abstand" - msgid "0 means auto spacing." msgstr "0 bedeutet automatischer Abstand." @@ -5648,7 +5694,7 @@ msgstr "Volumen:" msgid "Size:" msgstr "Größe:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5825,8 +5871,8 @@ msgid "" "You can find it in \"Setting > Setting > LAN only > Access Code\"\n" "on the printer, as shown in the figure:" msgstr "" -"Sie finden es unter „Einstellungen > Einstellungen > Nur LAN > Zugangscode" -"\"\n" +"Sie finden es unter „Einstellungen > Einstellungen > Nur LAN > " +"Zugangscode\"\n" "am Drucker, wie in der Abbildung gezeigt:" msgid "Invalid input." @@ -6053,6 +6099,15 @@ msgstr "Aktuelle Konfiguration in Dateien exportieren" msgid "Export" msgstr "Exportieren" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Beenden" @@ -6180,6 +6235,9 @@ msgstr "Ansicht" msgid "Preset Bundle" msgstr "Vorlagen-Bundle" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Hilfe" @@ -6346,7 +6404,6 @@ msgstr "" "2. Die Filamentvoreinstellungen\n" "3. Die Druckervoreinstellungen" - msgid "Synchronization" msgstr "Synchronisierung" @@ -6369,8 +6426,8 @@ msgid "" "The player is not loaded because the GStreamer GTK video sink is missing or " "failed to initialize." msgstr "" -"Der Player ist nicht geladen, weil der GStreamer GTK Video-Sink fehlt oder die " -"Initialisierung fehlgeschlagen ist." +"Der Player ist nicht geladen, weil der GStreamer GTK Video-Sink fehlt oder " +"die Initialisierung fehlgeschlagen ist." msgid "Please confirm if the printer is connected." msgstr "Bitte bestätigen Sie, ob der Drucker verbunden ist." @@ -7816,10 +7873,13 @@ msgstr "" msgid "" "The 3MF file was generated by an older version, loading geometry data only." msgstr "" -"Die 3MF-Datei wurde von einer älteren Version erstellt, es werden nur die Geometriedaten geladen." +"Die 3MF-Datei wurde von einer älteren Version erstellt, es werden nur die " +"Geometriedaten geladen." msgid "The 3MF file was generated by BambuStudio, loading geometry data only." -msgstr "Die 3MF-Datei wurde von BambuStudio erstellt, es werden nur die Geometriedaten geladen." +msgstr "" +"Die 3MF-Datei wurde von BambuStudio erstellt, es werden nur die " +"Geometriedaten geladen." msgid "" "This project was created with an OrcaSlicer 2.3.1-alpha and uses infill " @@ -8653,8 +8713,8 @@ msgid "" "Show a notification with a link to browse shared profiles when the selected " "printer is changed." msgstr "" -"Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten " -"Profilen an, wenn der ausgewählte Drucker geändert wird." +"Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von " +"geteilten Profilen an, wenn der ausgewählte Drucker geändert wird." msgid "Use window buttons on left side" msgstr "Windows Taste auf der linken Seite verwenden" @@ -8874,21 +8934,33 @@ msgstr "Freie Kamera verwenden" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Wenn aktiviert, wird die freie Kamera verwendet." -msgid "Swap pan and rotate mouse buttons" -msgstr "Schwenk- und Dreh-Maustasten vertauschen" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Wenn aktiviert, werden die Schwenk- und Drehfunktionen der linken und " -"rechten Maustaste vertauscht." - msgid "Reverse mouse zoom" msgstr "Maus-Zoom umkehren" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Wenn aktiviert, wird die Richtung des Zooms mit dem Mausrad umgekehrt." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Meine Auswahl löschen bei ..." @@ -8913,6 +8985,59 @@ msgstr "" "Lösche meine Auswahl zum Synchronisieren des Druckerprofils nach dem Laden " "der Datei." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Deaktiviert" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Login region" @@ -8925,9 +9050,9 @@ msgid "" "BBL machines or use LAN mode only can safely turn on this function." msgstr "" "Dies deaktiviert alle Cloud-Dienste, z.B. Orca Cloud und Bambu Cloud. Dies " -"stoppt auch die Übertragung von Daten an die Cloud-Dienste von Bambu. Benutzer, " -"die keine BBL-Maschinen verwenden oder nur den LAN-Modus nutzen, können diese " -"Funktion sicher aktivieren." +"stoppt auch die Übertragung von Daten an die Cloud-Dienste von Bambu. " +"Benutzer, die keine BBL-Maschinen verwenden oder nur den LAN-Modus nutzen, " +"können diese Funktion sicher aktivieren." msgid "Network test" msgstr "Netzwerktest" @@ -8945,8 +9070,8 @@ msgid "" "Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu " "login section appears on the homepage." msgstr "" -"Erlaubt das Anmelden bei Bambu Cloud neben Orca Cloud. Wenn aktiviert, erscheint " -"ein Bambu-Login-Bereich auf der Startseite." +"Erlaubt das Anmelden bei Bambu Cloud neben Orca Cloud. Wenn aktiviert, " +"erscheint ein Bambu-Login-Bereich auf der Startseite." msgid "Update & sync" msgstr "Aktualisieren & synchronisieren" @@ -9081,6 +9206,15 @@ msgstr "Entwicklermodus" msgid "Skip AMS blacklist check" msgstr "Überspringen der AMS Blacklist-Prüfung" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Fehlerhaften Speicher zulassen" @@ -10200,8 +10334,8 @@ msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " "height limits, this may cause printing quality issues." msgstr "" -"Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder -" -"> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen." +"Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder " +"-> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen." msgid "Adjust to the set range automatically?\n" msgstr "Automatisch an den eingestellten Bereich anpassen?\n" @@ -10238,8 +10372,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 "" "Wenn Sie einen Zeitraffer ohne Werkzeugkopf aufnehmen, wird empfohlen, einen " "\"Timelapse Reinigungsturm\" hinzuzufügen, indem Sie mit der rechten " @@ -10806,31 +10940,26 @@ msgid "" " %s max delta %d %s, current delta %d %s\n" msgstr "" - msgid "" "Some first-layer and other-layer temperature pairs exceed safety limits.\n" msgstr "" - msgid "" "\n" "Invalid pairs:\n" msgstr "" - msgid "" "\n" "You can go back to edit values, or continue if this is intentional." msgstr "" - msgid "" "\n" "\n" "Continue anyway?" msgstr "" - msgid "Temperature Safety Check" msgstr "Temperatur-Sicherheitsprüfung" @@ -10888,6 +11017,32 @@ msgstr "Nicht speichern" msgid "Discard" msgstr "Verwerfen" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "" "Klicken Sie mit der rechten Maustaste, um den vollständigen Text anzuzeigen." @@ -11312,8 +11467,8 @@ msgstr "" msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" -"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach Objekt" -"\" eingestellt ist." +"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach " +"Objekt\" eingestellt ist." msgid "" "You selected external and AMS filament at the same time in an extruder, you " @@ -11427,15 +11582,16 @@ msgid "" "Native Wayland liveview requires the GStreamer GTK video sink. Please " "install the gtksink plugin for GStreamer, then restart OrcaSlicer." msgstr "" -"Native Wayland Liveview erfordert das GStreamer GTK Video Sink. Bitte installieren " -"Sie das gtksink-Plugin für GStreamer und starten Sie OrcaSlicer neu." +"Native Wayland Liveview erfordert das GStreamer GTK Video Sink. Bitte " +"installieren Sie das gtksink-Plugin für GStreamer und starten Sie OrcaSlicer " +"neu." msgid "" "Failed to initialize the native Wayland GStreamer video sink. Please check " "your GStreamer GTK plugin installation." msgstr "" -"Fehler beim Initialisieren des nativen Wayland GStreamer Video Sinks. Bitte überprüfen " -"Ihre GStreamer GTK-Plugin-Installation." +"Fehler beim Initialisieren des nativen Wayland GStreamer Video Sinks. Bitte " +"überprüfen Ihre GStreamer GTK-Plugin-Installation." msgid "" "Windows Media Player is required for this task! Do you want to enable " @@ -11455,8 +11611,9 @@ msgid "" "Missing BambuSource component registered for media playing! Please re-" "install OrcaSlicer or seek community help." msgstr "" -"Fehlende BambuSource-Komponente, die für das Abspielen von Medien registriert ist! " -"Bitte installieren Sie OrcaSlicer neu oder suchen Sie Hilfe in der Community." +"Fehlende BambuSource-Komponente, die für das Abspielen von Medien " +"registriert ist! Bitte installieren Sie OrcaSlicer neu oder suchen Sie Hilfe " +"in der Community." msgid "" "Using a BambuSource from a different install, video play may not work " @@ -11476,7 +11633,9 @@ msgstr "" "gstreamer1.0-libav zu installieren und starten Sie Orca Slicer neu?)" msgid "Cloud agent is not available. Please restart OrcaSlicer and try again." -msgstr "Cloud-Agent ist nicht verfügbar. Bitte starten Sie OrcaSlicer neu und versuchen Sie es erneut." +msgstr "" +"Cloud-Agent ist nicht verfügbar. Bitte starten Sie OrcaSlicer neu und " +"versuchen Sie es erneut." msgid "Bambu Network plug-in not detected." msgstr "Bambu Network Plugin nicht erkannt." @@ -11487,6 +11646,9 @@ msgstr "Hier klicken um es herunterzuladen." msgid "Login" msgstr "Anmelden" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Aktion erforderlich] " @@ -11524,6 +11686,18 @@ msgstr "Liste der Tastaturkürzel anzeigen" msgid "Global shortcuts" msgstr "Globale Tastaturkürzel" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -12015,11 +12189,12 @@ msgid "" "Check your firmware version and update your G-code flavor to ´Marlin 2´" msgstr "" "Input Shaping wird von Marlin < 2.1.2 nicht unterstützt.\n" -"Überprüfen Sie Ihre Firmware-Version und aktualisieren Sie Ihren G-Code-Flavour " -"auf 'Marlin 2'" +"Überprüfen Sie Ihre Firmware-Version und aktualisieren Sie Ihren G-Code-" +"Flavour auf 'Marlin 2'" msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2" -msgstr "Input Shaping wird nur von Klipper, RepRapFirmware und Marlin 2 unterstützt" +msgstr "" +"Input Shaping wird nur von Klipper, RepRapFirmware und Marlin 2 unterstützt" msgid "Grouping error: " msgstr "Gruppierungsfehler: " @@ -12030,9 +12205,6 @@ msgstr " kann nicht platziert werden in der " msgid "Internal Bridge" msgstr "Interne Brücke" -msgid "Multiple" -msgstr "Mehrere" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -12186,25 +12358,25 @@ msgid "" "temperature must fall within the recommended nozzle temperature range of the " "other filaments. Otherwise, nozzle clogging or printer damage may occur." msgstr "" -"Die ausgewählten Düsentemperaturen sind nicht kompatibel. Die Düsentemperatur " -"jedes Filaments muss innerhalb des empfohlenen Düsentemperaturbereichs der " -"anderen Filamente liegen. Andernfalls kann es zu Düsenverstopfungen oder " -"Druckerschäden kommen." +"Die ausgewählten Düsentemperaturen sind nicht kompatibel. Die " +"Düsentemperatur jedes Filaments muss innerhalb des empfohlenen " +"Düsentemperaturbereichs der anderen Filamente liegen. Andernfalls kann es zu " +"Düsenverstopfungen oder Druckerschäden kommen." msgid "" "Invalid recommended nozzle temperature range. The lower bound must be lower " "than the upper bound." msgstr "" -"Ungültiger empfohlener Düsentemperaturbereich. Die untere Grenze muss niedriger " -"sein als die obere Grenze." +"Ungültiger empfohlener Düsentemperaturbereich. Die untere Grenze muss " +"niedriger sein als die obere Grenze." msgid "" "If you still want to print, you can enable the option in Preferences / " "Control / Slicing / Remove mixed temperature restriction." msgstr "" "Wenn Sie trotzdem drucken möchten, können Sie die Option in Einstellungen / " -"Steuerung / Schneiden / Entfernen der gemischten Temperaturbeschränkung aktivieren." - +"Steuerung / Schneiden / Entfernen der gemischten Temperaturbeschränkung " +"aktivieren." msgid "No extrusions under current settings." msgstr "Keine Extrusion unter den aktuellen Einstellungen." @@ -12219,8 +12391,8 @@ msgstr "" msgid "" "Clumping detection is not supported when \"by object\" sequence is enabled." msgstr "" -"Die Klumpenerkennung wird nicht unterstützt, wenn die Sequenz \"nach Objekt" -"\" aktiviert ist." +"Die Klumpenerkennung wird nicht unterstützt, wenn die Sequenz \"nach " +"Objekt\" aktiviert ist." msgid "" "Enabling both precise Z height and the prime tower may cause slicing errors." @@ -12427,7 +12599,6 @@ msgid "" "The Hollow base pattern is not supported by this support type; Rectilinear " "will be used instead." msgstr "" -"" msgid "" "Support enforcers are used but support is not enabled. Please enable support." @@ -12690,8 +12861,8 @@ msgstr "" "Feld sollte den Hostnamen, die IP-Adresse oder die URL der Drucker-Host-" "Instanz enthalten. Auf einen Drucker-Host hinter HAProxy mit aktivierter " "Basisauthentifizierung kann zugegriffen werden, indem Benutzername und " -"Passwort in die URL in folgendem Format eingegeben werden: https://username:" -"password@Ihre-octopi-Adresse/" +"Passwort in die URL in folgendem Format eingegeben werden: https://" +"username:password@Ihre-octopi-Adresse/" msgid "Device UI" msgstr "Gerät" @@ -13819,8 +13990,9 @@ msgstr "" msgid "" "Enable this to override the fan speed set in custom G-code during print." -msgstr "Aktivieren Sie dies, um die im benutzerdefinierten G-Code während des Drucks eingestellte Lüftergeschwindigkeit zu überschreiben." - +msgstr "" +"Aktivieren Sie dies, um die im benutzerdefinierten G-Code während des Drucks " +"eingestellte Lüftergeschwindigkeit zu überschreiben." msgid "On completion" msgstr "Nach Abschluss" @@ -13828,7 +14000,9 @@ msgstr "Nach Abschluss" msgid "" "Enable this to override the fan speed set in custom G-code after print " "completion." -msgstr "Aktivieren Sie dies, um die im benutzerdefinierten G-Code nach Abschluss des Drucks eingestellte Lüftergeschwindigkeit zu überschreiben." +msgstr "" +"Aktivieren Sie dies, um die im benutzerdefinierten G-Code nach Abschluss des " +"Drucks eingestellte Lüftergeschwindigkeit zu überschreiben." msgid "" "Speed of exhaust fan during printing. This speed will override the speed in " @@ -13956,9 +14130,6 @@ msgstr "" "4. Auf alle anwenden - erzeugt zweite Brückenschichten für interne und nach " "außen gerichtete Brücken\n" -msgid "Disabled" -msgstr "Deaktiviert" - msgid "External bridge only" msgstr "Nur externe Brücke" @@ -14239,8 +14410,8 @@ msgid "" "external surface finish. It can also cause the infill to shine through the " "external surfaces of the part." msgstr "" -"Reihenfolge der Wand/Füllung. Wenn das Kontrollkästchen nicht aktiviert ist," -"werden die Wände zuerst gedruckt, was in den meisten Fällen am besten " +"Reihenfolge der Wand/Füllung. Wenn das Kontrollkästchen nicht aktiviert " +"ist,werden die Wände zuerst gedruckt, was in den meisten Fällen am besten " "funktioniert.\n" "\n" "Das Drucken der Füllung zuerst kann bei extremen Überhängen helfen, da die " @@ -14261,11 +14432,12 @@ msgid "" "\n" "This option will be disabled if spiral vase mode is enabled." msgstr "" -"Die Richtung, in die die Konturwandschleifen extrudiert" -"werden, wenn man von oben nach unten schaut.\n" -"Löcher werden in die entgegengesetzte Richtung zur Kontur gedruckt," -"um die Ausrichtung mit Schichten beizubehalten, deren Konturpolygone" -"unvollständig sind und die Richtung ändern, wodurch auch teilweise die Kontur eines Lochs gebildet wird.\n" +"Die Richtung, in die die Konturwandschleifen extrudiertwerden, wenn man von " +"oben nach unten schaut.\n" +"Löcher werden in die entgegengesetzte Richtung zur Kontur gedruckt,um die " +"Ausrichtung mit Schichten beizubehalten, deren Konturpolygoneunvollständig " +"sind und die Richtung ändern, wodurch auch teilweise die Kontur eines Lochs " +"gebildet wird.\n" "\n" "Diese Option wird deaktiviert, wenn der Spiralen-Vasenmodus aktiviert ist." @@ -14673,6 +14845,18 @@ msgstr "Automatisch für Spülen" msgid "Auto For Match" msgstr "Automatisch für Übereinstimmung" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Spültemperatur" @@ -14799,11 +14983,11 @@ msgid "" msgstr "" "Wenn aktiviert, wird der Extrusionsfluss durch den kleineren Wert begrenzt, " "der aus der Anpassung (berechnet aus Linienbreite und Schichthöhe) und dem " -"benutzerdefinierten maximalen Fluss berechnet wird. Wenn deaktiviert, wird nur " -"der benutzerdefinierte maximale Fluss angewendet.\n" +"benutzerdefinierten maximalen Fluss berechnet wird. Wenn deaktiviert, wird " +"nur der benutzerdefinierte maximale Fluss angewendet.\n" "\n" -"Hinweis: Experimentelle und unvollständige Funktion, importiert von BBS. Funktional für " -"einige Profile, die die Variable bereits gespeichert haben." +"Hinweis: Experimentelle und unvollständige Funktion, importiert von BBS. " +"Funktional für einige Profile, die die Variable bereits gespeichert haben." msgid "Max volumetric speed multinomial coefficients" msgstr "Maximale volumetrische Geschwindigkeits-Multinomial-Koeffizienten" @@ -15191,6 +15375,17 @@ msgstr "" "Verwendung mehrerer Linien für das Füllmuster, wenn vom Füllmuster " "unterstützt." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Füllmuster" @@ -15368,16 +15563,16 @@ msgid "" "Acceleration of bridges. If the value is expressed as a percentage (e.g. " "50%), it will be calculated based on the outer wall acceleration." msgstr "" -"Beschleunigung der Brücken. Wenn der Wert als Prozentwert angegeben wird (z." -"B. 50%), wird er auf der Grundlage der Beschleunigung der Außenwand " +"Beschleunigung der Brücken. Wenn der Wert als Prozentwert angegeben wird " +"(z.B. 50%), wird er auf der Grundlage der Beschleunigung der Außenwand " "berechnet." msgid "mm/s² or %" msgstr "mm/s² o. %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Beschleunigung der spärlichen Innenfüllung. Wenn der Wert als Prozentwert " "angegeben wird (z.B. 100%), wird er auf der Grundlage der " @@ -15522,13 +15717,13 @@ msgstr "Volle Lüfterdrehzahl ab Schicht" 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 "" -"Die Lüftergeschwindigkeit wird linear von Null bei der Schicht" -"\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht " +"Die Lüftergeschwindigkeit wird linear von Null bei der " +"Schicht\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht " "\"full_fan_speed_layer\" erhöht. \"full_fan_speed_layer\" wird ignoriert, " "wenn es niedriger ist als \"close_fan_the_first_x_layers\",in diesem Fall " "läuft der Lüfter bei Schicht \"close_fan_the_first_x_layers\"+ 1 mit maximal " @@ -15758,12 +15953,14 @@ msgid "" msgstr "" "Rauschtyp für die Fuzzy Skin Generierung:\n" "Klassisch: Klassisches gleichmäßiges Rauschen.\n" -"Perlin: Perlin-Rauschen, das eine konsistentere Textur ergibt.\"n" -"Billow: Ähnlich wie Perlin-Rauschen, aber klumpiger.\n" -"Ridged Multifractal: Ridged-Rauschen mit scharfen, gezackten Merkmalen. Erzeugt marmorartige Texturen.\n" -"Voronoi: Teilt die Oberfläche in Voronoi-Zellen auf und verschiebt jede um eine zufällige Menge. Erzeugt eine Patchwork-Textur.\n" -"Ripple: Gleichmäßiges Wellmuster, das sich links und rechts des ursprünglichen Pfades wellt. Wiederholendes Muster, gewobenes Aussehen." - +"Perlin: Perlin-Rauschen, das eine konsistentere Textur ergibt.\"nBillow: " +"Ähnlich wie Perlin-Rauschen, aber klumpiger.\n" +"Ridged Multifractal: Ridged-Rauschen mit scharfen, gezackten Merkmalen. " +"Erzeugt marmorartige Texturen.\n" +"Voronoi: Teilt die Oberfläche in Voronoi-Zellen auf und verschiebt jede um " +"eine zufällige Menge. Erzeugt eine Patchwork-Textur.\n" +"Ripple: Gleichmäßiges Wellmuster, das sich links und rechts des " +"ursprünglichen Pfades wellt. Wiederholendes Muster, gewobenes Aussehen." msgid "Classic" msgstr "Klassisch" @@ -15818,7 +16015,8 @@ msgid "Number of ripples per layer" msgstr "Anzahl der Wellen pro Schicht" msgid "Controls how many full cycles of ripples will be added per layer." -msgstr "Steuert, wie viele vollständige Wellenzyklen pro Schicht hinzugefügt werden." +msgstr "" +"Steuert, wie viele vollständige Wellenzyklen pro Schicht hinzugefügt werden." msgid "Ripple offset" msgstr "Wellenversatz" @@ -15838,12 +16036,14 @@ msgstr "" "Verschiebt die Wellenphase entlang des Druckpfads um den angegebenen " "Prozentsatz einer Wellenlänge pro Schichtperiode nach vorne.\n" "- 0% hält jede Schicht identisch.\n" -"- 50% verschiebt das Muster um eine halbe Wellenlänge, wodurch die Phase effektiv invertiert wird.\n" -"- 100% verschiebt das Muster um eine volle Wellenlänge, wodurch die ursprüngliche Phase wiederhergestellt wird.\n" +"- 50% verschiebt das Muster um eine halbe Wellenlänge, wodurch die Phase " +"effektiv invertiert wird.\n" +"- 100% verschiebt das Muster um eine volle Wellenlänge, wodurch die " +"ursprüngliche Phase wiederhergestellt wird.\n" "\n" "Die Verschiebung wird einmal alle Anzahl von Schichten angewendet, die durch " -"Schichten zwischen Wellenversatz eingestellt ist, so dass Schichten innerhalb derselben Gruppe identisch gedruckt werden." - +"Schichten zwischen Wellenversatz eingestellt ist, so dass Schichten " +"innerhalb derselben Gruppe identisch gedruckt werden." msgid "Layers between ripple offset" msgstr "Schichten zwischen Wellenversatz" @@ -15862,12 +16062,12 @@ msgstr "" "Legt fest, wie viele aufeinanderfolgende Schichten die gleiche Wellenphase " "teilen, bevor der Versatz angewendet wird.\n" "Beispiel:\n" -"- 1 = Schicht 1 wird mit dem Basis-Wellenmuster gedruckt, dann wird Schicht 2 " -"um den konfigurierten Versatz verschoben, dann kehrt Schicht 3 zum Basis-Muster " -"zurück, und so weiter.\n" -"- 3 = Schichten 1 bis 3 werden mit dem Basis-Wellenmuster gedruckt, dann werden " -"Schichten 4 bis 6 um den konfigurierten Versatz verschoben, dann kehren Schichten " -"7 bis 9 zum Basis-Muster zurück, usw." +"- 1 = Schicht 1 wird mit dem Basis-Wellenmuster gedruckt, dann wird Schicht " +"2 um den konfigurierten Versatz verschoben, dann kehrt Schicht 3 zum Basis-" +"Muster zurück, und so weiter.\n" +"- 3 = Schichten 1 bis 3 werden mit dem Basis-Wellenmuster gedruckt, dann " +"werden Schichten 4 bis 6 um den konfigurierten Versatz verschoben, dann " +"kehren Schichten 7 bis 9 zum Basis-Muster zurück, usw." msgid "Filter out tiny gaps" msgstr "Filtert winzige Lücken aus" @@ -16070,8 +16270,32 @@ msgstr "" "aus, bevor die Geschwindigkeit auf die Zielgeschwindigkeit reduziert wird, " "um den Kühlventilator anzuschubsen.Dies ist bei Lüftern nützlich, bei denen " "eine niedrige PWM-Leistung möglicherweise nicht ausreicht, um den Lüfter vom " -"Stillstand aus zu starten oder um den Lüfter schneller auf Touren zu bringen." -"Setze den Wert auf 0, um diese Funktion zu deaktivieren." +"Stillstand aus zu starten oder um den Lüfter schneller auf Touren zu " +"bringen.Setze den Wert auf 0, um diese Funktion zu deaktivieren." + +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" msgid "Time cost" msgstr "Druckzeit Kosten" @@ -16554,7 +16778,8 @@ msgid "Z contouring enabled" msgstr "Z Konturierung aktiviert" msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)." -msgstr "Z-Schicht-Konturierung aktivieren (auch bekannt als Z-Schicht-Anti-Aliasing)." +msgstr "" +"Z-Schicht-Konturierung aktivieren (auch bekannt als Z-Schicht-Anti-Aliasing)." msgid "Minimize wall height angle" msgstr "Minimale Wandhöhe Winkel" @@ -16564,8 +16789,10 @@ msgid "" "Affects perimeters with a slope less than this angle (degrees).\n" "A reasonable value is 35. Set to 0 to disable." msgstr "" -"Reduziert die Höhe der oberen Oberflächenumrandungen, um der Modellkante zu entsprechen.\n" -"Wirkt sich auf Umrandungen mit einer Neigung unterhalb dieses Winkels (Grad) aus.\n" +"Reduziert die Höhe der oberen Oberflächenumrandungen, um der Modellkante zu " +"entsprechen.\n" +"Wirkt sich auf Umrandungen mit einer Neigung unterhalb dieses Winkels (Grad) " +"aus.\n" "Ein vernünftiger Wert ist 35. Auf 0 setzen, um zu deaktivieren." msgid "°" @@ -16575,7 +16802,8 @@ msgid "Don't alternate fill direction" msgstr "Füllrichtung nicht wechseln" msgid "Disable alternating fill direction when using Z contouring." -msgstr "Wechsel der Füllrichtung bei Verwendung der Z-Konturierung deaktivieren." +msgstr "" +"Wechsel der Füllrichtung bei Verwendung der Z-Konturierung deaktivieren." msgid "Minimum z height" msgstr "Minimale Z-Höhe" @@ -16795,7 +17023,9 @@ msgstr "Input Shaping ausgeben" msgid "" "Override firmware input shaping settings.\n" "If disabled, firmware settings are used." -msgstr "Firmware-Einstellungen für Input Shaping überschreiben.\nWenn deaktiviert, werden die Firmware-Einstellungen verwendet." +msgstr "" +"Firmware-Einstellungen für Input Shaping überschreiben.\n" +"Wenn deaktiviert, werden die Firmware-Einstellungen verwendet." msgid "Input shaper type" msgstr "Input Shaper Typ" @@ -16805,7 +17035,9 @@ msgid "" "Default uses the firmware default settings.\n" "Disable turns off input shaping in the firmware." msgstr "" -"Wählen Sie den Input Shaper Algorithmus.\nStandardmäßig werden die Standardeinstellungen der Firmware verwendet.\nDeaktivieren schaltet die Eingangsformung in der Firmware aus." +"Wählen Sie den Input Shaper Algorithmus.\n" +"Standardmäßig werden die Standardeinstellungen der Firmware verwendet.\n" +"Deaktivieren schaltet die Eingangsformung in der Firmware aus." msgid "MZV" msgstr "MZV" @@ -17016,7 +17248,9 @@ msgid "For the first" msgstr "Für die Erste" msgid "Set special auxiliary cooling fan for the first certain layers." -msgstr "Spezielle Hilfsventilatorgeschwindigkeit für die ersten bestimmten Schichten einstellen." +msgstr "" +"Spezielle Hilfsventilatorgeschwindigkeit für die ersten bestimmten Schichten " +"einstellen." msgid "" "Auxiliary fan speed will be ramped up linearly from layer \"For the first\" " @@ -17025,9 +17259,9 @@ msgid "" "in which case the fan will run at maximum allowed speed at layer \"For the " "first\" + 1." msgstr "" -"Die Geschwindigkeit des Hilfsventilators wird linear von der Schicht \"Für das " -"Erste\" bis zur maximalen Geschwindigkeit bei der Schicht \"Volle Ventilator-" -"geschwindigkeit bei Schicht\" erhöht.\n" +"Die Geschwindigkeit des Hilfsventilators wird linear von der Schicht \"Für " +"das Erste\" bis zur maximalen Geschwindigkeit bei der Schicht \"Volle " +"Ventilator-geschwindigkeit bei Schicht\" erhöht.\n" "\"Volle Ventilatorgeschwindigkeit bei Schicht\" wird ignoriert, wenn sie " "niedriger ist als \"Für das Erste\", in diesem Fall wird der Ventilator bei " "der Schicht \"Für das Erste\" + 1 mit maximaler Geschwindigkeit laufen." @@ -17035,7 +17269,8 @@ msgstr "" msgid "" "Special auxiliary cooling fan speed, effective only for the first x layers." msgstr "" -"Spezielle Hilfsventilatorgeschwindigkeit, nur für die ersten x Schichten wirksam." +"Spezielle Hilfsventilatorgeschwindigkeit, nur für die ersten x Schichten " +"wirksam." msgid "" "The lowest printable layer height for the extruder. Used to limit the " @@ -17685,8 +17920,8 @@ msgstr "" "Geschwindigkeit der äußeren oder inneren Wände abweicht. Wenn die hier " "angegebene Geschwindigkeit höher ist als die Geschwindigkeit der äußeren " "oder inneren Wände, wird der Drucker auf die langsamere der beiden " -"Geschwindigkeiten zurückgesetzt. Wenn sie als Prozentsatz angegeben wird (z." -"B. 80%), wird die Geschwindigkeit auf der Grundlage der jeweiligen " +"Geschwindigkeiten zurückgesetzt. Wenn sie als Prozentsatz angegeben wird " +"(z.B. 80%), wird die Geschwindigkeit auf der Grundlage der jeweiligen " "Geschwindigkeit der äußeren oder inneren Wand berechnet. Der Standardwert " "ist auf 100% eingestellt." @@ -17741,8 +17976,8 @@ msgid "Role base wipe speed" msgstr "Rollenbasierte Wipe Geschwindigkeit" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -18127,10 +18362,10 @@ msgid "" "offers better compatibility with multi-tool and MMU printers and provide " "overall better compatibility." msgstr "" -"Wählen Sie die Implementierung des Reinigungsturms für Mehrmaterialdrucke. Typ 1 " -"wird für Bambu- und Qidi-Drucker mit Filamentabschneider empfohlen. Typ 2 bietet " -"bessere Kompatibilität mit Mehrwerkzeug- und MMU-Druckern und insgesamt bessere " -"Kompatibilität." +"Wählen Sie die Implementierung des Reinigungsturms für Mehrmaterialdrucke. " +"Typ 1 wird für Bambu- und Qidi-Drucker mit Filamentabschneider empfohlen. " +"Typ 2 bietet bessere Kompatibilität mit Mehrwerkzeug- und MMU-Druckern und " +"insgesamt bessere Kompatibilität." msgid "Type 1" msgstr "Typ 1" @@ -18147,6 +18382,19 @@ msgstr "Reinige das restliche Filament im Reinigungsturm" msgid "Enable filament ramming" msgstr "Erlaube Filamentrammen" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Keine dünnen Schichten (Beta)" @@ -18511,15 +18759,18 @@ msgid "Threshold angle" msgstr "Schwellenwinkel" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Für Überhänge, deren Neigungswinkel unter diesem Schwellwert liegt, werden Stützen generiert." -"Je kleiner dieser Wert ist, desto steiler kann der Überhang ohne Stützen gedruckt werden.\n" -"Hinweis: Bei 0 verwenden normale Stützen stattdessen die Schwellwertüberlappung, " -"während Baumstützen auf den Standardwert 30 zurückfallen." +"Für Überhänge, deren Neigungswinkel unter diesem Schwellwert liegt, werden " +"Stützen generiert.Je kleiner dieser Wert ist, desto steiler kann der " +"Überhang ohne Stützen gedruckt werden.\n" +"Hinweis: Bei 0 verwenden normale Stützen stattdessen die " +"Schwellwertüberlappung, während Baumstützen auf den Standardwert 30 " +"zurückfallen." msgid "Threshold overlap" msgstr "Schwellwertüberlappung" @@ -18686,8 +18937,8 @@ msgstr "aktiviere Temperaturkontrolle" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18784,7 +19035,6 @@ msgstr "" "Dieser G-Code wird eingefügt, wenn die Extrusionsart für das aktive Filament " "geändert wird." - msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " "the nozzle diameter." @@ -19417,11 +19667,10 @@ msgid "" "takes precedence." msgstr "" "Die maximale Abweichung, die bei der Reduzierung der Auflösung für die " -"Einstellung 'Maximale Wandauflösung' zulässig ist. Wenn Sie diesen Wert erhöhen, " -"wird der Druck weniger genau, aber der G-Code wird kleiner. 'Maximale Wandabweichung' " -"begrenzt 'Maximale Wandauflösung', so dass wenn die beiden in Konflikt stehen, " -"'Maximale Wandabweichung' Vorrang hat." - +"Einstellung 'Maximale Wandauflösung' zulässig ist. Wenn Sie diesen Wert " +"erhöhen, wird der Druck weniger genau, aber der G-Code wird kleiner. " +"'Maximale Wandabweichung' begrenzt 'Maximale Wandauflösung', so dass wenn " +"die beiden in Konflikt stehen, 'Maximale Wandabweichung' Vorrang hat." msgid "First layer minimum wall width" msgstr "Erste Schicht minimale Wandbreite" @@ -19727,8 +19976,8 @@ msgid "Debug level" msgstr "Fehlersuchstufe" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "Legt die Stufe der Fehlerprotokollierung fest. 0:fatal, 1:error, 2:warning, " "3:info, 4:debug, 5:trace\n" @@ -20287,8 +20536,8 @@ msgstr "Die angegebene Datei konnte nicht gelesen werden, weil sie leer ist." msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Unbekanntes Dateiformat: Die Eingabedatei muss die Endung .stl, .obj oder ." -"amf(.xml) haben." +"Unbekanntes Dateiformat: Die Eingabedatei muss die Endung .stl, .obj " +"oder .amf(.xml) haben." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" @@ -20834,9 +21083,9 @@ msgid "" msgstr "" "Die ausgewählten Düsentemperaturen sind nicht kompatibel. Bei mehrfarbigem " "oder mehrmaterialigem Drucken muss die Düsentemperatur jedes Filaments " -"innerhalb des empfohlenen Düsentemperaturbereichs der anderen Filamente liegen. " -"Andernfalls kann es zu Düsenverstopfungen oder Schäden am Drucker kommen." - +"innerhalb des empfohlenen Düsentemperaturbereichs der anderen Filamente " +"liegen. Andernfalls kann es zu Düsenverstopfungen oder Schäden am Drucker " +"kommen." msgid "Sync AMS and nozzle information" msgstr "AMS- und Düseninformationen synchronisieren" @@ -21555,8 +21804,8 @@ msgstr "" "Möchten Sie es überschreiben?" 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 "" "Wir würden die Profile als \"Hersteller Typ Seriennummer @Drucker, den Sie " @@ -21740,6 +21989,18 @@ msgstr "" "Das Systemprofil erlaubt keine Erstellung. \n" "Bitte geben Sie das Druckermodell oder den Düsendurchmesser erneut ein." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Drucker erfolgreich erstellt" @@ -21992,36 +22253,6 @@ msgid "" "Please click the Sync button above and restart the calibration." msgstr "" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "Düsengröße im Profil: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "Düsengröße gespeichert: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"Die Größe des Düsentypen im Profil stimmt nicht mit der gespeicherten Düse " -"überein. Haben Sie Ihre Düse kürzlich gewechselt ?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "Düse[%d] im Profil: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "Düse[%d] gespeichert: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Ihre Düsenart im Profil stimmt nicht mit der gespeicherten Düse überein. " -"Haben Sie Ihre Düse kürzlich gewechselt?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -22976,26 +23207,17 @@ msgstr "Maximaler Winkel" msgid "Detection radius" msgstr "Erkennungsradius" -msgid "Remove selected points" -msgstr "Ausgewählte Punkte entfernen" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Alle entfernen" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Punkte automatisch generieren" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Ein Mausohr hinzufügen" - -msgid "Delete a brim ear" -msgstr "Löschen Sie ein Mausohr" - -msgid "Adjust head diameter" -msgstr "Kopfdurchmesser anpassen" - -msgid "Adjust section view" -msgstr "Justieren Sie die Schnittansicht" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -23007,8 +23229,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Den Brim-Typ dieses Objekts auf \"bemalt\" setzen" -msgid " invalid brim ears" -msgstr " ungültige Mausohren" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Mausohren" @@ -23299,15 +23521,13 @@ msgstr "" "Wussten Sie, dass Orca Slicer eine Vielzahl von Tastenkombinationen und 3D-" "Szenenoperationen bietet?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Umkehrung bei ungeraden\n" -"Wussten Sie, dass die Funktion Umkehrung bei ungeraden die " -"Oberflächenqualität Ihrer Überhänge erheblich verbessern kann?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23607,6 +23827,85 @@ msgstr "" "wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die " "Wahrscheinlichkeit von Verwerfungen verringert werden kann?" +#~ msgid "Erase all painting" +#~ msgstr "Alles gemalte löschen" + +#~ msgid "Reset cut" +#~ msgstr "Schnitt zurücksetzen" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Schwenk- und Dreh-Maustasten vertauschen" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Wenn aktiviert, werden die Schwenk- und Drehfunktionen der linken und " +#~ "rechten Maustaste vertauscht." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "Düsengröße im Profil: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "Düsengröße gespeichert: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "Die Größe des Düsentypen im Profil stimmt nicht mit der gespeicherten " +#~ "Düse überein. Haben Sie Ihre Düse kürzlich gewechselt ?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "Düse[%d] im Profil: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "Düse[%d] gespeichert: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Ihre Düsenart im Profil stimmt nicht mit der gespeicherten Düse überein. " +#~ "Haben Sie Ihre Düse kürzlich gewechselt?" + +#~ msgid "Remove selected points" +#~ msgstr "Ausgewählte Punkte entfernen" + +#~ msgid "Remove all" +#~ msgstr "Alle entfernen" + +#~ msgid "Auto-generate points" +#~ msgstr "Punkte automatisch generieren" + +#~ msgid "Add a brim ear" +#~ msgstr "Ein Mausohr hinzufügen" + +#~ msgid "Delete a brim ear" +#~ msgstr "Löschen Sie ein Mausohr" + +#~ msgid "Adjust head diameter" +#~ msgstr "Kopfdurchmesser anpassen" + +#~ msgid "Adjust section view" +#~ msgstr "Justieren Sie die Schnittansicht" + +#~ msgid " invalid brim ears" +#~ msgstr " ungültige Mausohren" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Umkehrung bei ungeraden\n" +#~ "Wussten Sie, dass die Funktion Umkehrung bei ungeraden die " +#~ "Oberflächenqualität Ihrer Überhänge erheblich verbessern kann?" + #~ msgid "Pen size" #~ msgstr "Pinselgröße" @@ -24987,9 +25286,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Position setzen" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 566052444c..9de37b6c3f 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2025-05-18 09:32-0300\n" "Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: \n" @@ -107,7 +107,7 @@ msgstr "Apply" msgid "On highlighted overhangs only" msgstr "" -msgid "Erase all painting" +msgid "Erase all" msgstr "" msgid "Highlight overhang areas" @@ -177,6 +177,9 @@ msgstr "" msgid "No auto support" msgstr "" +msgid "Done" +msgstr "" + msgid "Support Generated" msgstr "Support generated" @@ -326,6 +329,12 @@ msgstr "" msgid "Fixed step drag" msgstr "" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "" @@ -474,6 +483,18 @@ msgstr "" msgid "Build Volume" msgstr "" +msgid "Multiple" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "" + msgid "Part" msgstr "" @@ -576,12 +597,6 @@ msgstr "" msgid "Add connectors" msgstr "" -msgid "Reset cut" -msgstr "" - -msgid "Reset cutting plane and remove connectors" -msgstr "" - msgid "Upper part" msgstr "" @@ -600,6 +615,9 @@ msgstr "" msgid "Cut to parts" msgstr "" +msgid "Reset cutting plane and remove connectors" +msgstr "" + msgid "Perform cut" msgstr "" @@ -826,6 +844,9 @@ msgstr "" msgid "Advanced" msgstr "" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1453,15 +1474,6 @@ msgid "" "feature 2 has been feature 1" msgstr "" -msgid "Warning: please select Plane's feature." -msgstr "" - -msgid "Warning: please select Point's or Circle's feature." -msgstr "" - -msgid "Warning: please select two different meshes." -msgstr "" - msgid "Copy to clipboard" msgstr "" @@ -1513,6 +1525,15 @@ msgstr "" msgid "Point and point assembly" msgstr "" +msgid "Warning: please select two different meshes." +msgstr "" + +msgid "Warning: please select Plane's feature." +msgstr "" + +msgid "Warning: please select Point's or Circle's feature." +msgstr "" + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1691,6 +1712,18 @@ msgstr "" msgid "Info" msgstr "" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1749,6 +1782,23 @@ msgid "" "version before it can be used normally." msgstr "" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "" @@ -2281,10 +2331,10 @@ msgstr "" msgid "Edit" msgstr "" -msgid "Delete this filament" +msgid "Merge with" msgstr "" -msgid "Merge with" +msgid "Delete this filament" msgstr "" msgid "Select All" @@ -4416,9 +4466,6 @@ msgstr "" msgid "Proceed" msgstr "" -msgid "Done" -msgstr "" - msgid "Retry" msgstr "" @@ -4674,33 +4721,6 @@ msgstr "" msgid "Mixed" msgstr "" -msgid "mm/s" -msgstr "" - -msgid "mm/s²" -msgstr "" - -msgid "Flow rate" -msgstr "" - -msgid "mm³/s" -msgstr "" - -msgid "Fan speed" -msgstr "" - -msgid "°C" -msgstr "" - -msgid "Time" -msgstr "" - -msgid "Actual speed profile" -msgstr "" - -msgid "Speed: " -msgstr "" - msgid "Height: " msgstr "" @@ -4734,6 +4754,33 @@ msgstr "" msgid "PA: " msgstr "" +msgid "mm/s" +msgstr "" + +msgid "mm/s²" +msgstr "" + +msgid "mm³/s" +msgstr "" + +msgid "Flow rate" +msgstr "" + +msgid "Fan speed" +msgstr "" + +msgid "°C" +msgstr "" + +msgid "Time" +msgstr "" + +msgid "Speed: " +msgstr "" + +msgid "Actual speed profile" +msgstr "" + msgid "Statistics of All Plates" msgstr "" @@ -5045,9 +5092,6 @@ msgstr "" msgid "Arrange options" msgstr "" -msgid "Spacing" -msgstr "" - msgid "0 means auto spacing." msgstr "" @@ -5182,7 +5226,7 @@ msgstr "" msgid "Size:" msgstr "" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5560,6 +5604,15 @@ msgstr "" msgid "Export" msgstr "" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "" @@ -5685,6 +5738,9 @@ msgstr "" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "" @@ -8089,19 +8145,33 @@ msgstr "" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" -msgid "Swap pan and rotate mouse buttons" -msgstr "" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" - msgid "Reverse mouse zoom" msgstr "" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "" @@ -8124,6 +8194,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "" @@ -8270,6 +8393,15 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "" @@ -9240,8 +9372,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 "" msgid "" @@ -9840,6 +9972,32 @@ msgstr "" msgid "Discard" msgstr "" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "" @@ -10343,6 +10501,9 @@ msgstr "" msgid "Login" msgstr "" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "" @@ -10379,6 +10540,18 @@ msgstr "" msgid "Global shortcuts" msgstr "" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -10841,9 +11014,6 @@ msgstr "" msgid "Internal Bridge" msgstr "" -msgid "Multiple" -msgstr "" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "Failed to calculate line width of %1%. Cannot get value of “%2%” " @@ -12308,9 +12478,6 @@ msgid "" "external-facing bridges\n" msgstr "" -msgid "Disabled" -msgstr "" - msgid "External bridge only" msgstr "" @@ -12825,6 +12992,18 @@ msgstr "" msgid "Auto For Match" msgstr "" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "" @@ -13242,6 +13421,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "" @@ -13394,8 +13584,8 @@ msgid "mm/s² or %" msgstr "" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" msgid "" @@ -13520,10 +13710,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 "" msgid "layer" @@ -13939,6 +14129,30 @@ msgid "" "Set to 0 to deactivate." msgstr "" +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "" @@ -15287,8 +15501,8 @@ msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -15600,6 +15814,19 @@ msgstr "" msgid "Enable filament ramming" msgstr "" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "" @@ -15900,15 +16127,17 @@ msgid "Threshold angle" msgstr "" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgid "Threshold overlap" msgstr "" @@ -16042,8 +16271,8 @@ msgstr "" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -16868,8 +17097,8 @@ msgid "Debug level" msgstr "" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" msgid "Enable timelapse for print" @@ -18447,8 +18676,8 @@ msgid "" 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 "" @@ -18617,6 +18846,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "" @@ -18834,32 +19075,6 @@ msgid "" "Please click the Sync button above and restart the calibration." msgstr "" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -19604,25 +19819,16 @@ msgstr "" msgid "Detection radius" msgstr "" -msgid "Remove selected points" +msgid "Selected" msgstr "" -msgid "Remove all" +msgid "Auto-generate" msgstr "" -msgid "Auto-generate points" +msgid "Generate brim ears using Max angle and Detection radius" msgstr "" -msgid "Add a brim ear" -msgstr "" - -msgid "Delete a brim ear" -msgstr "" - -msgid "Adjust head diameter" -msgstr "" - -msgid "Adjust section view" +msgid "Add or Select" msgstr "" msgid "" @@ -19633,7 +19839,7 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "" -msgid " invalid brim ears" +msgid "invalid brim ears" msgstr "" msgid "Brim Ears" @@ -19876,11 +20082,12 @@ msgid "" "3D scene operations?" msgstr "" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" #: resources/data/hints.ini: [hint:Cut Tool] diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 10785b1760..c28d9561a5 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: Ian A. Bassi <>\n" "Language-Team: \n" @@ -121,8 +121,8 @@ msgstr "Realizar" msgid "On highlighted overhangs only" msgstr "Solo en voladizos resaltados" -msgid "Erase all painting" -msgstr "Borrar todo lo pintado" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Resaltar las zonas de voladizos" @@ -191,6 +191,9 @@ msgstr "Resalte las caras según el ángulo del voladizo." msgid "No auto support" msgstr "No auto soportes" +msgid "Done" +msgstr "Hecho" + msgid "Support Generated" msgstr "Soportes generados" @@ -346,6 +349,12 @@ msgstr "Selección de parte" msgid "Fixed step drag" msgstr "Arrastre de paso fijo" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Escalado de un solo lado" @@ -496,6 +505,18 @@ msgstr "Posición de corte" msgid "Build Volume" msgstr "Volumen de construcción" +msgid "Multiple" +msgstr "Múltiple" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Separación" + msgid "Part" msgstr "Pieza" @@ -603,12 +624,6 @@ msgstr "Editar conectores" msgid "Add connectors" msgstr "Añadir conectores" -msgid "Reset cut" -msgstr "Reiniciar corte" - -msgid "Reset cutting plane and remove connectors" -msgstr "Reajustar el plano de corte y retirar los conectores" - msgid "Upper part" msgstr "Parte superior" @@ -627,6 +642,9 @@ msgstr "Después del corte" msgid "Cut to parts" msgstr "Cortar en piezas" +msgid "Reset cutting plane and remove connectors" +msgstr "Reajustar el plano de corte y retirar los conectores" + msgid "Perform cut" msgstr "Realizar corte" @@ -861,6 +879,9 @@ msgstr "Fuente por defecto" msgid "Advanced" msgstr "Avanzado" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1524,16 +1545,6 @@ msgstr "" "Característica 1 se ha reiniciado.\n" "característica 2 ha sido característica 1" -msgid "Warning: please select Plane's feature." -msgstr "Advertencia: por favor selecciona la característica del Plano." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "" -"Advertencia: por favor selecciona la característica del Punto o Círculo." - -msgid "Warning: please select two different meshes." -msgstr "Advertencia: por favor selecciona dos malla distintas." - msgid "Copy to clipboard" msgstr "Copiar al portapapeles" @@ -1587,6 +1598,16 @@ msgstr "(Moviendo)" msgid "Point and point assembly" msgstr "Ensamblaje punto a punto" +msgid "Warning: please select two different meshes." +msgstr "Advertencia: por favor selecciona dos malla distintas." + +msgid "Warning: please select Plane's feature." +msgstr "Advertencia: por favor selecciona la característica del Plano." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "" +"Advertencia: por favor selecciona la característica del Punto o Círculo." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1784,6 +1805,18 @@ msgstr "Esta es la versión más reciente." msgid "Info" msgstr "Información" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1851,6 +1884,23 @@ msgstr "" "La versión de Orca Slicer es una versión demasiado antigua y necesita ser " "actualizada a la última versión antes de poder utilizarla con normalidad." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "" "Recuperando información de la impresora, por favor, inténtelo de nuevo más " @@ -2425,12 +2475,12 @@ msgstr "" msgid "Edit" msgstr "Editar" -msgid "Delete this filament" -msgstr "Eliminar este filamento" - msgid "Merge with" msgstr "Fusionar con" +msgid "Delete this filament" +msgstr "Eliminar este filamento" + msgid "Select All" msgstr "Seleccionar Todo" @@ -4833,9 +4883,6 @@ msgstr "Deja de secar" msgid "Proceed" msgstr "Continuar" -msgid "Done" -msgstr "Hecho" - msgid "Retry" msgstr "Reintentar" @@ -5100,33 +5147,6 @@ msgstr "Transición de soporte" msgid "Mixed" msgstr "Mixto" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Test de Flujo" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Velocidad del ventilador" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Tiempo" - -msgid "Actual speed profile" -msgstr "Perfil de velocidad real" - -msgid "Speed: " -msgstr "Velocidad: " - msgid "Height: " msgstr "Altura: " @@ -5160,6 +5180,33 @@ msgstr "Jerk: " msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Test de Flujo" + +msgid "Fan speed" +msgstr "Velocidad del ventilador" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Tiempo" + +msgid "Speed: " +msgstr "Velocidad: " + +msgid "Actual speed profile" +msgstr "Perfil de velocidad real" + msgid "Statistics of All Plates" msgstr "Estadísticas de todas las Camas" @@ -5504,9 +5551,6 @@ msgstr "Orientar" msgid "Arrange options" msgstr "Opciones de Organización" -msgid "Spacing" -msgstr "Separación" - msgid "0 means auto spacing." msgstr "0 significa auto separación." @@ -5641,7 +5685,7 @@ msgstr "Volumen:" msgid "Size:" msgstr "Tamaño:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -6043,6 +6087,15 @@ msgstr "Exportar configuración actual a archivos" msgid "Export" msgstr "Exportar" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Salir del programa" @@ -6170,6 +6223,9 @@ msgstr "Vista" msgid "Preset Bundle" msgstr "Paquete de perfiles" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Ayuda" @@ -8862,21 +8918,33 @@ msgstr "" "Si está activada, utiliza la cámara libre. Si no está activada, utiliza la " "cámara restringida." -msgid "Swap pan and rotate mouse buttons" -msgstr "Intercambiar los botones de panorámica y rotación del mouse" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Si está habilitado, intercambia las funciones de panorámica y rotación de " -"los botones izquierdo y derecho del mouse." - msgid "Reverse mouse zoom" msgstr "Invertir el zoom del ratón" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Si se activa, invierte la dirección del zoom con la rueda del ratón." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Limpiar mi elección en..." @@ -8901,6 +8969,59 @@ msgstr "" "Limpiar mi elección para sincronizar el preajuste de la impresora después de " "cargar el archivo." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Desactivado" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Región de inicio de sesión" @@ -9067,6 +9188,15 @@ msgstr "Modo de desarrollador" msgid "Skip AMS blacklist check" msgstr "Evitar la comprobación de lista negra de AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Permitir almacenamiento anómalo" @@ -9576,8 +9706,8 @@ msgid "" "start printing." msgstr "" "Hay algunos filamentos desconocidos en los mapeados AMS. Por favor, " -"compruebe si son los filamentos requeridos. Si lo son, presione \"Confirmar" -"\" para empezar a imprimir." +"compruebe si son los filamentos requeridos. Si lo son, presione " +"\"Confirmar\" para empezar a imprimir." msgid "Please check the following:" msgstr "Por favor compruebe lo siguiente:" @@ -10226,8 +10356,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 "" "Cuando se graba un timelapse sin cabezal, se recomienda añadir una \"Torre " "de Purga de Timelapse\" haciendo clic con el botón derecho del ratón en una " @@ -10881,6 +11011,32 @@ msgstr "No guardar" msgid "Discard" msgstr "Descartar" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + 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." @@ -11469,6 +11625,9 @@ msgstr "Presione aquí para descargarlo." msgid "Login" msgstr "Inicio de sesión" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Acción requerida] " @@ -11506,6 +11665,18 @@ msgstr "Muestra lista de atajos de teclado" msgid "Global shortcuts" msgstr "Atajos globales" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -12005,9 +12176,6 @@ msgstr " no se puede colocar en el " msgid "Internal Bridge" msgstr "Puente Interior" -msgid "Multiple" -msgstr "Múltiple" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -12661,8 +12829,8 @@ msgstr "" "contener el nombre de host, la dirección IP o la URL de la instancia de la " "impresora. Se puede acceder a la impresora detrás de un proxy con la " "autenticación básica activada por un nombre de usuario y contraseña en la " -"URL en el siguiente formato: https://nombredeusuario:" -"contraseña@tudirecciondeoctopi/" +"URL en el siguiente formato: https://" +"nombredeusuario:contraseña@tudirecciondeoctopi/" msgid "Device UI" msgstr "IU de dispositivo" @@ -13914,9 +14082,6 @@ msgstr "" "4. Aplicar a todos - genera segundas capas de puente tanto para puentes " "internos como externos.\n" -msgid "Disabled" -msgstr "Desactivado" - msgid "External bridge only" msgstr "Solo puente externo" @@ -14630,6 +14795,18 @@ msgstr "Auto para Descarga" msgid "Auto For Match" msgstr "Auto para Coincidencia" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Temperatura de descarga" @@ -15155,6 +15332,17 @@ msgstr "" "Usar múltiples líneas para el patrón de relleno, si el patrón de relleno lo " "soporta." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Patrón de relleno de baja densidad" @@ -15338,8 +15526,8 @@ msgid "mm/s² or %" msgstr "mm/s² o %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Aceleración del relleno de baja densidad. Si el valor se expresa en " "porcentaje (por ejemplo 100%), se calculará basándose en la aceleración por " @@ -15480,16 +15668,16 @@ msgstr "Velocidad máxima del ventilador en la capa" 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 "" "La velocidad de ventilador se incrementará linealmente de cero desde la capa " -"\"close_fan_the_first_x_layers\" al máximo en la capa \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" se ignorará si es menor que " -"\"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará al " -"máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" al máximo en la capa " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" se ignorará si es menor " +"que \"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará " +"al máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1." msgid "layer" msgstr "capa" @@ -15683,10 +15871,10 @@ msgstr "" "Al mismo tiempo, el ancho de extrusión para una capa determinada tampoco " "debe estar por debajo de un cierto umbral, que suele ser el 15–25%% de la " "altura de capa. Por lo tanto, el espesor máximo de piel difusa con un ancho " -"de perímetro de 0,4 mm y una altura de capa de 0,2 mm será 0,4-(0,2*0,25)=" -"±0,35 mm. Si introduce un valor mayor, se mostrará el error Flow::spacing() " -"y el modelo no se podrá laminar. Puede ajustar este valor hasta que deje de " -"producirse el error." +"de perímetro de 0,4 mm y una altura de capa de 0,2 mm será 0,4-" +"(0,2*0,25)=±0,35 mm. Si introduce un valor mayor, se mostrará el error " +"Flow::spacing() y el modelo no se podrá laminar. Puede ajustar este valor " +"hasta que deje de producirse el error." msgid "Displacement" msgstr "Desplazamiento" @@ -16037,6 +16225,30 @@ msgstr "" "para que el ventilador alcance la velocidad más rápido.\n" "Ajústelo a 0 para desactivarlo." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Coste monetario por hora" @@ -17721,8 +17933,8 @@ msgid "Role base wipe speed" msgstr "Velocidad de purga según tipo de línea" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -18125,6 +18337,19 @@ msgstr "Purgar el filamento restante en una torre." msgid "Enable filament ramming" msgstr "Habilitar compactación de filamento" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Sin capas de baja densidad (beta)" @@ -18482,15 +18707,18 @@ msgid "Threshold angle" msgstr "Pendiente máxima" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Se generará soporte para los voladizos cuyo ángulo de inclinación sea inferior al umbral." -"Cuanto menor sea este valor, más pronunciado podrá ser el voladizo que se imprima sin soporte.\n" -"Nota: Si se establece en 0, los soportes normales usarán en su lugar Umbral de solapamiento, " -"mientras que los soportes de árbol volverán al valor predeterminado de 30." +"Se generará soporte para los voladizos cuyo ángulo de inclinación sea " +"inferior al umbral.Cuanto menor sea este valor, más pronunciado podrá ser el " +"voladizo que se imprima sin soporte.\n" +"Nota: Si se establece en 0, los soportes normales usarán en su lugar Umbral " +"de solapamiento, mientras que los soportes de árbol volverán al valor " +"predeterminado de 30." msgid "Threshold overlap" msgstr "Umbral de solapamiento" @@ -18659,8 +18887,8 @@ msgstr "Activar control de temperatura" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -19231,8 +19459,8 @@ msgid "" "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " "following format: \"XxY, XxY, ...\"" msgstr "" -"Los tamaños de las imágenes para almacenar en archivos .gcode y .sl1 / ." -"sl1s, en el siguiente formato: \"XxY, XxY, ...\"" +"Los tamaños de las imágenes para almacenar en archivos .gcode " +"y .sl1 / .sl1s, en el siguiente formato: \"XxY, XxY, ...\"" msgid "Format of G-code thumbnails" msgstr "Formato de las miniaturas de G-Code" @@ -19700,8 +19928,8 @@ msgid "Debug level" msgstr "Nivel de depuración" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "Ajusta el nivel de registro de depuración. 0:fatal, 1:error, 2:advertencia, " "3:información, 4:depuración, 5:rastreo\n" @@ -20258,13 +20486,13 @@ msgstr "El archivo proporcionado no puede ser leído debido a que está vacío" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Formato de archivo desconocido: el archivo de entrada debe tener extensión ." -"STL, .obj o .amf (.xml)." +"Formato de archivo desconocido: el archivo de entrada debe tener " +"extensión .STL, .obj o .amf (.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Formato de archivo desconocido: el archivo de entrada debe tener " -"extensión .3mf o .zip.amf." +"Formato de archivo desconocido: el archivo de entrada debe tener extensión " +".3mf o .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: fallo al parsear" @@ -20526,12 +20754,12 @@ msgstr "" "impresión de varios colores/materiales, la impresora utilizará el parámetro " "de compensación por defecto para el filamento durante cada cambio de " "filamento que tendrá un buen resultado en la mayoría de los casos.\n" -"un solo color/material, con la opción \"calibración de la dinámica de flujo" -"\" marcada en el menú de inicio de impresión, la impresora seguirá el camino " -"antiguo, calibrar el filamento antes de la impresión; cuando se inicia una " -"impresión de varios colores/materiales, la impresora utilizará el parámetro " -"de compensación por defecto para el filamento durante cada cambio de " -"filamento que tendrá un buen resultado en la mayoría de los casos.\n" +"un solo color/material, con la opción \"calibración de la dinámica de " +"flujo\" marcada en el menú de inicio de impresión, la impresora seguirá el " +"camino antiguo, calibrar el filamento antes de la impresión; cuando se " +"inicia una impresión de varios colores/materiales, la impresora utilizará el " +"parámetro de compensación por defecto para el filamento durante cada cambio " +"de filamento que tendrá un buen resultado en la mayoría de los casos.\n" "\n" "Tenga en cuenta que hay algunos casos que pueden hacer que los resultados de " "la calibración no sean fiables, como una adhesión insuficiente en la cama de " @@ -21539,8 +21767,8 @@ msgstr "" "¿Quieres reescribirlo?" 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 "" "Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora " @@ -21730,6 +21958,18 @@ msgstr "" "Por favor, vuelva a introducir el modelo de la impresora o el diámetro de la " "boquilla." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Impresora creada con éxito" @@ -21987,36 +22227,6 @@ msgstr "" "impresora.\n" "Haga clic en el botón Sincronizar situado arriba y reinicie la calibración." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "tamaño de la boquilla en el preajuste: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "tamaño de boquilla guardado: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"El tamaño del tipo de boquilla preestablecido no coincide con la boquilla " -"memorizada. ¿Ha cambiado la boquilla recientemente?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "boquilla[%d] en preajuste: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "boquilla[%d] memorizada: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"El tipo de boquilla preestablecido no coincide con la boquilla memorizada. " -"¿Ha cambiado la boquilla recientemente?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Imprimir material %1s con una boquilla %2s puede dañar la boquilla." @@ -22977,26 +23187,17 @@ msgstr "Ángulo máximo" msgid "Detection radius" msgstr "Radio de detección" -msgid "Remove selected points" -msgstr "Eliminar puntos seleccionados" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Eliminar todo" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Auto-generar puntos" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Añadir oreja de borde" - -msgid "Delete a brim ear" -msgstr "Eliminar oreja de borde" - -msgid "Adjust head diameter" -msgstr "Ajustar diámetro de cabeza" - -msgid "Adjust section view" -msgstr "Ajustar vista de sección" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -23008,8 +23209,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Establecer el tipo de borde de este objeto a \"pintado\"" -msgid " invalid brim ears" -msgstr " orejas de borde inválidas" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Orejas de borde" @@ -23296,15 +23497,13 @@ msgstr "" "¿Sabías que Orca Slicer ofrece una amplia gama de atajos de teclado y " "operaciones de escenas 3D?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Invertir en impar\n" -"¿Sabías que la función Invertir en impar puede mejorar " -"significativamente la calidad de la superficie de los voladizos?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23599,6 +23798,85 @@ msgstr "" "aumentar adecuadamente la temperatura de la cama térmica puede reducir la " "probabilidad de deformaciones?" +#~ msgid "Erase all painting" +#~ msgstr "Borrar todo lo pintado" + +#~ msgid "Reset cut" +#~ msgstr "Reiniciar corte" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Intercambiar los botones de panorámica y rotación del mouse" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Si está habilitado, intercambia las funciones de panorámica y rotación de " +#~ "los botones izquierdo y derecho del mouse." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "tamaño de la boquilla en el preajuste: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "tamaño de boquilla guardado: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "El tamaño del tipo de boquilla preestablecido no coincide con la boquilla " +#~ "memorizada. ¿Ha cambiado la boquilla recientemente?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "boquilla[%d] en preajuste: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "boquilla[%d] memorizada: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "El tipo de boquilla preestablecido no coincide con la boquilla " +#~ "memorizada. ¿Ha cambiado la boquilla recientemente?" + +#~ msgid "Remove selected points" +#~ msgstr "Eliminar puntos seleccionados" + +#~ msgid "Remove all" +#~ msgstr "Eliminar todo" + +#~ msgid "Auto-generate points" +#~ msgstr "Auto-generar puntos" + +#~ msgid "Add a brim ear" +#~ msgstr "Añadir oreja de borde" + +#~ msgid "Delete a brim ear" +#~ msgstr "Eliminar oreja de borde" + +#~ msgid "Adjust head diameter" +#~ msgstr "Ajustar diámetro de cabeza" + +#~ msgid "Adjust section view" +#~ msgstr "Ajustar vista de sección" + +#~ msgid " invalid brim ears" +#~ msgstr " orejas de borde inválidas" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Invertir en impar\n" +#~ "¿Sabías que la función Invertir en impar puede mejorar " +#~ "significativamente la calidad de la superficie de los voladizos?" + #~ msgid "Pen size" #~ msgstr "Tamaño del lápiz" @@ -24672,9 +24950,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Establecer Posición" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" @@ -25642,8 +25917,8 @@ msgstr "" #~ "Cuando grabamos timelapse sin cabezal de impresión, es recomendable " #~ "añadir un \"Torre de Purga de Intervalo\" \n" #~ "presionando con el botón derecho la posición vacía de la cama de " -#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de Purga" -#~ "\"." +#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de " +#~ "Purga\"." #~ msgid "Current association: " #~ msgstr "Asociación actual:" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 97805813d1..e9278dcf0f 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: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -125,8 +125,8 @@ msgstr "Exécuter" msgid "On highlighted overhangs only" msgstr "Uniquement sur les surplombs mis en évidence" -msgid "Erase all painting" -msgstr "Effacer tout" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Mettre en surbrillance les zones en surplomb" @@ -196,6 +196,9 @@ msgstr "Mettre en surbrillance les faces en fonction de l'angle de surplomb." msgid "No auto support" msgstr "Pas de support auto" +msgid "Done" +msgstr "Terminé" + msgid "Support Generated" msgstr "Supports générés" @@ -350,6 +353,12 @@ msgstr "Sélection de pièce" msgid "Fixed step drag" msgstr "Déplacement par pas fixe" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Mise à l'échelle unilatérale" @@ -500,6 +509,18 @@ msgstr "Position de coupe" msgid "Build Volume" msgstr "Volume d’impression" +msgid "Multiple" +msgstr "Plusieurs" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Espacement" + msgid "Part" msgstr "Pièce" @@ -607,12 +628,6 @@ msgstr "Modifier les connecteurs" msgid "Add connectors" msgstr "Ajouter des connecteurs" -msgid "Reset cut" -msgstr "Réinitialiser la coupe" - -msgid "Reset cutting plane and remove connectors" -msgstr "Réinitialiser le plan de coupe et retirer les connecteurs" - msgid "Upper part" msgstr "Partie supérieure" @@ -631,6 +646,9 @@ msgstr "Après la coupe" msgid "Cut to parts" msgstr "Couper la sélection dans le presse-papiers" +msgid "Reset cutting plane and remove connectors" +msgstr "Réinitialiser le plan de coupe et retirer les connecteurs" + msgid "Perform cut" msgstr "Effectuer la coupe" @@ -863,6 +881,9 @@ msgstr "Police de caractères par défaut" msgid "Advanced" msgstr "Avancé" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1537,16 +1558,6 @@ msgstr "" "La fonction 1 a été réinitialisée, \n" "la fonction 2 a été la fonction 1" -msgid "Warning: please select Plane's feature." -msgstr "Avertissement : veuillez sélectionner la fonction du plan." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "" -"Avertissement : veuillez sélectionner la fonction du Point ou du Cercle." - -msgid "Warning: please select two different meshes." -msgstr "Attention : veuillez sélectionner deux maillages différents." - msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" @@ -1600,6 +1611,16 @@ msgstr "(Déplacement)" msgid "Point and point assembly" msgstr "Assemblage point à point" +msgid "Warning: please select two different meshes." +msgstr "Attention : veuillez sélectionner deux maillages différents." + +msgid "Warning: please select Plane's feature." +msgstr "Avertissement : veuillez sélectionner la fonction du plan." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "" +"Avertissement : veuillez sélectionner la fonction du Point ou du Cercle." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1798,6 +1819,18 @@ msgstr "Il s'agit de la version la plus récente." msgid "Info" msgstr "Info" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1866,6 +1899,23 @@ msgstr "" "La version de OrcaSlicer est trop ancienne et doit être mise à jour vers la " "dernière version afin qu’il puisse être utilisé normalement" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "" "Récupération des informations de l'imprimante, veuillez réessayer plus tard." @@ -2431,12 +2481,12 @@ msgstr "" msgid "Edit" msgstr "Éditer" -msgid "Delete this filament" -msgstr "Supprimer ce filament" - msgid "Merge with" msgstr "Fusionner avec" +msgid "Delete this filament" +msgstr "Supprimer ce filament" + msgid "Select All" msgstr "Tout sélectionner" @@ -4820,9 +4870,6 @@ msgstr "Arrêter le séchage" msgid "Proceed" msgstr "Continuer" -msgid "Done" -msgstr "Terminé" - msgid "Retry" msgstr "Réessayer" @@ -5084,33 +5131,6 @@ msgstr "Soutenir la transition" msgid "Mixed" msgstr "Mixte" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Débit" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Vitesse du ventilateur" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Durée" - -msgid "Actual speed profile" -msgstr "Profil de vitesse réel" - -msgid "Speed: " -msgstr "Vitesse: " - msgid "Height: " msgstr "Hauteur: " @@ -5144,6 +5164,33 @@ msgstr "" msgid "PA: " msgstr "AP : " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Débit" + +msgid "Fan speed" +msgstr "Vitesse du ventilateur" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Durée" + +msgid "Speed: " +msgstr "Vitesse: " + +msgid "Actual speed profile" +msgstr "Profil de vitesse réel" + msgid "Statistics of All Plates" msgstr "Statistiques de toutes les plaques" @@ -5489,9 +5536,6 @@ msgstr "Orienter" msgid "Arrange options" msgstr "Options d'agencement" -msgid "Spacing" -msgstr "Espacement" - msgid "0 means auto spacing." msgstr "0 signifie espacement automatique." @@ -5626,7 +5670,7 @@ msgstr "Le volume:" msgid "Size:" msgstr "Taille:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -6030,6 +6074,15 @@ msgstr "Exporter la configuration actuelle vers des fichiers" msgid "Export" msgstr "Exporter" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Quitter" @@ -6159,6 +6212,9 @@ msgstr "Affichage" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Aide" @@ -8849,15 +8905,6 @@ msgstr "" "Si activée, utilise la caméra libre. Si désactivée, utilise la caméra " "contrainte." -msgid "Swap pan and rotate mouse buttons" -msgstr "Échanger les boutons de panoramique et de rotation de la souris" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Si cette option est activée, les fonctions de panoramique et de rotation des " -"boutons gauche et droit de la souris sont échangées." - msgid "Reverse mouse zoom" msgstr "Inverser le zoom de la souris" @@ -8866,6 +8913,27 @@ msgstr "" "Si cette option est activée, elle inverse le sens du zoom avec la molette de " "la souris." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Effacer mon choix sur..." @@ -8890,6 +8958,59 @@ msgstr "" "Effacer mon choix pour la synchronisation du préréglage d'imprimante après " "le chargement du fichier." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Désactivé" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Région d'origine" @@ -9051,6 +9172,15 @@ msgstr "Mode Développeur" msgid "Skip AMS blacklist check" msgstr "Ignorer la vérification de la liste noire AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Autoriser le stockage anormal" @@ -10224,8 +10354,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 "" "Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé " "d’ajouter une \"Tour d’essuyage timelapse\".\n" @@ -10875,6 +11005,32 @@ msgstr "Ne pas enregistrer" msgid "Discard" msgstr "Ignorer" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "" "Cliquez sur le bouton droit de la souris pour afficher le texte complet." @@ -11473,6 +11629,9 @@ msgstr "Cliquez ici pour le télécharger." msgid "Login" msgstr "Connexion" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Action requise] " @@ -11514,6 +11673,18 @@ msgstr "Afficher la liste des raccourcis clavier" msgid "Global shortcuts" msgstr "Raccourcis globaux" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + #, fuzzy msgid "" "Auto orients selected objects or all objects. If there are selected objects, " @@ -12015,9 +12186,6 @@ msgstr " ne peut pas être placé dans le/la " msgid "Internal Bridge" msgstr "Pont interne" -msgid "Multiple" -msgstr "Plusieurs" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13926,9 +14094,6 @@ msgstr "" "4. Appliquer à tous - génère les deuxièmes couches de bridge pour les " "bridges internes et externes.\n" -msgid "Disabled" -msgstr "Désactivé" - msgid "External bridge only" msgstr "Pont externe uniquement" @@ -14649,6 +14814,18 @@ msgstr "Auto pour la purge" msgid "Auto For Match" msgstr "Auto pour la correspondance" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Température de purge" @@ -15173,6 +15350,17 @@ msgstr "" "Utilisation de lignes multiples pour le motif de remplissage, si pris en " "charge par le motif." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Motif de remplissage" @@ -15357,8 +15545,8 @@ msgid "mm/s² or %" msgstr "mm/s² ou %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Accélération du remplissage interne. Si la valeur est exprimée en " "pourcentage (par exemple 100%), elle sera calculée en fonction de " @@ -15497,10 +15685,10 @@ msgstr "Ventilateur à pleine vitesse à la couche" 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 "" "La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à " "la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche " @@ -16027,6 +16215,30 @@ msgstr "" "démarrer le ventilateur plus rapidement.\n" "Mettre à 0 pour désactiver." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Coût horaire" @@ -17688,8 +17900,8 @@ msgid "Role base wipe speed" msgstr "Vitesse d’essuyage basée sur la vitesse d’extrusion" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -18098,6 +18310,19 @@ msgstr "Purger le filament restant dans la tour d’amorçage" msgid "Enable filament ramming" msgstr "Activer le bourrage de filament" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Pas de couches éparses (beta)" @@ -18143,8 +18368,8 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « " -"Fermer les trous » pour fermer tous les trous du modèle." +"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez " +"« Fermer les trous » pour fermer tous les trous du modèle." msgid "Regular" msgstr "Standard" @@ -18458,15 +18683,18 @@ msgid "Threshold angle" msgstr "Angle de seuil" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Un support sera généré pour les surplombs dont l'angle de pente est inférieur au seuil." -"Plus cette valeur est petite, plus le surplomb imprimable sans support est raide.\n" -"Remarque : si elle est définie sur 0, les supports normaux utilisent à la place Chevauchement du seuil, " -"tandis que les supports arborescents reviennent à la valeur par défaut de 30." +"Un support sera généré pour les surplombs dont l'angle de pente est " +"inférieur au seuil.Plus cette valeur est petite, plus le surplomb imprimable " +"sans support est raide.\n" +"Remarque : si elle est définie sur 0, les supports normaux utilisent à la " +"place Chevauchement du seuil, tandis que les supports arborescents " +"reviennent à la valeur par défaut de 30." msgid "Threshold overlap" msgstr "Chevauchement du seuil" @@ -18637,8 +18865,8 @@ msgstr "Activer le contrôle de la température" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -19231,8 +19459,8 @@ msgid "" "Wipe tower is only compatible with relative mode. It is recommended on most " "printers. Default is checked." msgstr "" -"L’extrusion relative est recommandée lors de l’utilisation de l’option « " -"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " +"L’extrusion relative est recommandée lors de l’utilisation de l’option " +"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " "non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est " "compatible qu’avec le mode relatif. Il est recommandé sur la plupart des " "imprimantes. L’option par défaut est cochée" @@ -19681,11 +19909,11 @@ msgid "Debug level" msgstr "Niveau de débogage" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, 2 :" -"avertissement, 3 :info, 4 :débogage, 5 :trace\n" +"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, " +"2 :avertissement, 3 :info, 4 :débogage, 5 :trace\n" msgid "Enable timelapse for print" msgstr "Activer le timelapse pour l’impression" @@ -20247,13 +20475,13 @@ msgstr "Le fichier fourni n'a pas pu être lu car il est vide" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Format de fichier inconnu : le fichier d'entrée doit porter l'extension ." -"stl, .obj ou .amf (.xml)." +"Format de fichier inconnu : le fichier d'entrée doit porter " +"l'extension .stl, .obj ou .amf (.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Format de fichier inconnu : le fichier d'entrée doit porter " -"l'extension .3mf, .zip ou .amf." +"Format de fichier inconnu : le fichier d'entrée doit porter l'extension " +".3mf, .zip ou .amf." msgid "load_obj: failed to parse" msgstr "load_obj : échec de l'analyse" @@ -21528,8 +21756,8 @@ msgstr "" "Voulez-vous le réécrire ?" 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 "" "Nous renommerions les préréglages en « Vendor Type Serial @printer you " @@ -21717,6 +21945,18 @@ msgstr "" "Le préréglage système ne permet pas la création.\n" "Veuillez ressaisir le modèle d'imprimante ou le diamètre de buse." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Création d’une imprimante réussie" @@ -21981,36 +22221,6 @@ msgstr "" "Veuillez cliquer sur le bouton Synchroniser ci-dessus et redémarrer la " "calibration." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "taille de buse dans le préréglage : %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "taille de buse mémorisée : %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"La taille du type de buse dans le préréglage ne correspond pas à la buse " -"mémorisée. Avez-vous changé votre buse récemment ?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "buse[%d] dans le préréglage : %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "buse[%d] mémorisée : %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Votre type de buse dans le préréglage ne correspond pas à la buse mémorisée. " -"Avez-vous changé votre buse récemment ?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Imprimer du matériau %1s avec une buse %2s peut endommager la buse." @@ -22986,26 +23196,17 @@ msgstr "Angle maximal" msgid "Detection radius" msgstr "Rayon de détection" -msgid "Remove selected points" -msgstr "Retirer les points sélectionnés" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Supprimer tout" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Générer automatiquement les points" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Ajouter une bordure à oreilles" - -msgid "Delete a brim ear" -msgstr "Supprimer une bordure à oreilles" - -msgid "Adjust head diameter" -msgstr "Ajuster le diamètre de la tête" - -msgid "Adjust section view" -msgstr "Ajuster la vue de section" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -23017,8 +23218,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Définir le type de bordure de cet objet sur \"peint\"" -msgid " invalid brim ears" -msgstr " bordure à oreilles invalide" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Bordure à oreilles" @@ -23306,16 +23507,13 @@ msgstr "" "Saviez-vous qu’Orca Slicer offre une large gamme de raccourcis clavier et " "d’opérations sur les scènes 3D?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Parois inversées sur couches impaires\n" -"Saviez-vous que la fonction Parois inversées sur couches impaires " -"peut améliorer de manière significative la qualité de la surface de vos " -"surplombs ?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23616,6 +23814,86 @@ 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 "Erase all painting" +#~ msgstr "Effacer tout" + +#~ msgid "Reset cut" +#~ msgstr "Réinitialiser la coupe" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Échanger les boutons de panoramique et de rotation de la souris" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Si cette option est activée, les fonctions de panoramique et de rotation " +#~ "des boutons gauche et droit de la souris sont échangées." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "taille de buse dans le préréglage : %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "taille de buse mémorisée : %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "La taille du type de buse dans le préréglage ne correspond pas à la buse " +#~ "mémorisée. Avez-vous changé votre buse récemment ?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "buse[%d] dans le préréglage : %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "buse[%d] mémorisée : %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Votre type de buse dans le préréglage ne correspond pas à la buse " +#~ "mémorisée. Avez-vous changé votre buse récemment ?" + +#~ msgid "Remove selected points" +#~ msgstr "Retirer les points sélectionnés" + +#~ msgid "Remove all" +#~ msgstr "Supprimer tout" + +#~ msgid "Auto-generate points" +#~ msgstr "Générer automatiquement les points" + +#~ msgid "Add a brim ear" +#~ msgstr "Ajouter une bordure à oreilles" + +#~ msgid "Delete a brim ear" +#~ msgstr "Supprimer une bordure à oreilles" + +#~ msgid "Adjust head diameter" +#~ msgstr "Ajuster le diamètre de la tête" + +#~ msgid "Adjust section view" +#~ msgstr "Ajuster la vue de section" + +#~ msgid " invalid brim ears" +#~ msgstr " bordure à oreilles invalide" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Parois inversées sur couches impaires\n" +#~ "Saviez-vous que la fonction Parois inversées sur couches impaires " +#~ "peut améliorer de manière significative la qualité de la surface de vos " +#~ "surplombs ?" + #~ msgid "Pen size" #~ msgstr "Taille du crayon" @@ -24841,9 +25119,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Définir la Position" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" @@ -25613,8 +25888,8 @@ msgstr "" #~ "modèle. Réglez le « seuil d’une paroi » dans les paramètres avancés ci-" #~ "dessous pour ajuster la sensibilité de ce qui est considéré comme une " #~ "surface supérieure. Le « seuil d’une paroi » n’est visible que si ce " -#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option « " -#~ "surfaces supérieures à une paroi » est activée." +#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option " +#~ "« surfaces supérieures à une paroi » est activée." #, c-format, boost-format #~ msgid "" @@ -26443,8 +26718,8 @@ msgstr "" #~ "thickness (top+bottom solid layers)" #~ msgstr "" #~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour " -#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure" -#~ "+inférieure)." +#~ "garantir l'épaisseur verticale de la coque (couches solides " +#~ "supérieure+inférieure)." #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index 141dd7429a..bc6cfec1df 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,8 +118,8 @@ msgstr "Alkalmaz" msgid "On highlighted overhangs only" msgstr "Csak a kiemelt túlnyúlásokon" -msgid "Erase all painting" -msgstr "Minden festés törlése" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Túlnyúló területek kiemelése" @@ -188,6 +188,9 @@ msgstr "Felületek kiemelése a túlnyúlási szögnek megfelelően." msgid "No auto support" msgstr "Nincs automatikus támasz" +msgid "Done" +msgstr "Kész" + msgid "Support Generated" msgstr "Támasz legenerálva" @@ -341,6 +344,12 @@ msgstr "Rész kijelölése" msgid "Fixed step drag" msgstr "Rögzített lépésközű húzás" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Egyoldalas méretezés" @@ -491,6 +500,18 @@ msgstr "Vágási pozíció" msgid "Build Volume" msgstr "Nyomtatási térfogat" +msgid "Multiple" +msgstr "Többszörös" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Térköz" + msgid "Part" msgstr "Tárgy" @@ -598,12 +619,6 @@ msgstr "Csatlakozók szerkesztése" msgid "Add connectors" msgstr "Csatlakozók hozzáadása" -msgid "Reset cut" -msgstr "Vágás visszaállítása" - -msgid "Reset cutting plane and remove connectors" -msgstr "Vágósík visszaállítása és connectorok eltávolítása" - msgid "Upper part" msgstr "Felső rész" @@ -622,6 +637,9 @@ msgstr "Vágás után" msgid "Cut to parts" msgstr "Részekre darabolás" +msgid "Reset cutting plane and remove connectors" +msgstr "Vágósík visszaállítása és connectorok eltávolítása" + msgid "Perform cut" msgstr "Vágás" @@ -855,6 +873,9 @@ msgstr "Az alapértelmezett nyomtató" msgid "Advanced" msgstr "Haladó" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1509,15 +1530,6 @@ msgstr "" "Az 1. jellemző vissza lett állítva, \n" "a 2. jellemző lett az 1. jellemző" -msgid "Warning: please select Plane's feature." -msgstr "Figyelmeztetés: válaszd a sík jellemzőt." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Figyelmeztetés: válaszd a pont vagy kör jellemzőt." - -msgid "Warning: please select two different meshes." -msgstr "Figyelmeztetés: válassz ki két különböző hálót." - msgid "Copy to clipboard" msgstr "Másolás a vágólapra" @@ -1571,6 +1583,15 @@ msgstr "(Mozgatás)" msgid "Point and point assembly" msgstr "Pont-pont összeállítás" +msgid "Warning: please select two different meshes." +msgstr "Figyelmeztetés: válassz ki két különböző hálót." + +msgid "Warning: please select Plane's feature." +msgstr "Figyelmeztetés: válaszd a sík jellemzőt." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Figyelmeztetés: válaszd a pont vagy kör jellemzőt." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1764,6 +1785,18 @@ msgstr "Ez a legújabb verzió." msgid "Info" msgstr "Infó" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1830,6 +1863,23 @@ msgstr "" "A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell " "frissíteni, mielőtt rendesen használható lenne" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Nyomtatóinformációk lekérése folyamatban, próbáld újra később." @@ -2392,12 +2442,12 @@ msgstr "" msgid "Edit" msgstr "Szerkesztés" -msgid "Delete this filament" -msgstr "Filament törlése" - msgid "Merge with" msgstr "Egyesítés ezzel" +msgid "Delete this filament" +msgstr "Filament törlése" + msgid "Select All" msgstr "Összes kijelölése" @@ -4751,9 +4801,6 @@ msgstr "Szárítás leállítása" msgid "Proceed" msgstr "Folytatás" -msgid "Done" -msgstr "Kész" - msgid "Retry" msgstr "Újra" @@ -5016,33 +5063,6 @@ msgstr "Támasz átmenet" msgid "Mixed" msgstr "Vegyes" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Anyagáramlás" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Ventilátor fordulatszám" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Idő" - -msgid "Actual speed profile" -msgstr "Tényleges sebességprofil" - -msgid "Speed: " -msgstr "Sebesség:" - msgid "Height: " msgstr "Magasság:" @@ -5076,6 +5096,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Anyagáramlás" + +msgid "Fan speed" +msgstr "Ventilátor fordulatszám" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Idő" + +msgid "Speed: " +msgstr "Sebesség:" + +msgid "Actual speed profile" +msgstr "Tényleges sebességprofil" + msgid "Statistics of All Plates" msgstr "Összes tálca statisztikája" @@ -5418,9 +5465,6 @@ msgstr "Orientáció" msgid "Arrange options" msgstr "Elrendezési lehetőségek" -msgid "Spacing" -msgstr "Térköz" - msgid "0 means auto spacing." msgstr "A 0 automatikus térközt jelent." @@ -5555,7 +5599,7 @@ msgstr "Térfogat:" msgid "Size:" msgstr "Méret:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5957,6 +6001,15 @@ msgstr "Aktuális konfiguráció exportálása fájlokba" msgid "Export" msgstr "Exportálás" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Kilépés" @@ -6084,6 +6137,9 @@ msgstr "Nézet" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Segítség" @@ -8700,21 +8756,33 @@ msgstr "" "Ha engedélyezve van, szabad kamerát használ. Ha nincs engedélyezve, akkor " "kötött kamerát használ." -msgid "Swap pan and rotate mouse buttons" -msgstr "Felcserélt pásztázás és forgatás egérgombok" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Ha engedélyezve van, felcseréli a bal és jobb egérgomb pásztázási és " -"forgatási funkcióit." - msgid "Reverse mouse zoom" msgstr "Fordított egér-nagyítás" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Ha engedélyezve van, megfordítja az egérgörgős nagyítás irányát." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Választásom törlése ennél..." @@ -8738,6 +8806,59 @@ msgid "" msgstr "" "Választásom törlése a nyomtatóbeállítás szinkronizálásához fájlbetöltés után." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Letiltva" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Régió" @@ -8904,6 +9025,15 @@ msgstr "Fejlesztői mód" msgid "Skip AMS blacklist check" msgstr "AMS tiltólista ellenőrzés kihagyása" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Rendellenes tároló engedélyezése" @@ -10035,8 +10165,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 "" "Ha a nyomtatófej nélküli időfelvétel engedélyezve van, javasoljuk, hogy " "helyezz el a tálcán egy \"Időfelvétel törlőtornyot\". Ehhez kattints jobb " @@ -10671,6 +10801,32 @@ msgstr "Ne mentsd" msgid "Discard" msgstr "Elvetés" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + 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." @@ -11258,6 +11414,9 @@ msgstr "Kattints ide a letöltéshez." msgid "Login" msgstr "Bejelentkezés" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Művelet szükséges] " @@ -11294,6 +11453,18 @@ msgstr "Gyorsgombok listájának megjelenítése" msgid "Global shortcuts" msgstr "Globális gyorsbillentyűk" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11790,9 +11961,6 @@ msgstr " nem helyezhető ide: " msgid "Internal Bridge" msgstr "Belső híd" -msgid "Multiple" -msgstr "Többszörös" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13660,9 +13828,6 @@ msgstr "" "4. Alkalmazás mindenre - második hídréteget hoz létre mind a belső, mind a " "kifelé néző hidakhoz\n" -msgid "Disabled" -msgstr "Letiltva" - msgid "External bridge only" msgstr "Csak külső híd" @@ -14352,6 +14517,18 @@ msgstr "Automatikus öblítéshez" msgid "Auto For Match" msgstr "Automatikus egyeztetéshez" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Öblítési hőmérséklet" @@ -14861,6 +15038,17 @@ msgstr "" "Több vonal használata a kitöltési mintához, ha azt a kitöltési minta " "támogatja." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Kitöltési mintázat" @@ -15042,8 +15230,8 @@ msgid "mm/s² or %" msgstr "mm/s² vagy %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. " "100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra." @@ -15179,10 +15367,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél" 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 "" "A ventilátor fordulatszáma lineárisan nő nulláról a " "\"close_fan_the_first_x_layers\" rétegtől a maximális értékig a " @@ -15697,6 +15885,30 @@ msgstr "" "felpörgetéshez.\n" "A kikapcsoláshoz állítsd 0-ra." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "Időköltség" @@ -17318,8 +17530,8 @@ msgid "Role base wipe speed" msgstr "Szerepalapú törlési sebesség" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17725,6 +17937,19 @@ msgstr "A megmaradt filament kiürítése a törlőtoronyba." msgid "Enable filament ramming" msgstr "Filament tömörítés engedélyezése" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Nincsenek ritka rétegek (béta)" @@ -17928,8 +18153,9 @@ msgid "" "Filament to print support interface. \"Default\" means no specific filament " "for support interface and current filament is used." msgstr "" -"Filament a támasz érintkező felületének nyomtatásához. Az \"Alapértelmezett" -"\" beállítás választásakor a jelenleg használt filament kerül felhasználásra." +"Filament a támasz érintkező felületének nyomtatásához. Az " +"\"Alapértelmezett\" beállítás választásakor a jelenleg használt filament " +"kerül felhasználásra." msgid "Top interface layers" msgstr "Felső érintkező rétegek" @@ -18080,15 +18306,18 @@ msgid "Threshold angle" msgstr "Dőlésszög küszöbértéke" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Az olyan túlnyúlásoknál, amelynek dőlésszöge ez alatt az érték alatt van, támasz fog generálódni." -"Minél kisebb ez az érték, annál meredekebb a túlnyúlás, amely alátámasztás nélkül nyomtatható.\n" -"Megjegyzés: Ha 0-ra van állítva, a normál támaszok a Küszöbátfedést használják, " -"míg a fa típusú támaszok az alapértelmezett 30-as értékre térnek vissza." +"Az olyan túlnyúlásoknál, amelynek dőlésszöge ez alatt az érték alatt van, " +"támasz fog generálódni.Minél kisebb ez az érték, annál meredekebb a " +"túlnyúlás, amely alátámasztás nélkül nyomtatható.\n" +"Megjegyzés: Ha 0-ra van állítva, a normál támaszok a Küszöbátfedést " +"használják, míg a fa típusú támaszok az alapértelmezett 30-as értékre térnek " +"vissza." msgid "Threshold overlap" msgstr "Átfedési küszöbérték" @@ -18254,8 +18483,8 @@ msgstr "Hőmérséklet-szabályozás aktiválása" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -19272,11 +19501,11 @@ msgid "Debug level" msgstr "Hibakeresés szintje" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, 3:" -"info, 4:debug, 5:trace\n" +"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, " +"3:info, 4:debug, 5:trace\n" msgid "Enable timelapse for print" msgstr "Időfelvétel engedélyezése a nyomtatáshoz" @@ -21071,8 +21300,8 @@ msgstr "" "Szeretnéd felülírni?" 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 "" "A beállításokat a következő formára nevezzük át: \"Gyártó Típus Sorozat @a " @@ -21253,6 +21482,18 @@ msgstr "" "A rendszerbeállítás nem teszi lehetővé a létrehozást. \n" "Add meg újra a nyomtatómodellt vagy a fúvókaátmérőt." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Nyomtató sikeresen létrehozva" @@ -21503,36 +21744,6 @@ msgstr "" "A fúvóka típusa nem egyezik a nyomtató tényleges fúvókatípusával.\n" "Kattints a fenti Szinkronizálás gombra, majd indítsd újra a kalibrálást." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "fúvókaméret a beállításban: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "megjegyzett fúvókaméret: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"A beállításban szereplő fúvókaméret nem egyezik a megjegyzett fúvókával. " -"Mostanában cseréltél fúvókát?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "fúvóka[%d] a beállításban: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "fúvóka[%d] megjegyezve: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"A beállításban szereplő fúvókatípus nem egyezik a megjegyzett fúvókával. " -"Mostanában cseréltél fúvókát?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "%1s anyag nyomtatása %2s fúvókával a fúvóka károsodását okozhatja." @@ -22480,26 +22691,17 @@ msgstr "Maximális szög" msgid "Detection radius" msgstr "Érzékelési sugár" -msgid "Remove selected points" -msgstr "Kijelölt pontok eltávolítása" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Összes eltávolítása" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Pontok automatikus generálása" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Karimafül hozzáadása" - -msgid "Delete a brim ear" -msgstr "Karimafül törlése" - -msgid "Adjust head diameter" -msgstr "Fejátmérő módosítása" - -msgid "Adjust section view" -msgstr "Metszeti nézet módosítása" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -22511,8 +22713,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Ennek az objektumnak a karimatípusát állítsd \"festett\" értékre" -msgid " invalid brim ears" -msgstr " érvénytelen karimás fülek" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Karimás Fülek" @@ -22795,15 +22997,13 @@ msgstr "" "Tudtad, hogy az Orca Slicer számos billentyűparancsot és 3D jelenetműveletet " "kínál?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Fordítás páratlan rétegeken\n" -"Tudtad, hogy a Fordítás páratlan rétegeken funkció jelentősen " -"javíthatja a túlnyúlások felületi minőségét?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23097,6 +23297,85 @@ msgstr "" "tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás " "valószínűségét?" +#~ msgid "Erase all painting" +#~ msgstr "Minden festés törlése" + +#~ msgid "Reset cut" +#~ msgstr "Vágás visszaállítása" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Felcserélt pásztázás és forgatás egérgombok" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Ha engedélyezve van, felcseréli a bal és jobb egérgomb pásztázási és " +#~ "forgatási funkcióit." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "fúvókaméret a beállításban: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "megjegyzett fúvókaméret: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "A beállításban szereplő fúvókaméret nem egyezik a megjegyzett fúvókával. " +#~ "Mostanában cseréltél fúvókát?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "fúvóka[%d] a beállításban: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "fúvóka[%d] megjegyezve: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "A beállításban szereplő fúvókatípus nem egyezik a megjegyzett fúvókával. " +#~ "Mostanában cseréltél fúvókát?" + +#~ msgid "Remove selected points" +#~ msgstr "Kijelölt pontok eltávolítása" + +#~ msgid "Remove all" +#~ msgstr "Összes eltávolítása" + +#~ msgid "Auto-generate points" +#~ msgstr "Pontok automatikus generálása" + +#~ msgid "Add a brim ear" +#~ msgstr "Karimafül hozzáadása" + +#~ msgid "Delete a brim ear" +#~ msgstr "Karimafül törlése" + +#~ msgid "Adjust head diameter" +#~ msgstr "Fejátmérő módosítása" + +#~ msgid "Adjust section view" +#~ msgstr "Metszeti nézet módosítása" + +#~ msgid " invalid brim ears" +#~ msgstr " érvénytelen karimás fülek" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Fordítás páratlan rétegeken\n" +#~ "Tudtad, hogy a Fordítás páratlan rétegeken funkció jelentősen " +#~ "javíthatja a túlnyúlások felületi minőségét?" + #~ msgid "Pen size" #~ msgstr "Tollméret" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index c1d7ce992a..c45b45eea0 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -122,8 +122,8 @@ msgstr "Esegui" msgid "On highlighted overhangs only" msgstr "Solo sulle sporgenze evidenziate" -msgid "Erase all painting" -msgstr "Cancella tutto" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Evidenziare le sporgenze" @@ -192,6 +192,9 @@ msgstr "Evidenziare le facce in base all'angolo di sporgenza." msgid "No auto support" msgstr "Nessun supporto automatico" +msgid "Done" +msgstr "Fatto" + msgid "Support Generated" msgstr "Supporto generato" @@ -346,6 +349,12 @@ msgstr "Selezione parte" msgid "Fixed step drag" msgstr "Trascinamento a passo fisso" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Ridimensionamento su un solo lato" @@ -494,6 +503,18 @@ msgstr "Posizione taglio" msgid "Build Volume" msgstr "Volume di stampa" +msgid "Multiple" +msgstr "Multiplo" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Spaziatura" + msgid "Part" msgstr "Parte" @@ -602,12 +623,6 @@ msgstr "Modifica connettori" msgid "Add connectors" msgstr "Aggiungi connettori" -msgid "Reset cut" -msgstr "Ripristina taglio" - -msgid "Reset cutting plane and remove connectors" -msgstr "Ripristina il piano di taglio e rimuovi i connettori" - msgid "Upper part" msgstr "Parte superiore" @@ -626,6 +641,9 @@ msgstr "Dopo il taglio" msgid "Cut to parts" msgstr "Taglia in parti" +msgid "Reset cutting plane and remove connectors" +msgstr "Ripristina il piano di taglio e rimuovi i connettori" + msgid "Perform cut" msgstr "Effettua taglio" @@ -860,6 +878,9 @@ msgstr "Carattere predefinito" msgid "Advanced" msgstr "Avanzate" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1532,15 +1553,6 @@ msgstr "" "L'elemento 1 è stato ripristinato, \n" "l'elemento 2 è stato l'elemento 1" -msgid "Warning: please select Plane's feature." -msgstr "Attenzione: selezionare l'elemento del Piano." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Attenzione: selezionare l'elemento del Punto o del Cerchio." - -msgid "Warning: please select two different meshes." -msgstr "Attenzione: selezionare due maglie poligonali diverse." - msgid "Copy to clipboard" msgstr "Copia negli appunti" @@ -1593,6 +1605,15 @@ msgstr "(In movimento)" msgid "Point and point assembly" msgstr "Assemblaggio punto a punto" +msgid "Warning: please select two different meshes." +msgstr "Attenzione: selezionare due maglie poligonali diverse." + +msgid "Warning: please select Plane's feature." +msgstr "Attenzione: selezionare l'elemento del Piano." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Attenzione: selezionare l'elemento del Punto o del Cerchio." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1788,6 +1809,18 @@ msgstr "Hai la versione più recente." msgid "Info" msgstr "Informazioni" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1855,6 +1888,23 @@ msgstr "" "La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione " "prima di poter utilizzare normalmente il programma." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Recupero delle informazioni della stampante, riprovare più tardi." @@ -2423,12 +2473,12 @@ msgstr "Orienta automaticamente l'oggetto per migliorare la qualità di stampa" msgid "Edit" msgstr "Modifica" -msgid "Delete this filament" -msgstr "Elimina questo filamento" - msgid "Merge with" msgstr "Unisci con" +msgid "Delete this filament" +msgstr "Elimina questo filamento" + msgid "Select All" msgstr "Seleziona tutto" @@ -4827,9 +4877,6 @@ msgstr "Interrompi asciugatura" msgid "Proceed" msgstr "Procedi" -msgid "Done" -msgstr "Fatto" - msgid "Retry" msgstr "Riprova" @@ -5093,33 +5140,6 @@ msgstr "Transizione di supporto" msgid "Mixed" msgstr "Misto" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Flusso di stampa" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Velocità ventola" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Tempo" - -msgid "Actual speed profile" -msgstr "Profilo di velocità effettivo" - -msgid "Speed: " -msgstr "Velocità: " - msgid "Height: " msgstr "Altezza: " @@ -5153,6 +5173,33 @@ msgstr "Scatto: " msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Flusso di stampa" + +msgid "Fan speed" +msgstr "Velocità ventola" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Tempo" + +msgid "Speed: " +msgstr "Velocità: " + +msgid "Actual speed profile" +msgstr "Profilo di velocità effettivo" + msgid "Statistics of All Plates" msgstr "Statistiche di tutti i piatti" @@ -5497,9 +5544,6 @@ msgstr "Orienta" msgid "Arrange options" msgstr "Opzioni di disposizione" -msgid "Spacing" -msgstr "Spaziatura" - msgid "0 means auto spacing." msgstr "0 significa spaziatura automatica." @@ -5634,7 +5678,7 @@ msgstr "Volume:" msgid "Size:" msgstr "Dimensione:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -6037,6 +6081,15 @@ msgstr "Esporta la configurazione corrente in un file" msgid "Export" msgstr "Esporta" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Esci" @@ -6164,6 +6217,9 @@ msgstr "Vista" msgid "Preset Bundle" msgstr "Pacchetto profili" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Aiuto" @@ -8828,15 +8884,6 @@ msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" "Se abilitato, usa la visuale libera. Altrimenti, usa la visuale vincolata." -msgid "Swap pan and rotate mouse buttons" -msgstr "Scambia i pulsanti del mouse per ruotare e spostare" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Se abilitato, inverte le funzioni di panoramica e rotazione dei pulsanti " -"sinistro e destro del mouse." - msgid "Reverse mouse zoom" msgstr "Inverti zoom del mouse" @@ -8845,6 +8892,27 @@ msgstr "" "Se abilitato, inverte la direzione dell'ingrandimento con la rotellina del " "mouse." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Cancella la mia scelta su..." @@ -8869,6 +8937,59 @@ msgstr "" "Cancella la mia scelta per la sincronizzazione del profilo stampante dopo il " "caricamento del file." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Disabilitato" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Regione di accesso" @@ -9035,6 +9156,15 @@ msgstr "Modalità sviluppatore" msgid "Skip AMS blacklist check" msgstr "Salta il controllo della lista nera dell'AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Consenti memoria anomala" @@ -10844,6 +10974,32 @@ msgstr "Non salvare" msgid "Discard" msgstr "Scarta" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "" "Clicca il pulsante destro del mouse per visualizzare il testo completo." @@ -11449,6 +11605,9 @@ msgstr "Clicca qui per scaricarlo." msgid "Login" msgstr "Accedi" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Azione necessaria] " @@ -11489,6 +11648,18 @@ msgstr "Mostra elenco scorciatoie da tastiera" msgid "Global shortcuts" msgstr "Scorciatoie globali" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11996,9 +12167,6 @@ msgstr " non può essere posizionato nel " msgid "Internal Bridge" msgstr "Ponte interno" -msgid "Multiple" -msgstr "Multiplo" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13938,9 +14106,6 @@ msgstr "" "4. Applica a tutti: genera secondi strati di ponti sia per i ponti interni " "che esterni\n" -msgid "Disabled" -msgstr "Disabilitato" - msgid "External bridge only" msgstr "Solo ponti esterni" @@ -14660,6 +14825,18 @@ msgstr "Automatico per spurgo" msgid "Auto For Match" msgstr "Automatico per abbinamento" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Temperatura di spurgo" @@ -15183,6 +15360,17 @@ msgstr "" "Utilizzo di linee multiple per il pattern di riempimento, se supportato dal " "pattern di riempimento." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Motivo riempimento sparso" @@ -15365,8 +15553,8 @@ msgid "mm/s² or %" msgstr "mm/s o %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Accelerazione del riempimento sparso. Se il valore è espresso in percentuale " "(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita." @@ -16073,6 +16261,30 @@ msgstr "" "fargli raggiungere la velocità necessaria più rapidamente.\n" "Impostare su 0 per disattivare." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Costo orario" @@ -17782,8 +17994,8 @@ msgid "Role base wipe speed" msgstr "Velocità di spurgo basata su ruolo" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -18188,6 +18400,19 @@ msgstr "Spurga il filamento rimanente nella torre di spurgo." msgid "Enable filament ramming" msgstr "Abilita spinta del filamento" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Nessuno strato sparso (beta)" @@ -19766,11 +19991,11 @@ msgid "Debug level" msgstr "Livello di debug" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, 5:" -"traccia\n" +"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, " +"5:traccia\n" msgid "Enable timelapse for print" msgstr "Abilita timelapse per la stampa" @@ -20334,13 +20559,13 @@ msgstr "Impossibile leggere il file fornito perché è vuoto" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Formato file sconosciuto: il file di input deve avere un'estensione .stl, ." -"obj o .amf(.xml)." +"Formato file sconosciuto: il file di input deve avere " +"un'estensione .stl, .obj o .amf(.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Formato file sconosciuto: il file di input deve avere un'estensione .3mf o ." -"zip.amf." +"Formato file sconosciuto: il file di input deve avere un'estensione .3mf " +"o .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: impossibile analizzare" @@ -21806,6 +22031,18 @@ msgstr "" "Il profilo di sistema non consente la creazione.\n" "Reinserire il modello della stampante o il diametro dell'ugello." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Creazione stampante riuscita" @@ -22057,36 +22294,6 @@ msgstr "" "stampante.\n" "Fare clic sul pulsante Sincronizza sopra e riavviare la calibrazione." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "dimensione ugello nel profilo: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "dimensione ugello memorizzata: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"La dimensione del tipo di ugello nel profilo non è coerente con l'ugello " -"memorizzato. Hai cambiato l'ugello di recente?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "ugello[%d] nel profilo: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "ugello[%d] memorizzato: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Il tipo di ugello nel profilo non è coerente con l'ugello memorizzato. Hai " -"cambiato l'ugello di recente?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -23046,26 +23253,17 @@ msgstr "Angolo massimo" msgid "Detection radius" msgstr "Raggio di rilevamento" -msgid "Remove selected points" -msgstr "Rimuovi punti selezionati" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Rimuovi tutto" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Genera punti automaticamente" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Aggiungi tesa ad orecchio" - -msgid "Delete a brim ear" -msgstr "Rimuovi tesa ad orecchio" - -msgid "Adjust head diameter" -msgstr "Regola diametro testa" - -msgid "Adjust section view" -msgstr "Regola la vista della sezione" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -23077,8 +23275,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Imposta il tipo di tesa di questo oggetto su \"dipinta\"" -msgid " invalid brim ears" -msgstr " tese ad orecchio non valide" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Tese ad orecchio" @@ -23364,15 +23562,13 @@ msgstr "" "Sapevi che OrcaSlicer offre un'ampia gamma di scorciatoie da tastiera e " "operazioni di scena 3D?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Inverti su strati dispari\n" -"Sapevi che la funzione Inverti su strati dispari può migliorare " -"significativamente la qualità delle superfici delle tue sporgenze?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23667,6 +23863,85 @@ msgstr "" "aumentare in modo appropriato la temperatura del piano riscaldato può " "ridurre la probabilità di deformazione?" +#~ msgid "Erase all painting" +#~ msgstr "Cancella tutto" + +#~ msgid "Reset cut" +#~ msgstr "Ripristina taglio" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Scambia i pulsanti del mouse per ruotare e spostare" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Se abilitato, inverte le funzioni di panoramica e rotazione dei pulsanti " +#~ "sinistro e destro del mouse." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "dimensione ugello nel profilo: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "dimensione ugello memorizzata: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "La dimensione del tipo di ugello nel profilo non è coerente con l'ugello " +#~ "memorizzato. Hai cambiato l'ugello di recente?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "ugello[%d] nel profilo: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "ugello[%d] memorizzato: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Il tipo di ugello nel profilo non è coerente con l'ugello memorizzato. " +#~ "Hai cambiato l'ugello di recente?" + +#~ msgid "Remove selected points" +#~ msgstr "Rimuovi punti selezionati" + +#~ msgid "Remove all" +#~ msgstr "Rimuovi tutto" + +#~ msgid "Auto-generate points" +#~ msgstr "Genera punti automaticamente" + +#~ msgid "Add a brim ear" +#~ msgstr "Aggiungi tesa ad orecchio" + +#~ msgid "Delete a brim ear" +#~ msgstr "Rimuovi tesa ad orecchio" + +#~ msgid "Adjust head diameter" +#~ msgstr "Regola diametro testa" + +#~ msgid "Adjust section view" +#~ msgstr "Regola la vista della sezione" + +#~ msgid " invalid brim ears" +#~ msgstr " tese ad orecchio non valide" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Inverti su strati dispari\n" +#~ "Sapevi che la funzione Inverti su strati dispari può migliorare " +#~ "significativamente la qualità delle superfici delle tue sporgenze?" + #~ msgid "Pen size" #~ msgstr "Dimensione penna" @@ -24739,9 +25014,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Imposta posizione" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" @@ -25436,9 +25708,10 @@ msgstr "" #~ "\n" #~ "\n" #~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e " -#~ "il riempimento solido interno viene stampato direttamente sul riempimento." -#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la " -#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n" +#~ "il riempimento solido interno viene stampato direttamente sul " +#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, " +#~ "velocizzando la stampa senza compromettere troppo la qualità della " +#~ "superficie superiore.\n" #~ "\n" #~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si " #~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare " diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 1229f7d176..a7ea831179 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -120,8 +120,8 @@ msgstr "適用" msgid "On highlighted overhangs only" msgstr "強調表示されたオーバーハングのみ" -msgid "Erase all painting" -msgstr "全てを消去" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "オーバーハングをハイライト" @@ -190,6 +190,9 @@ msgstr "オーバーハングの角度によりハイライト" msgid "No auto support" msgstr "自動サポート無し" +msgid "Done" +msgstr "完了" + msgid "Support Generated" msgstr "生成されたサポート" @@ -342,6 +345,12 @@ msgstr "パーツ選択" msgid "Fixed step drag" msgstr "固定ステップドラッグ" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "片側スケーリング" @@ -490,6 +499,18 @@ msgstr "カットポジション" msgid "Build Volume" msgstr "ビルドボリューム" +msgid "Multiple" +msgstr "複数" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "間隔" + msgid "Part" msgstr "パーツ" @@ -597,12 +618,6 @@ msgstr "コネクタを編集" msgid "Add connectors" msgstr "コネクタを追加" -msgid "Reset cut" -msgstr "カットをリセット" - -msgid "Reset cutting plane and remove connectors" -msgstr "カット面をリセットし、コネクターを削除" - msgid "Upper part" msgstr "上部パーツ" @@ -621,6 +636,9 @@ msgstr "カット後" msgid "Cut to parts" msgstr "パーツに割り切る" +msgid "Reset cutting plane and remove connectors" +msgstr "カット面をリセットし、コネクターを削除" + msgid "Perform cut" msgstr "カットを実行" @@ -849,6 +867,9 @@ msgstr "デフォルトフォント" msgid "Advanced" msgstr "高度な設定" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1502,15 +1523,6 @@ msgstr "" "フィーチャー1がリセットされました。\n" "フィーチャー2がフィーチャー1になりました" -msgid "Warning: please select Plane's feature." -msgstr "警告: 平面フィーチャーを選択してください。" - -msgid "Warning: please select Point's or Circle's feature." -msgstr "警告: 点または円のフィーチャーを選択してください。" - -msgid "Warning: please select two different meshes." -msgstr "警告: 2つの異なるメッシュを選択してください。" - msgid "Copy to clipboard" msgstr "コピー" @@ -1563,6 +1575,15 @@ msgstr "(移動中)" msgid "Point and point assembly" msgstr "点と点の組み立て" +msgid "Warning: please select two different meshes." +msgstr "警告: 2つの異なるメッシュを選択してください。" + +msgid "Warning: please select Plane's feature." +msgstr "警告: 平面フィーチャーを選択してください。" + +msgid "Warning: please select Point's or Circle's feature." +msgstr "警告: 点または円のフィーチャーを選択してください。" + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1751,6 +1772,18 @@ msgstr "最新バージョンです。" msgid "Info" msgstr "情報" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1813,6 +1846,23 @@ msgstr "" "現在のOrca Slicerはバージョンが古いため使用できません、アップデートしてくださ" "い。" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "プリンター情報を取得中です。後でもう一度お試しください。" @@ -2367,12 +2417,12 @@ msgstr "オブジェクトの向きを自動的に調整する" msgid "Edit" msgstr "編集" -msgid "Delete this filament" -msgstr "このフィラメントを削除" - msgid "Merge with" msgstr "結合" +msgid "Delete this filament" +msgstr "このフィラメントを削除" + msgid "Select All" msgstr "全てを選択" @@ -4647,9 +4697,6 @@ msgstr "乾燥を停止" msgid "Proceed" msgstr "続行" -msgid "Done" -msgstr "完了" - msgid "Retry" msgstr "再試行" @@ -4909,33 +4956,6 @@ msgstr "サポート変換層" msgid "Mixed" msgstr "混合" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "フロー率" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "回転速度" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "時間" - -msgid "Actual speed profile" -msgstr "実際の速度プロファイル" - -msgid "Speed: " -msgstr "速度" - msgid "Height: " msgstr "高度" @@ -4969,6 +4989,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "フロー率" + +msgid "Fan speed" +msgstr "回転速度" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "時間" + +msgid "Speed: " +msgstr "速度" + +msgid "Actual speed profile" +msgstr "実際の速度プロファイル" + msgid "Statistics of All Plates" msgstr "全プレートの統計" @@ -5304,9 +5351,6 @@ msgstr "向き調整" msgid "Arrange options" msgstr "レイアウト設定" -msgid "Spacing" -msgstr "間隔" - msgid "0 means auto spacing." msgstr "0は自動間隔です。" @@ -5441,7 +5485,7 @@ msgstr "ボリューム" msgid "Size:" msgstr "サイズ:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5839,6 +5883,15 @@ msgstr "現在の構成をエクスポート" msgid "Export" msgstr "エクスポート" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "終了" @@ -5966,6 +6019,9 @@ msgstr "表示" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "ヘルプ" @@ -8528,21 +8584,33 @@ msgstr "" "チェックすると、フリーカメラが使用されます。 そうでない場合は、拘束カメラを使" "用します。" -msgid "Swap pan and rotate mouse buttons" -msgstr "パンと回転のマウスボタンを入れ替える" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"有効にすると、マウスの左ボタンと右ボタンのパン機能と回転機能が入れ替わりま" -"す。" - msgid "Reverse mouse zoom" msgstr "マウスの逆ズーム" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "有効にすると、マウス ホイールによるズームの方向が反転します。" +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "選択をクリア..." @@ -8565,6 +8633,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "ファイルロード後のプリンタープリセット同期の選択をクリアします。" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "無効" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "地域" @@ -8724,6 +8845,15 @@ msgstr "開発者モード" msgid "Skip AMS blacklist check" msgstr "AMSブラックリストチェックをスキップ" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "異常なストレージを許可" @@ -9809,8 +9939,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 "" "ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」" "を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム" @@ -10422,6 +10552,32 @@ msgstr "保存しない" msgid "Discard" msgstr "破棄" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "マウスを右クリックして全文を表示します" @@ -10976,6 +11132,9 @@ msgstr "ここをクリックしてダウンロードしてください。" msgid "Login" msgstr "サインイン" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "【対応が必要】 " @@ -11012,6 +11171,18 @@ msgstr "ショートカット一覧を表示" msgid "Global shortcuts" msgstr "ショートカット" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11486,9 +11657,6 @@ msgstr " に配置できません " msgid "Internal Bridge" msgstr "内部ブリッジ" -msgid "Multiple" -msgstr "複数" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "線幅 %1% を算出できませんでした。%2%の値を取得できません。" @@ -12990,9 +13158,6 @@ msgid "" "external-facing bridges\n" msgstr "" -msgid "Disabled" -msgstr "無効" - msgid "External bridge only" msgstr "外部ブリッジのみ" @@ -13505,6 +13670,18 @@ msgstr "フラッシュ用自動" msgid "Auto For Match" msgstr "マッチ用自動" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "フラッシュ温度" @@ -13937,6 +14114,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "充填パターン" @@ -14089,8 +14277,8 @@ msgid "mm/s² or %" msgstr "mm/s² 或は %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" msgid "" @@ -14210,10 +14398,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 "" msgid "layer" @@ -14622,6 +14810,30 @@ msgid "" "Set to 0 to deactivate." msgstr "" +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "" @@ -14894,8 +15106,8 @@ msgid "" "\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" -"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0" -"か、\"mmu_segmented_region_interlocking_depth \"が " +"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0か、" +"\"mmu_segmented_region_interlocking_depth \"が " "\"mmu_segmented_region_max_width \"より大きい場合は無視される。ゼロはこの機能" "を無効にする。" @@ -16002,8 +16214,8 @@ msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -16309,6 +16521,19 @@ msgstr "" msgid "Enable filament ramming" msgstr "フィラメントラミングを有効にする" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "" @@ -16618,15 +16843,16 @@ msgid "Threshold angle" msgstr "閾値角度" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"オーバーハングの角度がこの閾値以下になる場合、サポートを生成します" -"この値が小さいほど、サポートなしで印刷できるオーバーハングの急勾配になります。\n" -"注: 0 に設定すると、通常のサポートは代わりに閾値オーバーラップを使用しますが、" -"ツリーサポートはデフォルト値の 30 に戻ります。" +"オーバーハングの角度がこの閾値以下になる場合、サポートを生成しますこの値が小" +"さいほど、サポートなしで印刷できるオーバーハングの急勾配になります。\n" +"注: 0 に設定すると、通常のサポートは代わりに閾値オーバーラップを使用します" +"が、ツリーサポートはデフォルト値の 30 に戻ります。" msgid "Threshold overlap" msgstr "閾値の重複" @@ -16637,8 +16863,8 @@ msgid "" "overhang that can be printed without support." msgstr "" "しきい値角度がゼロの場合、オーバーラップがしきい値を下回るオーバーハングに対" -"してサポートが生成されます。この値が小さいほど、サポートなしで印刷できるオ" -"ーバーハングの角度が急になります。" +"してサポートが生成されます。この値が小さいほど、サポートなしで印刷できるオー" +"バーハングの角度が急になります。" msgid "Tree support branch angle" msgstr "ツリーサポート枝アングル" @@ -16775,8 +17001,8 @@ msgstr "" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -17610,11 +17836,11 @@ msgid "Debug level" msgstr "デバッグ レベル" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、4:" -"debug、5:trace。\n" +"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、" +"4:debug、5:trace。\n" msgid "Enable timelapse for print" msgstr "" @@ -19222,8 +19448,8 @@ msgid "" 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 "" @@ -19379,6 +19605,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "プリンターが正常に作成されました" @@ -19589,32 +19827,6 @@ msgstr "" "ノズルタイプが実際のプリンターのノズルタイプと一致しません。\n" "上部の同期ボタンをクリックしてキャリブレーションを再開してください。" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "プリセットのノズルサイズ: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "記憶されたノズルサイズ: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "プリセットのノズル[%d]: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "記憶されたノズル[%d]: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "%1s材料を%2sノズルで印刷するとノズルが損傷する可能性があります。" @@ -20371,26 +20583,17 @@ msgstr "最大角度" msgid "Detection radius" msgstr "検知半径" -msgid "Remove selected points" -msgstr "選択したポイントを削除" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "全て削除" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "自動ポイント生成" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "ブリムを追加" - -msgid "Delete a brim ear" -msgstr "ブリムを削除" - -msgid "Adjust head diameter" -msgstr "ヘッド径を調整" - -msgid "Adjust section view" -msgstr "断面を調整" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -20401,8 +20604,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "このオブジェクトのブリムタイプを「ペイント」に設定" -msgid " invalid brim ears" -msgstr "不適切なブリム" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "ブリム" @@ -20668,11 +20871,12 @@ msgid "" "3D scene operations?" msgstr "" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" #: resources/data/hints.ini: [hint:Cut Tool] @@ -20926,6 +21130,62 @@ msgstr "" "ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げること" "で、反りが発生する確率を下げることができることをご存知ですか?" +#~ msgid "Erase all painting" +#~ msgstr "全てを消去" + +#~ msgid "Reset cut" +#~ msgstr "カットをリセット" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "パンと回転のマウスボタンを入れ替える" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "有効にすると、マウスの左ボタンと右ボタンのパン機能と回転機能が入れ替わりま" +#~ "す。" + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "プリセットのノズルサイズ: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "記憶されたノズルサイズ: %d" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "プリセットのノズル[%d]: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "記憶されたノズル[%d]: %.1f" + +#~ msgid "Remove selected points" +#~ msgstr "選択したポイントを削除" + +#~ msgid "Remove all" +#~ msgstr "全て削除" + +#~ msgid "Auto-generate points" +#~ msgstr "自動ポイント生成" + +#~ msgid "Add a brim ear" +#~ msgstr "ブリムを追加" + +#~ msgid "Delete a brim ear" +#~ msgstr "ブリムを削除" + +#~ msgid "Adjust head diameter" +#~ msgstr "ヘッド径を調整" + +#~ msgid "Adjust section view" +#~ msgstr "断面を調整" + +#~ msgid " invalid brim ears" +#~ msgstr "不適切なブリム" + #~ msgid "Pen size" #~ msgstr "ペンサイズ" @@ -21529,9 +21789,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "位置を設定" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index 01764f679a..e536c9e4f9 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: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2025-06-02 17:12+0900\n" "Last-Translator: crwusiz \n" "Language-Team: \n" @@ -122,8 +122,8 @@ msgstr "수행" msgid "On highlighted overhangs only" msgstr "강조된 오버행에만 칠하기" -msgid "Erase all painting" -msgstr "모든 페인팅 삭제" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "오버행 영역 강조" @@ -192,6 +192,9 @@ msgstr "오버행 각도에 따라 면을 강조 표시합니다." msgid "No auto support" msgstr "자동 서포트 비활성" +msgid "Done" +msgstr "완료" + msgid "Support Generated" msgstr "서포트 생성됨" @@ -344,6 +347,12 @@ msgstr "파트 선택" msgid "Fixed step drag" msgstr "고정 단계 드래그" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "단면 스케일링" @@ -492,6 +501,18 @@ msgstr "자르기 위치" msgid "Build Volume" msgstr "빌드 볼륨" +msgid "Multiple" +msgstr "다수" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "간격" + msgid "Part" msgstr "부품" @@ -599,12 +620,6 @@ msgstr "커넥터 편집" msgid "Add connectors" msgstr "커넥터 추가" -msgid "Reset cut" -msgstr "컷 재설정" - -msgid "Reset cutting plane and remove connectors" -msgstr "절단면 재설정 및 커넥터 제거" - msgid "Upper part" msgstr "상부 부품" @@ -623,6 +638,9 @@ msgstr "잘라내기 후" msgid "Cut to parts" msgstr "부품으로 자르기" +msgid "Reset cutting plane and remove connectors" +msgstr "절단면 재설정 및 커넥터 제거" + msgid "Perform cut" msgstr "잘라내기 실행" @@ -852,6 +870,9 @@ msgstr "기본 글꼴" msgid "Advanced" msgstr "고급" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1498,15 +1519,6 @@ msgstr "" "기능 1이 재설정되었습니다.\n" "기능 2는 기능 1이 되었습니다" -msgid "Warning: please select Plane's feature." -msgstr "경고: 평면의 기능을 선택하세요." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "경고: 점 또는 원의 특징을 선택하십시오." - -msgid "Warning: please select two different meshes." -msgstr "경고: 서로 다른 두 개의 메시를 선택하십시오." - msgid "Copy to clipboard" msgstr "클립보드로 복사" @@ -1558,6 +1570,15 @@ msgstr "(이동 중)" msgid "Point and point assembly" msgstr "점과 점 조립" +msgid "Warning: please select two different meshes." +msgstr "경고: 서로 다른 두 개의 메시를 선택하십시오." + +msgid "Warning: please select Plane's feature." +msgstr "경고: 평면의 기능을 선택하세요." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "경고: 점 또는 원의 특징을 선택하십시오." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1747,6 +1768,18 @@ msgstr "최신 버전입니다." msgid "Info" msgstr "정보" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1810,6 +1843,23 @@ msgstr "" "Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가" "능합니다" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "프린터 정보를 가져오는 중입니다. 나중에 다시 시도하세요." @@ -2364,12 +2414,12 @@ msgstr "객체의 방향을 자동으로 지정하여 출력 품질을 향상시 msgid "Edit" msgstr "편집" -msgid "Delete this filament" -msgstr "이 필라멘트 삭제" - msgid "Merge with" msgstr "병합" +msgid "Delete this filament" +msgstr "이 필라멘트 삭제" + msgid "Select All" msgstr "모두 선택" @@ -4612,9 +4662,6 @@ msgstr "건조 중지" msgid "Proceed" msgstr "진행" -msgid "Done" -msgstr "완료" - msgid "Retry" msgstr "재시도" @@ -4876,33 +4923,6 @@ msgstr "서포트 전환" msgid "Mixed" msgstr "혼합" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "압출량" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "팬 속도" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "시간" - -msgid "Actual speed profile" -msgstr "실제 속도 프로파일" - -msgid "Speed: " -msgstr "속도: " - msgid "Height: " msgstr "높이: " @@ -4936,6 +4956,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "압출량" + +msgid "Fan speed" +msgstr "팬 속도" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "시간" + +msgid "Speed: " +msgstr "속도: " + +msgid "Actual speed profile" +msgstr "실제 속도 프로파일" + msgid "Statistics of All Plates" msgstr "모든 플레이트 통계" @@ -5259,9 +5306,6 @@ msgstr "방향" msgid "Arrange options" msgstr "정렬 옵션" -msgid "Spacing" -msgstr "간격" - msgid "0 means auto spacing." msgstr "0은 자동 간격을 의미합니다." @@ -5396,7 +5440,7 @@ msgstr "용량:" msgid "Size:" msgstr "크기:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5793,6 +5837,15 @@ msgstr "현재 설정을 파일로 내보내기" msgid "Export" msgstr "내보내기" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "종료" @@ -5919,6 +5972,9 @@ msgstr "시점" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "도움말" @@ -6269,8 +6325,8 @@ msgid "" "The .gcode.3mf file contains no G-code data. Please slice it with Orca " "Slicer and export a new .gcode.3mf file." msgstr "" -".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 새 ." -"gcode.3mf 파일을 내보내십시오." +".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 " +"새 .gcode.3mf 파일을 내보내십시오." #, c-format, boost-format msgid "File '%s' was lost! Please download it again." @@ -8411,21 +8467,33 @@ msgstr "" "활성화된 경우 자유로운 카메라 앵글을 사용합니다. 활성화되지 않은 경우 제한된 " "카메라 앵글을 사용합니다." -msgid "Swap pan and rotate mouse buttons" -msgstr "팬 및 회전 마우스 버튼 바꾸기" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"이 기능을 활성화하면 왼쪽 마우스 버튼과 오른쪽 마우스 버튼의 팬 및 회전 기능" -"이 바뀝니다." - msgid "Reverse mouse zoom" msgstr "역방향 마우스 줌" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "활성화되면 마우스 휠을 사용하여 확대/축소 방향을 반대로 바꿉니다." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "" @@ -8448,6 +8516,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "비활성" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "로그인 지역" @@ -8598,6 +8719,15 @@ msgstr "개발자 모드" msgid "Skip AMS blacklist check" msgstr "AMS 블랙리스트 확인 건너뛰기" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "" @@ -9610,8 +9740,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 "" "툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 프라임 타워\"를 추가하는 것이 " "좋습니다\n" @@ -10219,6 +10349,32 @@ msgstr "저장하지 않음" msgid "Discard" msgstr "폐기" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "마우스 오른쪽 버튼을 클릭하여 전체 텍스트를 표시합니다." @@ -10765,6 +10921,9 @@ msgstr "다운로드하려면 여기를 클릭하세요." msgid "Login" msgstr "로그인" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "" @@ -10801,6 +10960,18 @@ msgstr "키보드 단축키 목록 보기" msgid "Global shortcuts" msgstr "전역 단축키" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11275,9 +11446,6 @@ msgstr "" msgid "Internal Bridge" msgstr "내부 브릿지" -msgid "Multiple" -msgstr "다수" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -11850,9 +12018,9 @@ msgid "" msgstr "" "Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 " "프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. " -"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://username:" -"password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력하여 액세" -"스할 수 있습니다" +"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://" +"username:password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력" +"하여 액세스할 수 있습니다" msgid "Device UI" msgstr "장치 UI" @@ -12941,9 +13109,6 @@ msgstr "" "4. 모두 적용 - 내부 및 외부를 향한 브릿지 모두에 대한 두 번째 브릿지 레이어" "를 생성합니다.\n" -msgid "Disabled" -msgstr "비활성" - msgid "External bridge only" msgstr "외부 브릿지 전용" @@ -13590,6 +13755,18 @@ msgstr "" msgid "Auto For Match" msgstr "" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "" @@ -14044,6 +14221,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "드문 채우기 패턴" @@ -14214,8 +14402,8 @@ msgid "mm/s² or %" msgstr "mm/s² 또는 %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "드문 채우기 가속도. 값이 백분율 (예. 100%)로 표시되면 기본 가속도를 기준으로 " "계산됩니다." @@ -14344,10 +14532,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\"가 " @@ -14806,6 +14994,30 @@ msgstr "" "를 빠르게 향상시키기에 부족할 수 있는 팬에게 유용합니다.\n" "비활성화하려면 0으로 설정합니다." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "시간비용" @@ -16313,8 +16525,8 @@ msgid "Role base wipe speed" msgstr "역할 기반 노즐 청소 속도" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -16677,6 +16889,19 @@ msgstr "남은 필라멘트를 프라임 타워에서 제거" msgid "Enable filament ramming" msgstr "" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "희소 레이어 없음(베타)" @@ -17001,15 +17226,16 @@ msgid "Threshold angle" msgstr "임계값 각도" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"기울기 각도가 임계값보다 작은 오버행에 대해 서포트가 생성됩니다." -"이 값이 작을수록 서포트 없이 출력할 수 있는 오버행이 더 가파릅니다.\n" -"참고: 0으로 설정하면 일반 서포트는 대신 임계값 중복을 사용하고, " -"트리 서포트는 기본값 30으로 돌아갑니다." +"기울기 각도가 임계값보다 작은 오버행에 대해 서포트가 생성됩니다.이 값이 작을" +"수록 서포트 없이 출력할 수 있는 오버행이 더 가파릅니다.\n" +"참고: 0으로 설정하면 일반 서포트는 대신 임계값 중복을 사용하고, 트리 서포트" +"는 기본값 30으로 돌아갑니다." msgid "Threshold overlap" msgstr "임계값 중복" @@ -17160,8 +17386,8 @@ msgstr "온도 제어 활성화" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18089,8 +18315,8 @@ msgid "Debug level" msgstr "디버그 수준" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "디버그 로깅 수준을 설정합니다. 0:치명적, 1:오류, 2:경고, 3:정보, 4:디버그, 5:" "추적\n" @@ -19771,8 +19997,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 "" @@ -19944,6 +20170,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "프린터 생성 성공" @@ -20179,32 +20417,6 @@ msgid "" "Please click the Sync button above and restart the calibration." msgstr "" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -21022,26 +21234,17 @@ msgstr "최대 각도" msgid "Detection radius" msgstr "감지 반경" -msgid "Remove selected points" -msgstr "선택한 지점 제거" - -msgid "Remove all" -msgstr "모두 제거" - -msgid "Auto-generate points" -msgstr "포인트 자동 생성" - -msgid "Add a brim ear" -msgstr "브림 귀 추가" - -msgid "Delete a brim ear" -msgstr "브림 귀 삭제" - -msgid "Adjust head diameter" +msgid "Selected" msgstr "" -msgid "Adjust section view" -msgstr "섹션 보기 조정" +msgid "Auto-generate" +msgstr "" + +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" + +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -21053,8 +21256,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "" -msgid " invalid brim ears" -msgstr " 유효하지 않은 브림 귀" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "브림 귀" @@ -21318,15 +21521,13 @@ msgstr "" "키보드 단축키를 사용하는 방법\n" "Orca Slicer는 다양한 키보드 단축키와 3D 장면 작업을 제공합니다." -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"홀수에 반전\n" -"홀수에 반전 기능이 오버행의 표면 품질을 크게 향상시킬 수 있다는 사실" -"을 알고 계셨나요?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -21614,6 +21815,52 @@ msgstr "" "ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 " "높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?" +#~ msgid "Erase all painting" +#~ msgstr "모든 페인팅 삭제" + +#~ msgid "Reset cut" +#~ msgstr "컷 재설정" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "팬 및 회전 마우스 버튼 바꾸기" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "이 기능을 활성화하면 왼쪽 마우스 버튼과 오른쪽 마우스 버튼의 팬 및 회전 기" +#~ "능이 바뀝니다." + +#~ msgid "Remove selected points" +#~ msgstr "선택한 지점 제거" + +#~ msgid "Remove all" +#~ msgstr "모두 제거" + +#~ msgid "Auto-generate points" +#~ msgstr "포인트 자동 생성" + +#~ msgid "Add a brim ear" +#~ msgstr "브림 귀 추가" + +#~ msgid "Delete a brim ear" +#~ msgstr "브림 귀 삭제" + +#~ msgid "Adjust section view" +#~ msgstr "섹션 보기 조정" + +#~ msgid " invalid brim ears" +#~ msgstr " 유효하지 않은 브림 귀" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "홀수에 반전\n" +#~ "홀수에 반전 기능이 오버행의 표면 품질을 크게 향상시킬 수 있다는 사" +#~ "실을 알고 계셨나요?" + #~ msgid "Pen size" #~ msgstr "펜 크기" @@ -22605,9 +22852,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "위치 설정" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" @@ -22893,8 +23137,8 @@ msgstr "" #~ msgstr "mm/mm" #~ 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" @@ -23921,8 +24165,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 prinetrs, Please go to printer selection" #~ msgstr "" #~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n" diff --git a/localization/i18n/lt/OrcaSlicer_lt.po b/localization/i18n/lt/OrcaSlicer_lt.po index 1c5ab711d8..46fd16cb2f 100644 --- a/localization/i18n/lt/OrcaSlicer_lt.po +++ b/localization/i18n/lt/OrcaSlicer_lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2025-10-25 23:01+0300\n" "Last-Translator: Gintaras Kučinskas \n" "Language-Team: \n" @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : n" -"%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : " +"n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n" "X-Generator: Poedit 3.6\n" msgid "right" @@ -121,8 +121,8 @@ msgstr "Atlikti" msgid "On highlighted overhangs only" msgstr "Tik paryškintiems kabantiems" -msgid "Erase all painting" -msgstr "Ištrinti visą piešinį" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Paryškinti kabančias vietas" @@ -191,6 +191,9 @@ msgstr "Paryškinti paviršius pagal iškyšos kampą." msgid "No auto support" msgstr "Nenaudoti automatinių atramų" +msgid "Done" +msgstr "Atlikta" + msgid "Support Generated" msgstr "Atramos sugeneruotos" @@ -343,6 +346,12 @@ msgstr "Detalių pasirinkimas" msgid "Fixed step drag" msgstr "Vilkimas fiksuotu žingsniu" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Vienpusis mastelio keitimas" @@ -492,6 +501,18 @@ msgstr "Pjovimo vieta" msgid "Build Volume" msgstr "Spausdinimo tūris" +msgid "Multiple" +msgstr "Keli" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Tarpai" + msgid "Part" msgstr "Dalis" @@ -599,12 +620,6 @@ msgstr "Taisyti jungtis" msgid "Add connectors" msgstr "Įtraukti jungtis" -msgid "Reset cut" -msgstr "Atstatyti pjovimą" - -msgid "Reset cutting plane and remove connectors" -msgstr "Atstatyti pjovimo plokštumą ir pašalinti jungtis" - msgid "Upper part" msgstr "Viršutinė dalis" @@ -623,6 +638,9 @@ msgstr "Po pjovimo" msgid "Cut to parts" msgstr "Supjaustyti į dalis" +msgid "Reset cutting plane and remove connectors" +msgstr "Atstatyti pjovimo plokštumą ir pašalinti jungtis" + msgid "Perform cut" msgstr "Atlikti pjūvį" @@ -857,6 +875,9 @@ msgstr "Numatytasis šriftas" msgid "Advanced" msgstr "Plačiau" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1507,15 +1528,6 @@ msgstr "" "1 funkcija buvo iš naujo nustatyta, \n" "2 funkcija buvo 1 funkcija" -msgid "Warning: please select Plane's feature." -msgstr "Įspėjimas: pasirinkite Plokštumos funkciją." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Įspėjimas: pasirinkite Taško arba Apskritimo funkciją." - -msgid "Warning: please select two different meshes." -msgstr "Įspėjimas: pasirinkite dvi skirtingas figūras." - msgid "Copy to clipboard" msgstr "Nukopijuoti į iškarpinę" @@ -1567,6 +1579,15 @@ msgstr "(Moving)" msgid "Point and point assembly" msgstr "Point and point assembly" +msgid "Warning: please select two different meshes." +msgstr "Įspėjimas: pasirinkite dvi skirtingas figūras." + +msgid "Warning: please select Plane's feature." +msgstr "Įspėjimas: pasirinkite Plokštumos funkciją." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Įspėjimas: pasirinkite Taško arba Apskritimo funkciją." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1762,6 +1783,18 @@ msgstr "Čia yra naujausia versija." msgid "Info" msgstr "Info" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1830,6 +1863,23 @@ msgstr "" "OrcaSlicer versija yra pasenusi. Norint naudotis, reikia ją atnaujinti į " "naujausią versiją." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Retrieving printer information, please try again later." @@ -2388,12 +2438,12 @@ msgstr "Automatiškai nustatoma padėtis spausdinimo kokybės pagerinimui." msgid "Edit" msgstr "Redaguoti" -msgid "Delete this filament" -msgstr "Delete this filament" - msgid "Merge with" msgstr "Merge with" +msgid "Delete this filament" +msgstr "Delete this filament" + msgid "Select All" msgstr "Pasirinkti viską" @@ -4746,9 +4796,6 @@ msgstr "Stop Drying" msgid "Proceed" msgstr "Proceed" -msgid "Done" -msgstr "Atlikta" - msgid "Retry" msgstr "Kartoti" @@ -5013,33 +5060,6 @@ msgstr "Atramų perėjimas" msgid "Mixed" msgstr "Mixed" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Srauto greitis" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Ventiliatoriaus greitis" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Laikas" - -msgid "Actual speed profile" -msgstr "Actual speed profile" - -msgid "Speed: " -msgstr "Greitis: " - msgid "Height: " msgstr "Aukštis: " @@ -5073,6 +5093,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Srauto greitis" + +msgid "Fan speed" +msgstr "Ventiliatoriaus greitis" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Laikas" + +msgid "Speed: " +msgstr "Greitis: " + +msgid "Actual speed profile" +msgstr "Actual speed profile" + msgid "Statistics of All Plates" msgstr "Visų plokščių statistika" @@ -5406,9 +5453,6 @@ msgstr "Orientuoti" msgid "Arrange options" msgstr "Išdėstymo parinktys" -msgid "Spacing" -msgstr "Tarpai" - msgid "0 means auto spacing." msgstr "0 reiškia automatinius tarpus." @@ -5543,7 +5587,7 @@ msgstr "Tūris:" msgid "Size:" msgstr "Dydis:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5942,6 +5986,15 @@ msgstr "Eksportuoti dabartinę konfigūraciją į failus" msgid "Export" msgstr "Eksportuoti" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Išeiti" @@ -6069,6 +6122,9 @@ msgstr "Vaizdas" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Pagalba" @@ -8685,21 +8741,33 @@ msgstr "" "Jei įjungta, naudoti laisvą kamerą. Jei neįjungta, naudoti stacionarią " "kamerą." -msgid "Swap pan and rotate mouse buttons" -msgstr "Sukeisti judėjimą ir sukimąsi pelės mygtuko" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Jei įjungta, sukeičia kairiojo ir dešiniojo pelės mygtukų panoraminio ir " -"pasukimo funkcijas." - msgid "Reverse mouse zoom" msgstr "Apversti pelės didinimą" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Jei įjungta, apverčia didinimo ar mažinimo kryptį pelės ratuku." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Clear my choice on..." @@ -8723,6 +8791,59 @@ msgid "" msgstr "" "Clear my choice for synchronizing printer preset after loading the file." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Išjungta" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Prisijungimo regionas" @@ -8886,6 +9007,15 @@ msgstr "Kūrėjo režimas" msgid "Skip AMS blacklist check" msgstr "Praleisti AMS draudžiamo sąrašo tikrinimą" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Allow Abnormal Storage" @@ -10002,8 +10132,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 "" "Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, " "rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n" @@ -10650,6 +10780,32 @@ msgstr "Neišsaugoti" msgid "Discard" msgstr "Atsisakyti" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Spustelėkite dešinįjį pelės klavišą, kad būtų rodomas visas tekstas." @@ -11230,6 +11386,9 @@ msgstr "Spustelėkite čia, jei norite jį atsisiųsti." msgid "Login" msgstr "Prisijungti" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Action Required] " @@ -11266,6 +11425,18 @@ msgstr "Rodyti sparčiųjų klavišų sąrašą" msgid "Global shortcuts" msgstr "Bendrieji spartieji klavišai" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11644,8 +11815,8 @@ msgid "" msgstr "" "Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant " "reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite " -"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami \"Orca" -"\"." +"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami " +"\"Orca\"." msgid "Extension Board" msgstr "Išplėtimo plokštė" @@ -11757,9 +11928,6 @@ msgstr " can not be placed in the " msgid "Internal Bridge" msgstr "Vidinis tiltas" -msgid "Multiple" -msgstr "Keli" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -12018,8 +12186,8 @@ msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/Sprinter" -"\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose." +"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/" +"Sprinter\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose." msgid "The prime tower is not supported in \"By object\" print." msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"." @@ -13601,9 +13769,6 @@ msgstr "" "4. Taikyti visiems - sukuriami antrieji tiltų sluoksniai, skirti tiek į " "vidiniams, tiek į išoriniams tiltams.\n" -msgid "Disabled" -msgstr "Išjungta" - msgid "External bridge only" msgstr "Tik išorinis tiltas" @@ -14292,6 +14457,18 @@ msgstr "Auto For Flush" msgid "Auto For Match" msgstr "Auto For Match" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Flush temperature" @@ -14798,6 +14975,17 @@ msgstr "" "Naudoti kelias linijas užpildymo šablonui, jei tai palaiko užpildymo " "šablonas." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Reto užpildymo raštas" @@ -14976,8 +15164,8 @@ msgid "mm/s² or %" msgstr "mm/s² arba %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji " "bus apskaičiuota pagal numatytąjį pagreitį." @@ -15112,10 +15300,10 @@ msgstr "Visas ventiliatoriaus greitis sluoksnyje" 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 "" "Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje " "\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje " @@ -15631,6 +15819,30 @@ msgstr "" "greičiau įsibėgėtų.\n" "Nustatykite 0, kad išjungtumėte." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Laiko kaina" @@ -17237,8 +17449,8 @@ msgid "Role base wipe speed" msgstr "Vaidmens pagrindo nuvalymo greitis" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17635,6 +17847,19 @@ msgstr "Išstumti likusias gijas į pirminio valymo bokštą." msgid "Enable filament ramming" msgstr "Įjungti gijos ramingą" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Nėra retų sluoksnių (beta)" @@ -17986,15 +18211,17 @@ msgid "Threshold angle" msgstr "Ribinis kampas" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Atramos bus generuojamos iškyšoms, kurių nuolydžio kampas yra mažesnis už slenkstį." -"Kuo mažesnė ši reikšmė, tuo statesnę iškyšą galima spausdinti be atramų.\n" -"Pastaba: jei nustatyta 0, įprastos atramos vietoje naudoja Slenksčio persidengimas, " -"o medžio tipo atramos grįžta prie numatytosios 30 reikšmės." +"Atramos bus generuojamos iškyšoms, kurių nuolydžio kampas yra mažesnis už " +"slenkstį.Kuo mažesnė ši reikšmė, tuo statesnę iškyšą galima spausdinti be " +"atramų.\n" +"Pastaba: jei nustatyta 0, įprastos atramos vietoje naudoja Slenksčio " +"persidengimas, o medžio tipo atramos grįžta prie numatytosios 30 reikšmės." msgid "Threshold overlap" msgstr "Slenksčio persidengimas" @@ -18156,8 +18383,8 @@ msgstr "Suaktyvinti temperatūros reguliavimą" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -19162,8 +19389,8 @@ msgid "Debug level" msgstr "Derinimo lygis" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, " "3: informacija, 4: derinimas, 5: sekimas\n" @@ -19709,13 +19936,13 @@ msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, ." -"amf(.xml)." +"Nežinomas failo formatas. Įvesties failo plėtinys turi " +"būti .stl, .obj, .amf(.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf arba .zip." -"amf." +"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf " +"arba .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: nepavyko apdoroti" @@ -20953,8 +21180,8 @@ msgstr "" "Ar norite jį perrašyti?" 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 "" "Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo " @@ -21135,6 +21362,18 @@ msgstr "" "The system preset does not allow creation. \n" "Please re-enter the printer model or nozzle diameter." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Sėkmingai sukurtas spausdintuvas" @@ -21396,36 +21635,6 @@ msgstr "" "The nozzle type does not match the actual printer nozzle type.\n" "Please click the Sync button above and restart the calibration." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "nozzle size in preset: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "nozzle size memorized: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "nozzle[%d] in preset: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "nozzle[%d] memorized: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Printing %1s material with %2s nozzle may cause nozzle damage." @@ -21804,9 +22013,9 @@ msgid "" "quality but much longer print time." msgstr "" "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis " -"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra \"Gyroid" -"\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė spausdinimo " -"kokybė, tačiau daug ilgesnis spausdinimo laikas." +"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra " +"\"Gyroid\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė " +"spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -22354,26 +22563,17 @@ msgstr "Maksimalus kampas" msgid "Detection radius" msgstr "Aptikimo spindulys" -msgid "Remove selected points" -msgstr "Pašalinti pasirinktus taškus" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Pašalinti viską" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Automatiškai generuoti taškus" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Krašto \"ausys\"" - -msgid "Delete a brim ear" -msgstr "Ištrinti krašto \"ausį\"" - -msgid "Adjust head diameter" -msgstr "Nustatykite galvutės skersmenį" - -msgid "Adjust section view" -msgstr "Pritaikyti sekcijos vaizdą" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -22385,8 +22585,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Nustatykite šio objekto krašto tipą kaip „pieštas“" -msgid " invalid brim ears" -msgstr " netinkamos krašto \"ausys\"" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Krašto \"ausys\"" @@ -22665,15 +22865,13 @@ msgstr "" "Ar žinojote, kad „Orca Slicer“ siūlo platų klavišų kombinacijų ir 3D scenos " "operacijų pasirinkimą?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Atvirkštinis ant nelyginio paviršiaus\n" -"Ar žinojote, kad atvirkštinio ant nelyginio paviršiaus funkcija gali " -"gerokai pagerinti jūsų iškyšų paviršiaus kokybę?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22967,6 +23165,85 @@ msgstr "" "pavyzdžiui, ABS, tinkamai padidinus kaitinimo pagrindo temperatūrą galima " "sumažinti deformavimosi tikimybę." +#~ msgid "Erase all painting" +#~ msgstr "Ištrinti visą piešinį" + +#~ msgid "Reset cut" +#~ msgstr "Atstatyti pjovimą" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Sukeisti judėjimą ir sukimąsi pelės mygtuko" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Jei įjungta, sukeičia kairiojo ir dešiniojo pelės mygtukų panoraminio ir " +#~ "pasukimo funkcijas." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "nozzle size in preset: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "nozzle size memorized: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "nozzle[%d] in preset: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "nozzle[%d] memorized: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" + +#~ msgid "Remove selected points" +#~ msgstr "Pašalinti pasirinktus taškus" + +#~ msgid "Remove all" +#~ msgstr "Pašalinti viską" + +#~ msgid "Auto-generate points" +#~ msgstr "Automatiškai generuoti taškus" + +#~ msgid "Add a brim ear" +#~ msgstr "Krašto \"ausys\"" + +#~ msgid "Delete a brim ear" +#~ msgstr "Ištrinti krašto \"ausį\"" + +#~ msgid "Adjust head diameter" +#~ msgstr "Nustatykite galvutės skersmenį" + +#~ msgid "Adjust section view" +#~ msgstr "Pritaikyti sekcijos vaizdą" + +#~ msgid " invalid brim ears" +#~ msgstr " netinkamos krašto \"ausys\"" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Atvirkštinis ant nelyginio paviršiaus\n" +#~ "Ar žinojote, kad atvirkštinio ant nelyginio paviršiaus funkcija " +#~ "gali gerokai pagerinti jūsų iškyšų paviršiaus kokybę?" + #~ msgid "Pen size" #~ msgstr "Pieštuko dydis" @@ -24091,9 +24368,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Nustatyti padėtį" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index 827c19d732..3784a0cb36 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -115,8 +115,8 @@ msgstr "Uitvoeren" msgid "On highlighted overhangs only" msgstr "Alleen op gemarkeerde overhangen" -msgid "Erase all painting" -msgstr "Alle getekende delen wissen" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Overhangende gebieden markeren" @@ -185,6 +185,9 @@ msgstr "Gebieden markeren op basis van overhangende hoek." msgid "No auto support" msgstr "Geen automatische ondersteuning" +msgid "Done" +msgstr "Klaar" + msgid "Support Generated" msgstr "Ondersteuning gegenereerd" @@ -338,6 +341,12 @@ msgstr "Part selection" msgid "Fixed step drag" msgstr "Fixed step drag" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Single sided scaling" @@ -486,6 +495,18 @@ msgstr "Cut position" msgid "Build Volume" msgstr "Build Volume" +msgid "Multiple" +msgstr "Meerdere" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Uitlijning" + msgid "Part" msgstr "Onderdeel" @@ -593,12 +614,6 @@ msgstr "Verbindingen bewerken" msgid "Add connectors" msgstr "Verbindingen toevoegen" -msgid "Reset cut" -msgstr "Reset cut" - -msgid "Reset cutting plane and remove connectors" -msgstr "Reset cutting plane and remove connectors" - msgid "Upper part" msgstr "Bovenste deel" @@ -617,6 +632,9 @@ msgstr "Na knippen" msgid "Cut to parts" msgstr "In delen knippen" +msgid "Reset cutting plane and remove connectors" +msgstr "Reset cutting plane and remove connectors" + msgid "Perform cut" msgstr "Knippen uitvoeren" @@ -850,6 +868,9 @@ msgstr "Standaard lettertype" msgid "Advanced" msgstr "Geavanceerd" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1500,15 +1521,6 @@ msgstr "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" -msgid "Warning: please select Plane's feature." -msgstr "Warning: please select Plane's feature." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Warning: please select Point's or Circle's feature." - -msgid "Warning: please select two different meshes." -msgstr "Warning: please select two different meshes." - msgid "Copy to clipboard" msgstr "Kopieer naar klembord" @@ -1560,6 +1572,15 @@ msgstr "(Moving)" msgid "Point and point assembly" msgstr "Point and point assembly" +msgid "Warning: please select two different meshes." +msgstr "Warning: please select two different meshes." + +msgid "Warning: please select Plane's feature." +msgstr "Warning: please select Plane's feature." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Warning: please select Point's or Circle's feature." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1754,6 +1775,18 @@ msgstr "Dit is de nieuwste versie." msgid "Info" msgstr "Informatie" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1818,6 +1851,23 @@ msgstr "" "De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de " "nieuwste versie voordat deze normaal kan worden gebruikt" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Retrieving printer information, please try again later." @@ -2378,12 +2428,12 @@ msgstr "" msgid "Edit" msgstr "Bewerken" -msgid "Delete this filament" -msgstr "Delete this filament" - msgid "Merge with" msgstr "Merge with" +msgid "Delete this filament" +msgstr "Delete this filament" + msgid "Select All" msgstr "Alles selecteren" @@ -4736,9 +4786,6 @@ msgstr "Stop Drying" msgid "Proceed" msgstr "Doorgaan" -msgid "Done" -msgstr "Klaar" - msgid "Retry" msgstr "Opnieuw proberen" @@ -5000,33 +5047,6 @@ msgstr "Onderteuning (support) overgang" msgid "Mixed" msgstr "Gemengd" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Flowrate" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Ventilator snelheid" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Tijd" - -msgid "Actual speed profile" -msgstr "Actual speed profile" - -msgid "Speed: " -msgstr "Snelheid: " - msgid "Height: " msgstr "Hoogte: " @@ -5060,6 +5080,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Flowrate" + +msgid "Fan speed" +msgstr "Ventilator snelheid" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Tijd" + +msgid "Speed: " +msgstr "Snelheid: " + +msgid "Actual speed profile" +msgstr "Actual speed profile" + msgid "Statistics of All Plates" msgstr "Statistics of All Plates" @@ -5393,9 +5440,6 @@ msgstr "Oriënteren" msgid "Arrange options" msgstr "Rangschik opties" -msgid "Spacing" -msgstr "Uitlijning" - msgid "0 means auto spacing." msgstr "0 means auto spacing." @@ -5530,7 +5574,7 @@ msgstr "Volume:" msgid "Size:" msgstr "Maat:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5929,6 +5973,15 @@ msgstr "Huidige configuratie exporteren naar bestanden" msgid "Export" msgstr "Exporteren" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Stop" @@ -6056,6 +6109,9 @@ msgstr "Weergave" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Hulp" @@ -8690,15 +8746,6 @@ msgstr "" "Als dit is ingeschakeld wordt de vrij beweegbare camera gebruikt, anders een " "vaste camera." -msgid "Swap pan and rotate mouse buttons" -msgstr "Wissel de pan- en rotatiemuisknoppen om" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Als deze optie is ingeschakeld, worden de pan- en rotatiefuncties van de " -"linker- en rechtermuisknop omgedraaid." - msgid "Reverse mouse zoom" msgstr "Omgekeerde muiszoom" @@ -8707,6 +8754,27 @@ msgstr "" "Als deze optie is ingeschakeld, wordt de zoomrichting met het muiswiel " "omgedraaid." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Clear my choice on..." @@ -8730,6 +8798,59 @@ msgid "" msgstr "" "Clear my choice for synchronizing printer preset after loading the file." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Uit" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Inlogregio" @@ -8892,6 +9013,15 @@ msgstr "Ontwikkelmodus" msgid "Skip AMS blacklist check" msgstr "AMS-zwartelijstcontrole overslaan" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Allow Abnormal Storage" @@ -10008,8 +10138,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 "" "Bij het opnemen van timelapse zonder toolhead is het aan te raden om een " "„Timelapse Wipe Tower” toe te voegen \n" @@ -10644,6 +10774,32 @@ msgstr "Niet opslaan" msgid "Discard" msgstr "Verwerpen" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Klik op de rechtermuisknop om de volledige tekst weer te geven." @@ -11229,6 +11385,9 @@ msgstr "Klik hier om het te downloaden." msgid "Login" msgstr "Inloggen" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Action Required] " @@ -11267,6 +11426,18 @@ msgstr "Toon lijst met sneltoetsen" msgid "Global shortcuts" msgstr "Globale snelkoppelingen" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11759,9 +11930,6 @@ msgstr " can not be placed in the " msgid "Internal Bridge" msgstr "Internal Bridge" -msgid "Multiple" -msgstr "Meerdere" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13601,9 +13769,6 @@ msgstr "" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" -msgid "Disabled" -msgstr "Uit" - msgid "External bridge only" msgstr "External bridge only" @@ -14290,6 +14455,18 @@ msgstr "Auto For Flush" msgid "Auto For Match" msgstr "Auto For Match" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Flush temperature" @@ -14796,6 +14973,17 @@ msgid "" msgstr "" "Using multiple lines for the infill pattern, if supported by infill pattern." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Vulpatroon" @@ -14976,8 +15164,8 @@ msgid "mm/s² or %" msgstr "mm/s² of %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als " "een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de " @@ -15117,16 +15305,16 @@ msgstr "Volledige snelheid op laag" 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 "" "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." msgid "layer" msgstr "laag" @@ -15632,6 +15820,30 @@ msgstr "" "fan started spinning from a stop, or to get the fan up to speed faster.\n" "Set to 0 to deactivate." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Time cost" @@ -17240,13 +17452,13 @@ msgid "Role base wipe speed" msgstr "Role base wipe speed" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." @@ -17637,6 +17849,19 @@ msgstr "Purge remaining filament into prime tower." msgid "Enable filament ramming" msgstr "Enable filament ramming" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "No sparse layers (beta)" @@ -17993,15 +18218,18 @@ msgid "Threshold angle" msgstr "Drempel hoek" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Er zal ondersteuning support gegenereerd worden voor overhangende hoeken waarvan de hellingshoek lager is dan deze drempel." -"Hoe kleiner deze waarde is, hoe steiler de overhang die zonder ondersteuning kan worden geprint.\n" -"Opmerking: Indien ingesteld op 0, gebruiken normale ondersteuningen in plaats daarvan de drempelwaarde voor overlap," -"terwijl boomstructuurondersteuningen terugvallen op een standaardwaarde van 30." +"Er zal ondersteuning support gegenereerd worden voor overhangende hoeken " +"waarvan de hellingshoek lager is dan deze drempel.Hoe kleiner deze waarde " +"is, hoe steiler de overhang die zonder ondersteuning kan worden geprint.\n" +"Opmerking: Indien ingesteld op 0, gebruiken normale ondersteuningen in " +"plaats daarvan de drempelwaarde voor overlap,terwijl " +"boomstructuurondersteuningen terugvallen op een standaardwaarde van 30." msgid "Threshold overlap" msgstr "Threshold overlap" @@ -18011,9 +18239,10 @@ msgid "" "overlap is below the threshold. The smaller this value is, the steeper the " "overhang that can be printed without support." msgstr "" -"Als de drempelhoek nul is, wordt er ondersteuning gegenereerd voor overhangen waarvan de overlap " -"onder de drempelwaarde ligt. Hoe kleiner deze waarde is, hoe steiler de overhang die zonder " -"ondersteuning kan worden geprint." +"Als de drempelhoek nul is, wordt er ondersteuning gegenereerd voor " +"overhangen waarvan de overlap onder de drempelwaarde ligt. Hoe kleiner deze " +"waarde is, hoe steiler de overhang die zonder ondersteuning kan worden " +"geprint." msgid "Tree support branch angle" msgstr "Tree support vertakkingshoek" @@ -18168,8 +18397,8 @@ msgstr "Temperatuurregeling activeren" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18179,8 +18408,8 @@ msgid "" "heater is installed." msgstr "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18743,10 +18972,11 @@ msgid "" "Wipe tower is only compatible with relative mode. It is recommended on most " "printers. Default is checked." msgstr "" -"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects" -"\". Sommige extruders werken beter als deze optie niet is aangevinkt " -"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve " -"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt" +"Relatieve extrusie wordt aanbevolen bij gebruik van de optie " +"\"label_objects\". Sommige extruders werken beter als deze optie niet is " +"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met " +"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is " +"aangevinkt" msgid "" "Classic wall generator produces walls with constant extrusion width and for " @@ -19171,11 +19401,11 @@ msgid "Debug level" msgstr "Debuggen level" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgid "Enable timelapse for print" msgstr "Enable timelapse for print" @@ -20951,12 +21181,12 @@ msgstr "" "Wil je het herschrijven?" 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 "" -"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" msgid "Create Printer/Nozzle" @@ -21132,6 +21362,18 @@ msgstr "" "The system preset does not allow creation. \n" "Please re-enter the printer model or nozzle diameter." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Printer succesvol gemaakt" @@ -21384,36 +21626,6 @@ msgstr "" "The nozzle type does not match the actual printer nozzle type.\n" "Please click the Sync button above and restart the calibration." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "nozzle size in preset: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "nozzle size memorized: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "nozzle[%d] in preset: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "nozzle[%d] memorized: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Printing %1s material with %2s nozzle may cause nozzle damage." @@ -22331,26 +22543,17 @@ msgstr "Max angle" msgid "Detection radius" msgstr "Detection radius" -msgid "Remove selected points" -msgstr "Verwijder geselecteerde punten" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Remove all" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Genereer automatisch punten" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Add a brim ear" - -msgid "Delete a brim ear" -msgstr "Delete a brim ear" - -msgid "Adjust head diameter" -msgstr "Adjust head diameter" - -msgid "Adjust section view" -msgstr "Adjust section view" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -22362,8 +22565,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Set the brim type of this object to \"painted\"" -msgid " invalid brim ears" -msgstr " ongeldige rand oren" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Rand Oren" @@ -22641,15 +22844,13 @@ msgstr "" "Wist u dat Orca Slicer een breed scala aan sneltoetsen en 3D-" "scènebewerkingen biedt?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Achteruit op oneven\n" -"Wist u dat de functie Achteruit op oneven de oppervlaktekwaliteit van " -"uw overhangen aanzienlijk kan verbeteren?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22943,6 +23144,85 @@ msgstr "" "kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het " "warmtebed de kans op kromtrekken kan verkleinen?" +#~ msgid "Erase all painting" +#~ msgstr "Alle getekende delen wissen" + +#~ msgid "Reset cut" +#~ msgstr "Reset cut" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Wissel de pan- en rotatiemuisknoppen om" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Als deze optie is ingeschakeld, worden de pan- en rotatiefuncties van de " +#~ "linker- en rechtermuisknop omgedraaid." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "nozzle size in preset: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "nozzle size memorized: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "nozzle[%d] in preset: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "nozzle[%d] memorized: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" + +#~ msgid "Remove selected points" +#~ msgstr "Verwijder geselecteerde punten" + +#~ msgid "Remove all" +#~ msgstr "Remove all" + +#~ msgid "Auto-generate points" +#~ msgstr "Genereer automatisch punten" + +#~ msgid "Add a brim ear" +#~ msgstr "Add a brim ear" + +#~ msgid "Delete a brim ear" +#~ msgstr "Delete a brim ear" + +#~ msgid "Adjust head diameter" +#~ msgstr "Adjust head diameter" + +#~ msgid "Adjust section view" +#~ msgstr "Adjust section view" + +#~ msgid " invalid brim ears" +#~ msgstr " ongeldige rand oren" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Achteruit op oneven\n" +#~ "Wist u dat de functie Achteruit op oneven de oppervlaktekwaliteit " +#~ "van uw overhangen aanzienlijk kan verbeteren?" + #~ msgid "Pen size" #~ msgstr "Pengrootte" @@ -23779,9 +24059,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Positie instellen" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index a3e6b0af05..8039fea2ec 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.3.0-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga <>\n" "Language-Team: \n" @@ -113,8 +113,8 @@ msgstr "Wykonaj" msgid "On highlighted overhangs only" msgstr "Tylko na podświetlonych nawisach" -msgid "Erase all painting" -msgstr "Wymaż wszystko" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Podświetl miejsca nawisu" @@ -183,6 +183,9 @@ msgstr "Podświetl ściany zgodnie z kątem nawisu." msgid "No auto support" msgstr "Brak automatycznej podpory" +msgid "Done" +msgstr "Gotowe" + msgid "Support Generated" msgstr "Wygenerowana podpora" @@ -335,6 +338,12 @@ msgstr "" msgid "Fixed step drag" msgstr "" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "" @@ -483,6 +492,18 @@ msgstr "Miejsce przcięcia" msgid "Build Volume" msgstr "Wymiary robocze" +msgid "Multiple" +msgstr "Wielokrotne" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Rozstaw" + msgid "Part" msgstr "Część" @@ -591,12 +612,6 @@ msgstr "Edytuj złączki" msgid "Add connectors" msgstr "Dodaj łączniki" -msgid "Reset cut" -msgstr "Resetuj" - -msgid "Reset cutting plane and remove connectors" -msgstr "Resetuj płaszczyznę przecinania i usuń łączniki" - msgid "Upper part" msgstr "Górna część" @@ -615,6 +630,9 @@ msgstr "Po przecięciu" msgid "Cut to parts" msgstr "Podziel na części" +msgid "Reset cutting plane and remove connectors" +msgstr "Resetuj płaszczyznę przecinania i usuń łączniki" + msgid "Perform cut" msgstr "Wykonaj cięcie" @@ -850,6 +868,9 @@ msgstr "Domyślna czcionka" msgid "Advanced" msgstr "Zaawansowane" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1503,15 +1524,6 @@ msgstr "" "Funkcja 1 została zresetowana,\n" "funkcja 2 została funkcją 1" -msgid "Warning: please select Plane's feature." -msgstr "Uwaga: proszę wybrać funkcję płaszczyzny." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Uwaga: wybierz funkcję Punkt lub Okrąg." - -msgid "Warning: please select two different meshes." -msgstr "Uwaga: proszę wybrać dwie różne siatki." - msgid "Copy to clipboard" msgstr "Kopiuj do schowka" @@ -1563,6 +1575,15 @@ msgstr "" msgid "Point and point assembly" msgstr "" +msgid "Warning: please select two different meshes." +msgstr "Uwaga: proszę wybrać dwie różne siatki." + +msgid "Warning: please select Plane's feature." +msgstr "Uwaga: proszę wybrać funkcję płaszczyzny." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Uwaga: wybierz funkcję Punkt lub Okrąg." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1753,6 +1774,18 @@ msgstr "To jest najnowsza wersja." msgid "Info" msgstr "Informacja" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1820,6 +1853,23 @@ msgstr "" "Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do " "najnowszej wersji, aby działać normalnie" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "" @@ -2362,10 +2412,10 @@ msgstr "Automatyczna orientacja obiektu w celu poprawy jakości druku." msgid "Edit" msgstr "Edytuj" -msgid "Delete this filament" +msgid "Merge with" msgstr "" -msgid "Merge with" +msgid "Delete this filament" msgstr "" msgid "Select All" @@ -4629,9 +4679,6 @@ msgstr "" msgid "Proceed" msgstr "" -msgid "Done" -msgstr "Gotowe" - msgid "Retry" msgstr "Ponów" @@ -4892,33 +4939,6 @@ msgstr "Przejście podpór" msgid "Mixed" msgstr "" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Natężenie przepływu" - -msgid "mm³/s" -msgstr "" - -msgid "Fan speed" -msgstr "Prędkość wentylatora" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Czas" - -msgid "Actual speed profile" -msgstr "" - -msgid "Speed: " -msgstr "Prędkość: " - msgid "Height: " msgstr "Wysokość: " @@ -4952,6 +4972,33 @@ msgstr "" msgid "PA: " msgstr "" +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "" + +msgid "Flow rate" +msgstr "Natężenie przepływu" + +msgid "Fan speed" +msgstr "Prędkość wentylatora" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Czas" + +msgid "Speed: " +msgstr "Prędkość: " + +msgid "Actual speed profile" +msgstr "" + msgid "Statistics of All Plates" msgstr "Statystyki wszystkich płyt roboczych" @@ -5263,9 +5310,6 @@ msgstr "Orientacja" msgid "Arrange options" msgstr "Opcje rozmieszczania" -msgid "Spacing" -msgstr "Rozstaw" - msgid "0 means auto spacing." msgstr "Wartość 0 oznacza automatyczny odstęp." @@ -5400,7 +5444,7 @@ msgstr "Objętość:" msgid "Size:" msgstr "Rozmiar:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5783,6 +5827,15 @@ msgstr "Eksportuj bieżącą konfigurację do plików" msgid "Export" msgstr "Eksportuj" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Zakończ" @@ -5911,6 +5964,9 @@ msgstr "Widok" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Pomoc" @@ -8448,21 +8504,33 @@ msgstr "Używanie wolnego widoku kamery" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Przełącza pomiędzy wolnym a ograniczonym widokiem kamery." -msgid "Swap pan and rotate mouse buttons" -msgstr "Zamień przyciski przesuwania i obracania myszy" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Jeśli włączone, zamienia funkcje przesuwania i obracania lewym i prawym " -"przyciskiem myszy." - msgid "Reverse mouse zoom" msgstr "Odwrócone przybliżanie myszką" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Odwraca kierunek przybliżania kółkiem myszy." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "" @@ -8485,6 +8553,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Wyłączony" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Region logowania" @@ -8628,6 +8749,15 @@ msgstr "Tryb deweloperski" msgid "Skip AMS blacklist check" msgstr "Pomijanie sprawdzania czarnej listy AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "" @@ -9656,8 +9786,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 bez głowicy drukującej zaleca się dodanie " "„Timelapse - Wieża czyszcząca” \n" @@ -10289,6 +10419,32 @@ msgstr "Nie zapisuj" msgid "Discard" msgstr "Odrzuć" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Kliknij prawym przyciskiem myszy, aby wyświetlić pełny tekst." @@ -10842,6 +10998,9 @@ msgstr "Kliknij tutaj, aby pobrać." msgid "Login" msgstr "Logowanie" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "" @@ -10879,6 +11038,18 @@ msgstr "Pokaż listę skrótów klawiszowych" msgid "Global shortcuts" msgstr "Globalne skróty" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11361,9 +11532,6 @@ msgstr "" msgid "Internal Bridge" msgstr "Wewnętrzny most" -msgid "Multiple" -msgstr "Wielokrotne" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -11974,8 +12142,8 @@ msgstr "" "Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno " "zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za " "HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę " -"użytkownika i hasło w URL w następującym formacie: https://username:" -"password@your-octopi-address/" +"użytkownika i hasło w URL w następującym formacie: https://" +"username:password@your-octopi-address/" msgid "Device UI" msgstr "UI urządzenia" @@ -13145,9 +13313,6 @@ msgstr "" "4. Dla wszystkich mostów – dodatkowa warstwa jest generowana zarówno dla " "mostów wewnętrznych, jak i zewnętrznych.\n" -msgid "Disabled" -msgstr "Wyłączony" - msgid "External bridge only" msgstr "Tylko zewnętrzne mosty" @@ -13840,6 +14005,18 @@ msgstr "" msgid "Auto For Match" msgstr "" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "" @@ -14316,6 +14493,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Wzór wypełnienia" @@ -14497,8 +14685,8 @@ msgid "mm/s² or %" msgstr "mm/s² lub %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w " "procentach (np. 100%), będzie obliczana na podstawie domyślnego " @@ -14636,10 +14824,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 " @@ -15117,6 +15305,30 @@ msgstr "" "\n" "Ustaw 0, aby wyłączyć tę funkcję." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Koszt czasu" @@ -16693,8 +16905,8 @@ msgid "Role base wipe speed" msgstr "Prędkość wycierania dyszy w oparciu o rolę ekstruzji" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17086,6 +17298,19 @@ msgstr "Oczyszczanie pozostałego filamentu do wieży czyszczącej" msgid "Enable filament ramming" msgstr "" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Warstwy bez czyszczenia (beta)" @@ -17424,15 +17649,17 @@ msgid "Threshold angle" msgstr "Kąt progowy" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Podpora zostanie wygenerowana dla nawisów, których kąt nachylenia jest poniżej tego progu." -"Im mniejsza jest ta wartość, tym bardziej stromy nawis można wydrukować bez podpór.\n" -"Uwaga: Jeśli ustawiono na 0, normalne podpory używają zamiast tego progu nakładania się, " -"podpory drzewne wracają do domyślnej wartości 30." +"Podpora zostanie wygenerowana dla nawisów, których kąt nachylenia jest " +"poniżej tego progu.Im mniejsza jest ta wartość, tym bardziej stromy nawis " +"można wydrukować bez podpór.\n" +"Uwaga: Jeśli ustawiono na 0, normalne podpory używają zamiast tego progu " +"nakładania się, podpory drzewne wracają do domyślnej wartości 30." msgid "Threshold overlap" msgstr "Próg nakładania" @@ -17591,8 +17818,8 @@ msgstr "Aktywuj kontrolę temperatury" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18569,11 +18796,11 @@ msgid "Debug level" msgstr "Poziom debugowania" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, 4:" -"debug, 5:trace\n" +"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, " +"4:debug, 5:trace\n" msgid "Enable timelapse for print" msgstr "Włącz timelapse dla druku" @@ -19109,13 +19336,13 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ." -"amf(.xml)." +"Nieznany format pliku. Plik wejściowy musi mieć " +"rozszerzenie .stl, .obj, .amf(.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip." -"amf." +"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf " +"lub .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: nie udało się przetworzyć" @@ -20302,8 +20529,8 @@ msgstr "" "Czy zastąpić go?" 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 „Dostawca Typ Seria @nazwa drukarki, " @@ -20483,6 +20710,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Utworzenie profilu drukarki zakończyło się powodzeniem" @@ -20732,32 +20971,6 @@ msgid "" "Please click the Sync button above and restart the calibration." msgstr "" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -21605,26 +21818,17 @@ msgstr "Maksymalny kąt" msgid "Detection radius" msgstr "Promień wykrywania" -msgid "Remove selected points" -msgstr "Usuń zaznaczone punkty" - -msgid "Remove all" -msgstr "Usuń wszystkie" - -msgid "Auto-generate points" -msgstr "Generuj punkty automatycznie" - -msgid "Add a brim ear" -msgstr "Dodaj ucho brim" - -msgid "Delete a brim ear" -msgstr "Usuń ucho brim" - -msgid "Adjust head diameter" +msgid "Selected" msgstr "" -msgid "Adjust section view" -msgstr "Widok przekroju" +msgid "Auto-generate" +msgstr "" + +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" + +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -21636,8 +21840,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "" -msgid " invalid brim ears" -msgstr " nieprawidłowe uszy brim" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Uszy brim" @@ -21904,15 +22108,13 @@ msgstr "" "Czy wiesz, że Orca Slicer oferuje szeroki zakres skrótów klawiszowych i " "operacji na scenie 3D?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Odwróć na nieparzystych\n" -"Czy wiesz, że funkcja Zmień kierunek na nieparzystych może znacząco " -"poprawić jakość powierzchni twoich występów?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22206,6 +22408,52 @@ msgstr "" "takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może " "zmniejszyć prawdopodobieństwo odkształceń?" +#~ msgid "Erase all painting" +#~ msgstr "Wymaż wszystko" + +#~ msgid "Reset cut" +#~ msgstr "Resetuj" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Zamień przyciski przesuwania i obracania myszy" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Jeśli włączone, zamienia funkcje przesuwania i obracania lewym i prawym " +#~ "przyciskiem myszy." + +#~ msgid "Remove selected points" +#~ msgstr "Usuń zaznaczone punkty" + +#~ msgid "Remove all" +#~ msgstr "Usuń wszystkie" + +#~ msgid "Auto-generate points" +#~ msgstr "Generuj punkty automatycznie" + +#~ msgid "Add a brim ear" +#~ msgstr "Dodaj ucho brim" + +#~ msgid "Delete a brim ear" +#~ msgstr "Usuń ucho brim" + +#~ msgid "Adjust section view" +#~ msgstr "Widok przekroju" + +#~ msgid " invalid brim ears" +#~ msgstr " nieprawidłowe uszy brim" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Odwróć na nieparzystych\n" +#~ "Czy wiesz, że funkcja Zmień kierunek na nieparzystych może " +#~ "znacząco poprawić jakość powierzchni twoich występów?" + #~ msgid "Pen size" #~ msgstr "Rozmiar pióra" @@ -23195,9 +23443,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Ustaw pozycję" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" @@ -23990,8 +24235,8 @@ msgstr "" #~ "\n" #~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy " #~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania " -#~ "się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing" -#~ "\".\n" +#~ "się niewspieranej struktury wypełnienia, co powoduje efekt " +#~ "\"pillowing\".\n" #~ "\n" #~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad " #~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje " @@ -25281,8 +25526,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 e52deb8c5e..5f4ec0c0f6 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2026-03-22 17:15-0300\n" "Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: Portuguese, Brazilian\n" @@ -127,8 +127,8 @@ msgstr "Executar" msgid "On highlighted overhangs only" msgstr "Apenas em saliências destacadas" -msgid "Erase all painting" -msgstr "Apagar toda a pintura" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Realçar áreas com saliências" @@ -197,6 +197,9 @@ msgstr "Realçar faces conforme o ângulo de saliência." msgid "No auto support" msgstr "Sem suporte automático" +msgid "Done" +msgstr "Concluído" + msgid "Support Generated" msgstr "Suporte Gerado" @@ -351,6 +354,12 @@ msgstr "Seleção de peça" msgid "Fixed step drag" msgstr "Arrasto de passo fixo" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Escala unilateral" @@ -499,6 +508,18 @@ msgstr "Posição de corte" msgid "Build Volume" msgstr "Volume de Impressão" +msgid "Multiple" +msgstr "Múltiplo" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Espaçamento" + msgid "Part" msgstr "Peça" @@ -606,12 +627,6 @@ msgstr "Editar conectores" msgid "Add connectors" msgstr "Adicionar conectores" -msgid "Reset cut" -msgstr "Redefinir corte" - -msgid "Reset cutting plane and remove connectors" -msgstr "Redefinir plano de corte e remover conectores" - msgid "Upper part" msgstr "Parte superior" @@ -630,6 +645,9 @@ msgstr "Após o corte" msgid "Cut to parts" msgstr "Cortar em peças" +msgid "Reset cutting plane and remove connectors" +msgstr "Redefinir plano de corte e remover conectores" + msgid "Perform cut" msgstr "Executar corte" @@ -866,6 +884,9 @@ msgstr "Fonte padrão" msgid "Advanced" msgstr "Avançado" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1519,15 +1540,6 @@ msgstr "" "O recurso 1 foi redefinido, \n" "o recurso 2 foi o recurso 1" -msgid "Warning: please select Plane's feature." -msgstr "Aviso: por favor selecione o recurso do Plano." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Aviso: por favor selecione o recurso do Ponto ou do Círculo." - -msgid "Warning: please select two different meshes." -msgstr "Aviso: por favor selecione duas malhas diferentes." - msgid "Copy to clipboard" msgstr "Copiar para a área de transferência" @@ -1581,6 +1593,15 @@ msgstr "(Movendo)" msgid "Point and point assembly" msgstr "Montagem ponto a ponto" +msgid "Warning: please select two different meshes." +msgstr "Aviso: por favor selecione duas malhas diferentes." + +msgid "Warning: please select Plane's feature." +msgstr "Aviso: por favor selecione o recurso do Plano." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Aviso: por favor selecione o recurso do Ponto ou do Círculo." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1775,6 +1796,18 @@ msgstr "Esta é a versão mais recente." msgid "Info" msgstr "Informações" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1842,6 +1875,23 @@ msgstr "" "Esta versão do OrcaSlicer é muito antiga e precisa ser atualizada para a " "versão mais recente antes de poder ser usada normalmente." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Obtendo informações da impressora, tente novamente mais tarde." @@ -2401,12 +2451,12 @@ msgstr "" msgid "Edit" msgstr "Editar" -msgid "Delete this filament" -msgstr "Apagar este filamento" - msgid "Merge with" msgstr "Mesclar com" +msgid "Delete this filament" +msgstr "Apagar este filamento" + msgid "Select All" msgstr "Selecionar Tudo" @@ -4769,9 +4819,6 @@ msgstr "Parar de Secar" msgid "Proceed" msgstr "Prosseguir" -msgid "Done" -msgstr "Concluído" - msgid "Retry" msgstr "Tentar Novamente" @@ -5036,33 +5083,6 @@ msgstr "Transição de suporte" msgid "Mixed" msgstr "Misturado" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Taxa de fluxo" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Velocidade do ventilador" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Tempo" - -msgid "Actual speed profile" -msgstr "Perfil de velocidade real" - -msgid "Speed: " -msgstr "Velocidade: " - msgid "Height: " msgstr "Altura: " @@ -5096,6 +5116,33 @@ msgstr "" msgid "PA: " msgstr "AP: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Taxa de fluxo" + +msgid "Fan speed" +msgstr "Velocidade do ventilador" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Tempo" + +msgid "Speed: " +msgstr "Velocidade: " + +msgid "Actual speed profile" +msgstr "Perfil de velocidade real" + msgid "Statistics of All Plates" msgstr "Estatísticas de Todas as Placas" @@ -5436,9 +5483,6 @@ msgstr "Orientar" msgid "Arrange options" msgstr "Opções de arranjo" -msgid "Spacing" -msgstr "Espaçamento" - msgid "0 means auto spacing." msgstr "0 significa auto-espaçamento." @@ -5573,7 +5617,7 @@ msgstr "Volume:" msgid "Size:" msgstr "Tamanho:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5975,6 +6019,15 @@ msgstr "Exportar configuração atual para arquivos" msgid "Export" msgstr "Exportar" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Sair" @@ -6102,6 +6155,9 @@ msgstr "Visualizar" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Ajuda" @@ -8746,21 +8802,33 @@ msgstr "Usar câmera livre" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Se ativado, usa câmera livre. Se não ativado, usa câmera restrita." -msgid "Swap pan and rotate mouse buttons" -msgstr "Alterar a panorâmica e girar os botões do mouse" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Se ativado, troca as funções de panorâmica e rotação dos botões esquerdo e " -"direito do mouse." - msgid "Reverse mouse zoom" msgstr "Inverter zoom do mouse" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Se ativo, inverte a direção de zoom com a roda do mouse." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Limpar minha escolha em..." @@ -8785,6 +8853,59 @@ msgstr "" "Limpar minha opção de sincronização da predefinição da impressora após " "carregar o arquivo." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Desativado" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Região de login" @@ -8941,6 +9062,15 @@ msgstr "Modo de Desenvolvedor" msgid "Skip AMS blacklist check" msgstr "Pular verificação de lista negra AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Permitir Armazenamento Anormal" @@ -10086,8 +10216,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 "" "Ao gravar um timelapse sem o cabeçote aparecer, é recomendável adicionar uma " "\"Torre de Limpeza para Timelapse\" \n" @@ -10726,6 +10856,32 @@ msgstr "Não salvar" msgid "Discard" msgstr "Descartar" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +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." @@ -11313,6 +11469,9 @@ msgstr "Clique aqui para baixá-lo." msgid "Login" msgstr "Entrar" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Ação Necessária] " @@ -11349,6 +11508,18 @@ msgstr "Mostrar lista de atalhos de teclado" msgid "Global shortcuts" msgstr "Atalhos globais" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11839,9 +12010,6 @@ msgstr " não pode ser colocado na " msgid "Internal Bridge" msgstr "Ponte interna" -msgid "Multiple" -msgstr "Múltiplo" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13705,9 +13873,6 @@ msgstr "" "4. Aplicar a todos - gera segundas camadas de ponte para pontes internas e " "externas.\n" -msgid "Disabled" -msgstr "Desativado" - msgid "External bridge only" msgstr "Apenas pontes externas" @@ -14409,6 +14574,18 @@ msgstr "Automático para purga" msgid "Auto For Match" msgstr "Automático para correspondência" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Temperatura de purga" @@ -14932,6 +15109,17 @@ msgstr "" "Usar múltiplas linhas para o padrão de preenchimento, se suportado pelo " "padrão de preenchimento." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Padrão de preenchimento esparso" @@ -15112,8 +15300,8 @@ msgid "mm/s² or %" msgstr "mm/s² ou %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Aceleração do preenchimento esparso. Se o valor for expresso como uma " "porcentagem (por exemplo, 100%), será calculado com base na aceleração " @@ -15250,10 +15438,10 @@ msgstr "Velocidade total do ventilador na camada" 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 "" "A velocidade do ventilador aumentará linearmente de zero na camada " "\"close_fan_the_first_x_layers\" para o máximo na camada " @@ -15453,10 +15641,10 @@ msgstr "" "tempo, a largura da extrusão para uma camada específica também não deve ser " "inferior a um determinado nível. Geralmente, é igual a 15-25%% da altura da " "camada. Portanto, a espessura máxima da camada fuzzy com uma largura de " -"perímetro de 0,4 mm e uma altura de camada de 0,2 mm será 0,4-(0,2*0,25)=" -"±0,35 mm! Se você inserir um parâmetro maior que esse, o erro Flow::" -"spacing() será exibido e o modelo não será fatiado. Você pode escolher este " -"número até que o erro se repita." +"perímetro de 0,4 mm e uma altura de camada de 0,2 mm será 0,4-" +"(0,2*0,25)=±0,35 mm! Se você inserir um parâmetro maior que esse, o erro " +"Flow::spacing() será exibido e o modelo não será fatiado. Você pode escolher " +"este número até que o erro se repita." msgid "Displacement" msgstr "Deslocamento" @@ -15776,6 +15964,30 @@ msgstr "" "ou para fazer o ventilador alcançar a velocidade mais rapidamente.\n" "Defina como 0 para desativar." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "Custo de tempo" @@ -17404,8 +17616,8 @@ msgid "Role base wipe speed" msgstr "Velocidade de limpeza baseada na função" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17804,6 +18016,19 @@ msgstr "Purgar o filamento restante na torre de preparo." msgid "Enable filament ramming" msgstr "Habilitar moldeamento de filamento" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Sem camadas esparsas (beta)" @@ -18156,15 +18381,17 @@ msgid "Threshold angle" msgstr "Ângulo limiar" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"O suporte será gerado para saliências cujo ângulo de inclinação esteja abaixo do limiar." -"Quanto menor esse valor, mais íngreme será a saliência que pode ser impressa sem suporte.\n" -"Observação: se definido como 0, os suportes normais usarão Sobreposição de limiar, " -"enquanto os suportes em árvore voltarão ao valor padrão de 30." +"O suporte será gerado para saliências cujo ângulo de inclinação esteja " +"abaixo do limiar.Quanto menor esse valor, mais íngreme será a saliência que " +"pode ser impressa sem suporte.\n" +"Observação: se definido como 0, os suportes normais usarão Sobreposição de " +"limiar, enquanto os suportes em árvore voltarão ao valor padrão de 30." msgid "Threshold overlap" msgstr "Sobreposição de limiar" @@ -18333,8 +18560,8 @@ msgstr "Ativar controle de temperatura" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18344,8 +18571,8 @@ msgid "" "heater is installed." msgstr "" "Habilite esta opção para controle automatizado da temperatura da câmara. " -"Esta opção ativa a emissão de um comando M191 antes do \"machine_start_gcode" -"\"\n" +"Esta opção ativa a emissão de um comando M191 antes do " +"\"machine_start_gcode\"\n" "que define a temperatura da câmara e aguarda até que ela seja atingida. Além " "disso, emite um comando M141 no final da impressão para desligar o aquecedor " "da câmara, se presente.\n" @@ -19346,11 +19573,11 @@ msgid "Debug level" msgstr "Nível de depuração" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Define o nível do log de depuração. 0:fatal, 1:error, 2:warning, 3:info, 4:" -"debug, 5:trace\n" +"Define o nível do log de depuração. 0:fatal, 1:error, 2:warning, 3:info, " +"4:debug, 5:trace\n" msgid "Enable timelapse for print" msgstr "Habilitar timelapse para impressão" @@ -19895,8 +20122,8 @@ msgstr "O arquivo fornecido não pôde ser lido porque está vazio" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão ." -"stl, .obj, .amf(.xml)." +"Formato de arquivo desconhecido. O arquivo de entrada deve ter " +"extensão .stl, .obj, .amf(.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" @@ -21147,8 +21374,8 @@ msgstr "" "Você deseja reescrevê-lo?" 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 "" "Renomearíamos as predefinições como \"Fornecedor Tipo Serial @ impressora " @@ -21333,6 +21560,18 @@ msgstr "" "A configuração predefinida do sistema não permite a criação. \n" "Insira novamente o modelo da impressora ou o diâmetro do bico." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Impressora criada com sucesso" @@ -21595,36 +21834,6 @@ msgstr "" "O tipo de bico não corresponde ao tipo de bico real da impressora.\n" "Clique no botão Sincronizar acima e reinicie a calibração." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "tamanho do bico na predefinição: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "tamanho do bico memorizado: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"O tamanho do bico na prédefinição não corresponde ao bico memorizado. Você " -"trocou o bico recentemente?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "bico[%d] na predefinição: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "bico[%d] memorizado: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"O tipo de bico predefinido não corresponde ao bico memorizado. Você trocou o " -"bico recentemente?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Imprimir material %1s com bico %2s pode causar danos ao bico." @@ -22574,26 +22783,17 @@ msgstr "Ângulo máx" msgid "Detection radius" msgstr "Raio de detecção" -msgid "Remove selected points" -msgstr "Remover pontos selecionados" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Remover tudo" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Pontos gerados automaticamente" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Adicionar orelha da borda" - -msgid "Delete a brim ear" -msgstr "Remover orelha da borda" - -msgid "Adjust head diameter" -msgstr "Ajustar diâmetro da cabeça" - -msgid "Adjust section view" -msgstr "Ajustar vista de seção" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -22605,8 +22805,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Definir o tipo de borda deste objeto como \"pintada\"" -msgid " invalid brim ears" -msgstr " orelhas da borda iválidas" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Orelhas da Borda" @@ -22890,15 +23090,13 @@ msgstr "" "Você sabia que o OrcaSlicer oferece uma ampla gama de atalhos de teclado e " "operações de cena 3D?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Reverter em ímpar\n" -"Você sabia que a função Reverter em ímpar pode melhorar " -"significativamente a qualidade da superfície das saliências?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23192,6 +23390,85 @@ msgstr "" "aumentar adequadamente a temperatura da mesa aquecida pode reduzir a " "probabilidade de empenamento?" +#~ msgid "Erase all painting" +#~ msgstr "Apagar toda a pintura" + +#~ msgid "Reset cut" +#~ msgstr "Redefinir corte" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Alterar a panorâmica e girar os botões do mouse" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Se ativado, troca as funções de panorâmica e rotação dos botões esquerdo " +#~ "e direito do mouse." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "tamanho do bico na predefinição: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "tamanho do bico memorizado: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "O tamanho do bico na prédefinição não corresponde ao bico memorizado. " +#~ "Você trocou o bico recentemente?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "bico[%d] na predefinição: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "bico[%d] memorizado: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "O tipo de bico predefinido não corresponde ao bico memorizado. Você " +#~ "trocou o bico recentemente?" + +#~ msgid "Remove selected points" +#~ msgstr "Remover pontos selecionados" + +#~ msgid "Remove all" +#~ msgstr "Remover tudo" + +#~ msgid "Auto-generate points" +#~ msgstr "Pontos gerados automaticamente" + +#~ msgid "Add a brim ear" +#~ msgstr "Adicionar orelha da borda" + +#~ msgid "Delete a brim ear" +#~ msgstr "Remover orelha da borda" + +#~ msgid "Adjust head diameter" +#~ msgstr "Ajustar diâmetro da cabeça" + +#~ msgid "Adjust section view" +#~ msgstr "Ajustar vista de seção" + +#~ msgid " invalid brim ears" +#~ msgstr " orelhas da borda iválidas" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Reverter em ímpar\n" +#~ "Você sabia que a função Reverter em ímpar pode melhorar " +#~ "significativamente a qualidade da superfície das saliências?" + #~ msgid "Pen size" #~ msgstr "Tamanho da caneta" diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index b0afabb0d5..44afae3c57 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.3.2 beta2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2026-02-25 13:38+0300\n" "Last-Translator: Felix14_v2\n" "Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), " @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "X-Generator: Poedit 3.8\n" # В большинстве мест подставляется в "%s экструдер", но также тянется и в @@ -130,8 +130,8 @@ msgstr "Выполнить" msgid "On highlighted overhangs only" msgstr "Только на подсвеченных нависаниях" -msgid "Erase all painting" -msgstr "Очистить всё" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Выделить зоны нависания" @@ -208,6 +208,9 @@ msgstr "Выделение граней по углу нависания." msgid "No auto support" msgstr "Автоподдержка отключена" +msgid "Done" +msgstr "Готово" + msgid "Support Generated" msgstr "Поддержка сгенерирована" @@ -361,6 +364,12 @@ msgstr "Выбрать часть" msgid "Fixed step drag" msgstr "Сместить с шагом" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Масштабирование без привязки к центру" @@ -509,6 +518,21 @@ msgstr "Положение сечения" msgid "Build Volume" msgstr "Область построения" +msgid "Multiple" +msgstr "Множитель" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +# В английском тут в кучу намешаны и "отступ", и "интервал". Используется в +# настройках авторасстановки моделей (в значении отступа) и в окне настроек +# рэмминга (в значении интервала, но там процент, так что не прям критично) +msgid "Spacing" +msgstr "Отступ" + msgid "Part" msgstr "Часть" @@ -618,12 +642,6 @@ msgstr "Редактировать соединения" msgid "Add connectors" msgstr "Добавить соединения" -msgid "Reset cut" -msgstr "Сброс сечения" - -msgid "Reset cutting plane and remove connectors" -msgstr "Сброс позиции секущей плоскости и удаление всех соединений" - msgid "Upper part" msgstr "Верхняя часть" @@ -643,6 +661,9 @@ msgstr "Результат" msgid "Cut to parts" msgstr "Объединить в сборку" +msgid "Reset cutting plane and remove connectors" +msgstr "Сброс позиции секущей плоскости и удаление всех соединений" + msgid "Perform cut" msgstr "Разрезать" @@ -877,6 +898,9 @@ msgstr "Шрифт по умолчанию" msgid "Advanced" msgstr "Расширенные" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1542,18 +1566,6 @@ msgstr "" "Выбор элемента 1 отменён,\n" "элемент 2 стал элементом 1" -# Зачем здесь "внимание"? Это просто руководство к действию -msgid "Warning: please select Plane's feature." -msgstr "Внимание: выберите плоскость." - -# Зачем здесь "внимание"? Это просто руководство к действию -msgid "Warning: please select Point's or Circle's feature." -msgstr "Внимание: выберите точку или окружность." - -# Зачем здесь "внимание"? Это просто руководство к действию -msgid "Warning: please select two different meshes." -msgstr "Внимание: выберите элемент на втором объекте." - msgid "Copy to clipboard" msgstr "Копировать в буфер обмена" @@ -1607,6 +1619,18 @@ msgstr "(подвижная)" msgid "Point and point assembly" msgstr "Сборка по точкам" +# Зачем здесь "внимание"? Это просто руководство к действию +msgid "Warning: please select two different meshes." +msgstr "Внимание: выберите элемент на втором объекте." + +# Зачем здесь "внимание"? Это просто руководство к действию +msgid "Warning: please select Plane's feature." +msgstr "Внимание: выберите плоскость." + +# Зачем здесь "внимание"? Это просто руководство к действию +msgid "Warning: please select Point's or Circle's feature." +msgstr "Внимание: выберите точку или окружность." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1810,6 +1834,18 @@ msgstr "Установлена последняя версия программ msgid "Info" msgstr "Информация" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1878,6 +1914,23 @@ msgstr "" "Слишком старая версия Orca Slicer. Для корректной работы обновите программу " "до последней версии." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Получение информации о принтере, попробуйте позднее." @@ -2212,9 +2265,9 @@ msgid "" "No - Do not change these settings for me" msgstr "" "На верхней поверхности модели присутствует рельефный текст. Для достижения " -"оптимального результата рекомендуется установить «Порог одного " -"периметра» (min_width_top_surface) равным 0, чтобы избежать проблем в работе " -"настройки «Только один периметр на верхней поверхности».\n" +"оптимального результата рекомендуется установить «Порог одного периметра» " +"(min_width_top_surface) равным 0, чтобы избежать проблем в работе настройки " +"«Только один периметр на верхней поверхности».\n" "\n" "Да – применить рекомендуемые настройки\n" "Нет – ничего не менять" @@ -2439,12 +2492,12 @@ msgstr "Автоориентация модели для улучшения ка msgid "Edit" msgstr "Правка" -msgid "Delete this filament" -msgstr "Удалить этот филамент" - msgid "Merge with" msgstr "Объединить с" +msgid "Delete this filament" +msgstr "Удалить этот филамент" + msgid "Select All" msgstr "Выбрать всё" @@ -4865,9 +4918,6 @@ msgstr "Остановить сушку" msgid "Proceed" msgstr "Продолжить" -msgid "Done" -msgstr "Готово" - msgid "Retry" msgstr "Повтор" @@ -5141,41 +5191,6 @@ msgstr "Переходный слой" msgid "Mixed" msgstr "Смешанный" -msgid "mm/s" -msgstr "мм/с" - -msgid "mm/s²" -msgstr "мм/с²" - -# В идеале должно быть "Объёмный расход", но кое-как пытаемся совместить с -# меню калибровок. Используется в табличке просмотра слоёв в значении "расход" -# и в меню калибровок в значении "поток". -msgid "Flow rate" -msgstr "Расход" - -msgid "mm³/s" -msgstr "мм³/с" - -# Костыль для обхода переноса одной буквы на строку – 0хлаждение, пока -# попробуем просто обдув. "Скорость вентилятора" тут не очень уместно, т.к. -# отображается в просмотре кода не в % (косяк орки) а в единицах, + длинная -# строка растягивает панель свойств линии. -msgid "Fan speed" -msgstr "Обдув" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Время" - -# Перед строкой подставляется кнопка "Показать"/"Скрыть" -msgid "Actual speed profile" -msgstr "график расчётной скорости" - -msgid "Speed: " -msgstr "Скорость: " - msgid "Height: " msgstr "Высота: " @@ -5210,6 +5225,41 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "мм/с" + +msgid "mm/s²" +msgstr "мм/с²" + +msgid "mm³/s" +msgstr "мм³/с" + +# В идеале должно быть "Объёмный расход", но кое-как пытаемся совместить с +# меню калибровок. Используется в табличке просмотра слоёв в значении "расход" +# и в меню калибровок в значении "поток". +msgid "Flow rate" +msgstr "Расход" + +# Костыль для обхода переноса одной буквы на строку – 0хлаждение, пока +# попробуем просто обдув. "Скорость вентилятора" тут не очень уместно, т.к. +# отображается в просмотре кода не в % (косяк орки) а в единицах, + длинная +# строка растягивает панель свойств линии. +msgid "Fan speed" +msgstr "Обдув" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Время" + +msgid "Speed: " +msgstr "Скорость: " + +# Перед строкой подставляется кнопка "Показать"/"Скрыть" +msgid "Actual speed profile" +msgstr "график расчётной скорости" + msgid "Statistics of All Plates" msgstr "Статистика по всем столам" @@ -5553,12 +5603,6 @@ msgstr "Ориентация" msgid "Arrange options" msgstr "Параметры расстановки" -# В английском тут в кучу намешаны и "отступ", и "интервал". Используется в -# настройках авторасстановки моделей (в значении отступа) и в окне настроек -# рэмминга (в значении интервала, но там процент, так что не прям критично) -msgid "Spacing" -msgstr "Отступ" - msgid "0 means auto spacing." msgstr "0 - автоматический отступ." @@ -5697,7 +5741,7 @@ msgstr "Объём:" msgid "Size:" msgstr "Размер:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -6119,6 +6163,15 @@ msgstr "Экспортировать текущую конфигурацию в msgid "Export" msgstr "Экспорт" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Выход" @@ -6247,6 +6300,9 @@ msgstr "Вид" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Помощь" @@ -8928,22 +8984,33 @@ msgstr "" "Если включено, используется свободное вращение камеры. Если выключено, " "используется вращение камеры с ограничениями." -# Поменять местами кнопки перемещение и поворота камеры -msgid "Swap pan and rotate mouse buttons" -msgstr "Поменять местами перемещение и вращение камеры" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Поменять местами функции перемещения и вращения камеры для левой и правой " -"кнопок мыши." - msgid "Reverse mouse zoom" msgstr "Инвертировать приближение" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Инвертировать масштабирование с помощью колеса мыши." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Сброс выбора по умолчанию" @@ -8971,6 +9038,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "Отменить выбор для синхронизации профиля принтера при открытии файла." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Отключено" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Регион входа" @@ -9118,6 +9238,15 @@ msgstr "Режим разработчика" msgid "Skip AMS blacklist check" msgstr "Пропуск проверки материалов в AMS из файла чёрного списка" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Игнорировать неисправность хранилища" @@ -10255,8 +10384,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 "" "При записи таймлапса со скрытием головы рекомендуется добавить черновую " "башню таймлапса.\n" @@ -10913,6 +11042,32 @@ msgstr "Не сохранять" msgid "Discard" msgstr "Не сохранять" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Нажмите правой кнопкой мыши, чтобы отобразить полный текст." @@ -11501,6 +11656,9 @@ msgstr "Нажмите здесь, чтобы загрузить его." msgid "Login" msgstr "Войти" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Требуется действие] " @@ -11537,6 +11695,18 @@ msgstr "Показать список сочетаний клавиш" msgid "Global shortcuts" msgstr "Глобальные горячие клавиши" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -12033,9 +12203,6 @@ msgstr " нельзя заправить в " msgid "Internal Bridge" msgstr "Внутренний мост" -msgid "Multiple" -msgstr "Множитель" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13908,9 +14075,6 @@ msgstr "" "4. Везде – создавать доп. слой как для внутренних, так и для внешних " "мостов.\n" -msgid "Disabled" -msgstr "Отключено" - msgid "External bridge only" msgstr "Внешние мосты" @@ -14663,6 +14827,18 @@ msgstr "Авто для промывки" msgid "Auto For Match" msgstr "Авто для сопоставления" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Температура прочистки" @@ -15184,6 +15360,17 @@ msgstr "" "Внимание: плотность заполнения будет скорректирована для сохранения того же " "расхода материала." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Шаблон заполнения" @@ -15396,8 +15583,8 @@ msgid "mm/s² or %" msgstr "мм/с² или %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Ускорение на разреженном заполнении. Можно указать процент от ускорения по " "умолчанию." @@ -15544,10 +15731,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 "" "Интенсивность охлаждения будет линейно увеличиваться от нуля со слоя " "заданным параметром «Не включать вентилятор на первых» до заданной " @@ -15702,8 +15889,9 @@ msgstr "" "Максимальная величина отклонения сегментов оболочки. \n" "\n" "Внимание! Режимы «Экструзия» и «Совместный» не будут работать, если значение " -"превышает ширину периметра. Если при нарезке возникает ошибка Flow::" -"spacing(), проверьте, что значение меньше выражения: [∅ сопла - h слоя/4]." +"превышает ширину периметра. Если при нарезке возникает ошибка " +"Flow::spacing(), проверьте, что значение меньше выражения: [∅ сопла - h слоя/" +"4]." msgid "Fuzzy skin point distance" msgstr "Длина сегментов" @@ -16084,6 +16272,30 @@ msgstr "" "увеличения скорости его вращения.\n" "Установите 0 для отключения." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Стоимость часа печати" @@ -17804,8 +18016,8 @@ msgid "Role base wipe speed" msgstr "Местная скорость очистки" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -18247,6 +18459,19 @@ msgstr "Прочистка сопла от остатков материала msgid "Enable filament ramming" msgstr "Включить рэмминг прутка" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Без разреженных слоёв (beta)" @@ -18646,15 +18871,18 @@ msgstr "Максимальный угол" # поддержки при этом будут использовать угол по умолчанию (30°)" ВНИМАНИЕ: # последнее предложение – особенность PR msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Создавать поддержки для поверхностей с указанным или более острым углом нависания над столом. " -"С понижением угла повышается допустимый наклон поверхности для печати без поддержки.\n" -"Примечание: используйте 0° для переключения обычных поддержек в режим обнаружения нависаний по проценту выноса линии. " -"Древовидные поддержки при этом будут использовать угол по умолчанию (30°)" +"Создавать поддержки для поверхностей с указанным или более острым углом " +"нависания над столом. С понижением угла повышается допустимый наклон " +"поверхности для печати без поддержки.\n" +"Примечание: используйте 0° для переключения обычных поддержек в режим " +"обнаружения нависаний по проценту выноса линии. Древовидные поддержки при " +"этом будут использовать угол по умолчанию (30°)" # ??? Порог перекрытия периметров msgid "Threshold overlap" @@ -18835,8 +19063,8 @@ msgstr "Вкл. контроль температуры" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -19938,8 +20166,8 @@ msgid "Debug level" msgstr "Уровень отладки журнала" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "Задаёт параметр чувствительности записи событий в журнал:\n" " 0 – Критическая ошибка\n" @@ -20526,8 +20754,8 @@ msgstr "" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или *." -"zip.amf." +"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или " +"*.zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: ошибка обработки" @@ -21781,8 +22009,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" @@ -21960,6 +22188,18 @@ msgstr "" "Системный профиль не допускает создания.\n" "Пожалуйста, повторно введите модель принтера или диаметр сопла." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Профиль принтера успешно создан" @@ -22210,36 +22450,6 @@ msgstr "" "Тип сопла не соответствует установленному соплу.\n" "Выполните синхронизацию и перезапустите калибровку." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "сопло в профиле: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "Запомненный размер сопла: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"Диаметр сопла в профиле не соответствует сохранённому \n" -"в памяти диаметру сопла. Вы недавно сменили сопло?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "Сопло [%d] в профиле: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "Сопло [%d] запомнено: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Тип сопла в профиле не соответствует сохранённому \n" -"в памяти диаметру сопла. Вы недавно сменили сопло?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -23174,26 +23384,17 @@ msgstr "Макс. угол" msgid "Detection radius" msgstr "Радиус обнаружения" -msgid "Remove selected points" -msgstr "Удалить выбранные" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Удалить все" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Сгенерировать автоматически" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Добавить «мышиные уши»" - -msgid "Delete a brim ear" -msgstr "Удалить «мышиные уши»" - -msgid "Adjust head diameter" -msgstr "Настройка диаметра головы" - -msgid "Adjust section view" -msgstr "Настройка вида сечения" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -23205,8 +23406,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Переключить тип каймы для этого объекта на «Вручную»." -msgid " invalid brim ears" -msgstr " недействительные «мышиные уши»" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Кайма «мышиные уши»" @@ -23436,9 +23637,9 @@ msgid "" "overhangs?" msgstr "" "Порядок печати периметров «Навстречу»\n" -"Знаете ли вы, что можно использовать порядок печати периметров " -"«Навстречу» (Inner/Outer/Inner)? Это улучшает точность, прочность и внешний " -"вид, если у модели не очень крутые нависания." +"Знаете ли вы, что можно использовать порядок печати периметров «Навстречу» " +"(Inner/Outer/Inner)? Это улучшает точность, прочность и внешний вид, если у " +"модели не очень крутые нависания." #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -23504,15 +23705,13 @@ msgstr "" "Знаете ли вы, что в Orca Slicer имеется большой список горячих клавиш для " "облегчения и ускорения работы с программой?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Реверс на нависаниях\n" -"Знаете ли вы, что функция Реверс на нависаниях может значительно " -"улучшить качество поверхности нависающий частей?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -23806,6 +24005,86 @@ msgstr "" "ABS, повышение температуры подогреваемого стола может снизить эту " "вероятность?" +#~ msgid "Erase all painting" +#~ msgstr "Очистить всё" + +#~ msgid "Reset cut" +#~ msgstr "Сброс сечения" + +# Поменять местами кнопки перемещение и поворота камеры +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Поменять местами перемещение и вращение камеры" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Поменять местами функции перемещения и вращения камеры для левой и правой " +#~ "кнопок мыши." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "сопло в профиле: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "Запомненный размер сопла: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "Диаметр сопла в профиле не соответствует сохранённому \n" +#~ "в памяти диаметру сопла. Вы недавно сменили сопло?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "Сопло [%d] в профиле: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "Сопло [%d] запомнено: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Тип сопла в профиле не соответствует сохранённому \n" +#~ "в памяти диаметру сопла. Вы недавно сменили сопло?" + +#~ msgid "Remove selected points" +#~ msgstr "Удалить выбранные" + +#~ msgid "Remove all" +#~ msgstr "Удалить все" + +#~ msgid "Auto-generate points" +#~ msgstr "Сгенерировать автоматически" + +#~ msgid "Add a brim ear" +#~ msgstr "Добавить «мышиные уши»" + +#~ msgid "Delete a brim ear" +#~ msgstr "Удалить «мышиные уши»" + +#~ msgid "Adjust head diameter" +#~ msgstr "Настройка диаметра головы" + +#~ msgid "Adjust section view" +#~ msgstr "Настройка вида сечения" + +#~ msgid " invalid brim ears" +#~ msgstr " недействительные «мышиные уши»" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Реверс на нависаниях\n" +#~ "Знаете ли вы, что функция Реверс на нависаниях может значительно " +#~ "улучшить качество поверхности нависающий частей?" + #~ msgid "Pen size" #~ msgstr "Размер кисти" @@ -25128,9 +25407,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Задание позиции" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index a42e820d05..10c620f390 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,8 +112,8 @@ msgstr "Utför" msgid "On highlighted overhangs only" msgstr "Endast på markerade överhäng" -msgid "Erase all painting" -msgstr "Radera all färgläggning" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Markera områden med överhäng" @@ -182,6 +182,9 @@ msgstr "Markera ytor enligt överhängs vinkeln." msgid "No auto support" msgstr "Ingen auto support" +msgid "Done" +msgstr "Klar" + msgid "Support Generated" msgstr "Support skapad" @@ -335,6 +338,12 @@ msgstr "Part selection" msgid "Fixed step drag" msgstr "Fixed step drag" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Single sided scaling" @@ -483,6 +492,18 @@ msgstr "Cut position" msgid "Build Volume" msgstr "Build Volume" +msgid "Multiple" +msgstr "Flertalet" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Mellanrum" + msgid "Part" msgstr "Del" @@ -590,12 +611,6 @@ msgstr "Redigera kontaktdon" msgid "Add connectors" msgstr "Lägg till kontaktdon" -msgid "Reset cut" -msgstr "Reset cut" - -msgid "Reset cutting plane and remove connectors" -msgstr "Reset cutting plane and remove connectors" - msgid "Upper part" msgstr "Övre del" @@ -614,6 +629,9 @@ msgstr "Efter skärning" msgid "Cut to parts" msgstr "Beskär till delar" +msgid "Reset cutting plane and remove connectors" +msgstr "Reset cutting plane and remove connectors" + msgid "Perform cut" msgstr "Utför beskärning" @@ -843,6 +861,9 @@ msgstr "Default font" msgid "Advanced" msgstr "Avancerat" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1491,15 +1512,6 @@ msgstr "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" -msgid "Warning: please select Plane's feature." -msgstr "Warning: please select Plane's feature." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Warning: please select Point's or Circle's feature." - -msgid "Warning: please select two different meshes." -msgstr "Warning: please select two different meshes." - msgid "Copy to clipboard" msgstr "Kopiera till urklipp" @@ -1551,6 +1563,15 @@ msgstr "(Moving)" msgid "Point and point assembly" msgstr "Point and point assembly" +msgid "Warning: please select two different meshes." +msgstr "Warning: please select two different meshes." + +msgid "Warning: please select Plane's feature." +msgstr "Warning: please select Plane's feature." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Warning: please select Point's or Circle's feature." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1741,6 +1762,18 @@ msgstr "Det är den senaste versionen." msgid "Info" msgstr "Info" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1806,6 +1839,23 @@ msgstr "" "Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste " "versionen innan den kan användas normalt" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Retrieving printer information, please try again later." @@ -2363,12 +2413,12 @@ msgstr "Auto placera objektet för att förbättra utskriftskvaliteten." msgid "Edit" msgstr "Redigera" -msgid "Delete this filament" -msgstr "Delete this filament" - msgid "Merge with" msgstr "Merge with" +msgid "Delete this filament" +msgstr "Delete this filament" + msgid "Select All" msgstr "Välj Alla" @@ -4704,9 +4754,6 @@ msgstr "Stop Drying" msgid "Proceed" msgstr "Fortsätt" -msgid "Done" -msgstr "Klar" - msgid "Retry" msgstr "Försök igen" @@ -4969,33 +5016,6 @@ msgstr "Support övergång" msgid "Mixed" msgstr "Blandat" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Flödeshastighet" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Fläkt hastighet" - -msgid "°C" -msgstr "° C" - -msgid "Time" -msgstr "Tid" - -msgid "Actual speed profile" -msgstr "Actual speed profile" - -msgid "Speed: " -msgstr "Hastighet: " - msgid "Height: " msgstr "Höjd: " @@ -5029,6 +5049,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Flödeshastighet" + +msgid "Fan speed" +msgstr "Fläkt hastighet" + +msgid "°C" +msgstr "° C" + +msgid "Time" +msgstr "Tid" + +msgid "Speed: " +msgstr "Hastighet: " + +msgid "Actual speed profile" +msgstr "Actual speed profile" + msgid "Statistics of All Plates" msgstr "Statistik för alla plattor" @@ -5362,9 +5409,6 @@ msgstr "Placera" msgid "Arrange options" msgstr "Arrangera val" -msgid "Spacing" -msgstr "Mellanrum" - msgid "0 means auto spacing." msgstr "0 means auto spacing." @@ -5499,7 +5543,7 @@ msgstr "Volym:" msgid "Size:" msgstr "Storlek:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5898,6 +5942,15 @@ msgstr "Exportera aktuell konfiguration till filer" msgid "Export" msgstr "Exportera" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Avsluta" @@ -6025,6 +6078,9 @@ msgstr "Vy" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Hjälp" @@ -8616,21 +8672,33 @@ msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" "Om aktiverat, använd fri kamera. Om inte aktiverat, använd begränsad kamera." -msgid "Swap pan and rotate mouse buttons" -msgstr "Växla panorerings- och rotationsknapparna på musen" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Om aktiverat växlar vänster och höger musknapps panorerings- och " -"rotationsfunktioner." - msgid "Reverse mouse zoom" msgstr "Omvänd muszoomning" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Om aktiverad, vänder zoomriktningen med mushjulet." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Clear my choice on..." @@ -8654,6 +8722,59 @@ msgid "" msgstr "" "Clear my choice for synchronizing printer preset after loading the file." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Disabled" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Logga in region" @@ -8807,6 +8928,15 @@ msgstr "Utvecklingsläge" msgid "Skip AMS blacklist check" msgstr "Hoppa över kontrollen av AMS svarta lista" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Allow Abnormal Storage" @@ -9913,8 +10043,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 "" "När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger " "till ett \"Timelapse Wipe Tower\".\n" @@ -10548,6 +10678,32 @@ msgstr "Spara inte" msgid "Discard" msgstr "Överge" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Högerklicka för att se hela texten." @@ -10955,8 +11111,8 @@ msgstr "" msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" -"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt" -"\"." +"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per " +"objekt\"." msgid "" "You selected external and AMS filament at the same time in an extruder, you " @@ -11125,6 +11281,9 @@ msgstr "Klicka här för att ladda ner den." msgid "Login" msgstr "Logga in" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Action Required] " @@ -11161,6 +11320,18 @@ msgstr "Visa tangentbordets genvägs lista" msgid "Global shortcuts" msgstr "Övergripande genvägar" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11645,9 +11816,6 @@ msgstr " can not be placed in the " msgid "Internal Bridge" msgstr "Internal Bridge" -msgid "Multiple" -msgstr "Flertalet" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13288,9 +13456,9 @@ msgid "" "quality for needle and small details." msgstr "" "Aktivera detta val för att sänka utskifts hastigheten för att göra den sista " -"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel" -"\", detta så att lager kan kylas under en längre tid. Detta kan förbättra " -"kylnings kvaliteten för små detaljer" +"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets " +"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan " +"förbättra kylnings kvaliteten för små detaljer" msgid "Normal printing" msgstr "Normal utskrift" @@ -13455,9 +13623,6 @@ msgstr "" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" -msgid "Disabled" -msgstr "Disabled" - msgid "External bridge only" msgstr "External bridge only" @@ -14139,6 +14304,18 @@ msgstr "Auto For Flush" msgid "Auto For Match" msgstr "Auto For Match" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Flush temperature" @@ -14642,6 +14819,17 @@ msgid "" msgstr "" "Using multiple lines for the infill pattern, if supported by infill pattern." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Sparsam ifyllnads mönster" @@ -14821,8 +15009,8 @@ msgid "mm/s² or %" msgstr "mm/s² eller %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. " "100%) kommer det att beräknas baserat på standard accelerationen." @@ -14958,16 +15146,16 @@ msgstr "Full fläkthastighet vid lager" 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 "" "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." msgid "layer" msgstr "layer" @@ -15472,6 +15660,30 @@ msgstr "" "fan started spinning from a stop, or to get the fan up to speed faster.\n" "Set to 0 to deactivate." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Time cost" @@ -17064,13 +17276,13 @@ msgid "Role base wipe speed" msgstr "Role base wipe speed" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." @@ -17455,6 +17667,19 @@ msgstr "Purge remaining filament into prime tower." msgid "Enable filament ramming" msgstr "Enable filament ramming" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "No sparse layers (beta)" @@ -17804,15 +18029,17 @@ msgid "Threshold angle" msgstr "Gräns vinkel" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Support skapas för överhäng vars sluttning är under denna gräns." -"Ju mindre detta värde är, desto brantare överhäng kan skrivas ut utan stöd.\n" -"Obs: Om det är satt till 0 använder vanliga stöd istället tröskelöverlappningen, " -"medan trädstöd faller tillbaka till ett standardvärde på 30." +"Support skapas för överhäng vars sluttning är under denna gräns.Ju mindre " +"detta värde är, desto brantare överhäng kan skrivas ut utan stöd.\n" +"Obs: Om det är satt till 0 använder vanliga stöd istället " +"tröskelöverlappningen, medan trädstöd faller tillbaka till ett standardvärde " +"på 30." msgid "Threshold overlap" msgstr "Threshold overlap" @@ -17822,9 +18049,9 @@ msgid "" "overlap is below the threshold. The smaller this value is, the steeper the " "overhang that can be printed without support." msgstr "" -"Om tröskelvinkeln är noll genereras stöd för överhäng vars överlappning " -"är under tröskeln. Ju mindre detta värde är, desto brantare är det överhäng " -"som kan skrivas ut utan stöd." +"Om tröskelvinkeln är noll genereras stöd för överhäng vars överlappning är " +"under tröskeln. Ju mindre detta värde är, desto brantare är det överhäng som " +"kan skrivas ut utan stöd." msgid "Tree support branch angle" msgstr "Tree support grenarnas vinkel" @@ -17978,8 +18205,8 @@ msgstr "Activate temperature control" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -17989,8 +18216,8 @@ msgid "" "heater is installed." msgstr "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18976,11 +19203,11 @@ msgid "Debug level" msgstr "Felsökningsnivå" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, 5:" -"spåra\n" +"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, " +"5:spåra\n" msgid "Enable timelapse for print" msgstr "Enable timelapse for print" @@ -20750,12 +20977,12 @@ msgstr "" "Vill du skriva om det?" 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 "" -"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" msgid "Create Printer/Nozzle" @@ -20931,6 +21158,18 @@ msgstr "" "The system preset does not allow creation. \n" "Please re-enter the printer model or nozzle diameter." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Skapa Printer lyckades" @@ -21180,36 +21419,6 @@ msgstr "" "The nozzle type does not match the actual printer nozzle type.\n" "Please click the Sync button above and restart the calibration." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "nozzle size in preset: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "nozzle size memorized: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "nozzle[%d] in preset: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "nozzle[%d] memorized: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Printing %1s material with %2s nozzle may cause nozzle damage." @@ -22127,26 +22336,17 @@ msgstr "Max angle" msgid "Detection radius" msgstr "Detection radius" -msgid "Remove selected points" -msgstr "Remove selected points" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Remove all" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Auto-generate points" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Add a brim ear" - -msgid "Delete a brim ear" -msgstr "Delete a brim ear" - -msgid "Adjust head diameter" -msgstr "Adjust head diameter" - -msgid "Adjust section view" -msgstr "Adjust section view" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -22158,8 +22358,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Set the brim type of this object to \"painted\"" -msgid " invalid brim ears" -msgstr " ogiltiga öron" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Brätte Öron" @@ -22436,15 +22636,13 @@ msgstr "" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " "3D scene operations?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22736,6 +22934,85 @@ msgstr "" "ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten " "för vridning?" +#~ msgid "Erase all painting" +#~ msgstr "Radera all färgläggning" + +#~ msgid "Reset cut" +#~ msgstr "Reset cut" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Växla panorerings- och rotationsknapparna på musen" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Om aktiverat växlar vänster och höger musknapps panorerings- och " +#~ "rotationsfunktioner." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "nozzle size in preset: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "nozzle size memorized: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "nozzle[%d] in preset: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "nozzle[%d] memorized: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" + +#~ msgid "Remove selected points" +#~ msgstr "Remove selected points" + +#~ msgid "Remove all" +#~ msgstr "Remove all" + +#~ msgid "Auto-generate points" +#~ msgstr "Auto-generate points" + +#~ msgid "Add a brim ear" +#~ msgstr "Add a brim ear" + +#~ msgid "Delete a brim ear" +#~ msgstr "Delete a brim ear" + +#~ msgid "Adjust head diameter" +#~ msgstr "Adjust head diameter" + +#~ msgid "Adjust section view" +#~ msgstr "Adjust section view" + +#~ msgid " invalid brim ears" +#~ msgstr " ogiltiga öron" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" + #~ msgid "Pen size" #~ msgstr "Penn storlek" @@ -23546,9 +23823,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Ställ in Position" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 6667141e66..ef84e57f0e 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2026-04-08 23:59+0300\n" "Last-Translator: GlauTech\n" "Language-Team: \n" @@ -120,8 +120,8 @@ msgstr "Uygula" msgid "On highlighted overhangs only" msgstr "Yalnızca vurgulanan çıkıntılarda" -msgid "Erase all painting" -msgstr "Tüm boyamayı sil" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Çıkıntı alanlarını vurgulayın" @@ -191,6 +191,9 @@ msgstr "Yüzleri çıkıntı açısına göre vurgulayın." msgid "No auto support" msgstr "Otomatik destek yok" +msgid "Done" +msgstr "Tamamlandı" + msgid "Support Generated" msgstr "Destek Oluşturuldu" @@ -344,6 +347,12 @@ msgstr "Parça seçimi" msgid "Fixed step drag" msgstr "Sabit adım sürükleme" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Tek taraflı ölçekleme" @@ -492,6 +501,18 @@ msgstr "Kesim konumu" msgid "Build Volume" msgstr "Birim oluştur" +msgid "Multiple" +msgstr "Çoklu" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Boşluk" + msgid "Part" msgstr "Parça" @@ -599,12 +620,6 @@ msgstr "Bağlayıcıları düzenle" msgid "Add connectors" msgstr "Bağlayıcı ekle" -msgid "Reset cut" -msgstr "Kesimi sıfırla" - -msgid "Reset cutting plane and remove connectors" -msgstr "Kesme düzlemini sıfırlayın ve bağlayıcıları çıkarın" - msgid "Upper part" msgstr "Üst parça" @@ -623,6 +638,9 @@ msgstr "Kesildikten sonra" msgid "Cut to parts" msgstr "Parçalara ayır" +msgid "Reset cutting plane and remove connectors" +msgstr "Kesme düzlemini sıfırlayın ve bağlayıcıları çıkarın" + msgid "Perform cut" msgstr "Kesimi gerçekleştir" @@ -856,6 +874,9 @@ msgstr "Varsayılan yazı tipi" msgid "Advanced" msgstr "Gelişmiş" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1510,15 +1531,6 @@ msgstr "" "Özellik 1 sıfırlandı, \n" "özellik 2, özellik 1 oldu" -msgid "Warning: please select Plane's feature." -msgstr "Uyarı: Lütfen Düzlemin özelliğini seçin." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Uyarı: Lütfen Noktanın veya Çemberin özelliğini seçin." - -msgid "Warning: please select two different meshes." -msgstr "Uyarı: Lütfen iki farklı ağ seçin." - msgid "Copy to clipboard" msgstr "Panoya kopyala" @@ -1571,6 +1583,15 @@ msgstr "(Hareketli)" msgid "Point and point assembly" msgstr "Nokta ve nokta montajı" +msgid "Warning: please select two different meshes." +msgstr "Uyarı: Lütfen iki farklı ağ seçin." + +msgid "Warning: please select Plane's feature." +msgstr "Uyarı: Lütfen Düzlemin özelliğini seçin." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Uyarı: Lütfen Noktanın veya Çemberin özelliğini seçin." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1761,6 +1782,18 @@ msgstr "Bu en yeni versiyondur." msgid "Info" msgstr "Bilgi" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1827,6 +1860,23 @@ msgstr "" "Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en " "son sürüme güncellenmesi gerekiyor." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Yazıcı bilgileri alınıyor, lütfen daha sonra tekrar deneyin." @@ -2382,12 +2432,12 @@ msgstr "Baskı kalitesini artırmak için nesneyi otomatik olarak yönlendirin." msgid "Edit" msgstr "Düzenle" -msgid "Delete this filament" -msgstr "Bu filamanı sil" - msgid "Merge with" msgstr "Şununla birleştir:" +msgid "Delete this filament" +msgstr "Bu filamanı sil" + msgid "Select All" msgstr "Hepsini seç" @@ -4719,9 +4769,6 @@ msgstr "Kurumayı Durdur" msgid "Proceed" msgstr "İlerlemek" -msgid "Done" -msgstr "Tamamlandı" - msgid "Retry" msgstr "Yeniden dene" @@ -4982,33 +5029,6 @@ msgstr "Destek geçişi" msgid "Mixed" msgstr "Karışık" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Akış hızı" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Fan hızı" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Zaman" - -msgid "Actual speed profile" -msgstr "Gerçek hız profili" - -msgid "Speed: " -msgstr "Hız: " - msgid "Height: " msgstr "Yükseklik: " @@ -5042,6 +5062,33 @@ msgstr "" msgid "PA: " msgstr "PA:" +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Akış hızı" + +msgid "Fan speed" +msgstr "Fan hızı" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Zaman" + +msgid "Speed: " +msgstr "Hız: " + +msgid "Actual speed profile" +msgstr "Gerçek hız profili" + msgid "Statistics of All Plates" msgstr "Tüm Plakaların İstatistikleri" @@ -5381,9 +5428,6 @@ msgstr "Yön" msgid "Arrange options" msgstr "Hizalama seçenekleri" -msgid "Spacing" -msgstr "Boşluk" - msgid "0 means auto spacing." msgstr "0 otomatik aralık anlamına gelir." @@ -5518,7 +5562,7 @@ msgstr "Hacim:" msgid "Size:" msgstr "Boyut:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5918,6 +5962,15 @@ msgstr "Geçerli yapılandırmayı dosyalara aktar" msgid "Export" msgstr "Dışa Aktar" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Çıkış" @@ -6045,6 +6098,9 @@ msgstr "Görünüm" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Yardım" @@ -8653,15 +8709,6 @@ msgstr "" "Etkinleştirilirse serbest kamerayı kullanın. Etkin değilse kısıtlı kamerayı " "kullanın." -msgid "Swap pan and rotate mouse buttons" -msgstr "Pan ve döndürme işlevlerini fare düğmeleri arasında değiştir" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Etkinleştirildiğinde, sol ve sağ fare düğmelerinin pan ve döndürme " -"işlevlerini yer değiştirir." - msgid "Reverse mouse zoom" msgstr "Mouse yakınlaştırmasını tersine çevir" @@ -8669,6 +8716,27 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" "Etkinleştirilirse, mouse tekerleğiyle yakınlaştırmanın yönü tersine çevrilir." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Seçimimi temizle..." @@ -8693,6 +8761,59 @@ msgstr "" "Dosyayı yükledikten sonra yazıcı ön ayarını senkronize etmek için seçimimi " "temizleyin." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Devredışı" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Giriş bölgesi" @@ -8851,6 +8972,15 @@ msgstr "Geliştirici Modu" msgid "Skip AMS blacklist check" msgstr "AMS kara liste kontrolünü atla" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Anormal Depolamaya İzin Ver" @@ -9977,8 +10107,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 "" "Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" " "eklenmesi önerilir.\n" @@ -10606,6 +10736,32 @@ msgstr "Kaydetme" msgid "Discard" msgstr "Çıkart" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + 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." @@ -11188,6 +11344,9 @@ msgstr "İndirmek için buraya tıklayın." msgid "Login" msgstr "Giriş yap" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[İşlem Gerekli]" @@ -11224,6 +11383,18 @@ msgstr "Klavye kısayolları listesini göster" msgid "Global shortcuts" msgstr "Genel kısayollar" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11712,9 +11883,6 @@ msgstr "içine yerleştirilemez" msgid "Internal Bridge" msgstr "İç Köprü" -msgid "Multiple" -msgstr "Çoklu" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "%1% çizgi genişliği hesaplanamadı. \"%2%\" değeri alınamıyor " @@ -11907,8 +12075,8 @@ msgid "" "Please select \"By object\" print sequence to print multiple objects in " "spiral vase mode." msgstr "" -"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre" -"\" yazdırma sırasını seçin." +"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye " +"göre\" yazdırma sırasını seçin." msgid "" "The spiral vase mode does not work when an object contains more than one " @@ -13541,9 +13709,6 @@ msgstr "" "4. Tümüne uygula - hem iç hem de dış köprüler için ikinci köprü katmanları " "oluşturur\n" -msgid "Disabled" -msgstr "Devredışı" - msgid "External bridge only" msgstr "Yalnızca dış köprü" @@ -14226,6 +14391,18 @@ msgstr "Yıkama İçin Otomatik" msgid "Auto For Match" msgstr "Otomatik Maç İçin" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Yıkama sıcaklığı" @@ -14733,6 +14910,17 @@ msgstr "" "Dolgu deseni tarafından destekleniyorsa, dolgu deseni için birden fazla " "çizgi kullanılması." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Dolgu deseni" @@ -14908,8 +15096,8 @@ msgid "mm/s² or %" msgstr "mm/s² veya %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Seyrek dolgunun hızlandırılması. Değer yüzde olarak ifade edilirse (örn. " "%100), varsayılan ivmeye göre hesaplanacaktır." @@ -15041,16 +15229,17 @@ msgstr "Maksimum fan hızı" 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 "" "Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan " "\"ful_fan_speed_layer\" katmanında maksimuma doğrusal olarak artırılacaktır. " "\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden " -"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers" -"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır." +"düşükse göz ardı edilecektir; bu durumda fan, " +"\"close_fan_the_first_x_layers\" + 1 katmanında izin verilen maksimum hızda " +"çalışacaktır." msgid "layer" msgstr "katman" @@ -15555,6 +15744,30 @@ msgstr "" "daha hızlı hızlanması için yetersiz olabileceği fanlar için kullanışlıdır.\n" "Devre dışı bırakmak için 0'a ayarlayın." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "Zaman maliyeti" @@ -17166,8 +17379,8 @@ msgid "Role base wipe speed" msgstr "Otomatik temizleme hızı" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17558,6 +17771,19 @@ msgstr "Kalan filamenti Prime Tower'da akıt." msgid "Enable filament ramming" msgstr "Filament sıkıştırmayı etkinleştir" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Seyrek katman yok (beta)" @@ -17908,15 +18134,17 @@ msgid "Threshold angle" msgstr "Destek açısı" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Eğim açısı eşik değerinin altında olan çıkıntılar için destek oluşturulacaktır." -"Bu değer ne kadar küçükse, desteksiz yazdırılabilecek çıkıntı o kadar dik olur.\n" -"Not: 0 olarak ayarlanırsa, normal destekler bunun yerine Eşik çakışması kullanır, " -"ağaç destekler ise varsayılan 30 değerine geri döner." +"Eğim açısı eşik değerinin altında olan çıkıntılar için destek " +"oluşturulacaktır.Bu değer ne kadar küçükse, desteksiz yazdırılabilecek " +"çıkıntı o kadar dik olur.\n" +"Not: 0 olarak ayarlanırsa, normal destekler bunun yerine Eşik çakışması " +"kullanır, ağaç destekler ise varsayılan 30 değerine geri döner." msgid "Threshold overlap" msgstr "Eşik çakışması" @@ -18080,8 +18308,8 @@ msgstr "Sıcaklık kontrolünü etkinleştirin" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -19086,8 +19314,8 @@ msgid "Debug level" msgstr "Hata ayıklama düzeyi" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "Hata ayıklama günlüğü düzeyini ayarlar. 0:önemli, 1:hata, 2:uyarı, 3:bilgi, " "4:hata ayıklama, 5:izleme\n" @@ -20877,8 +21105,8 @@ msgstr "" "Yeniden yazmak ister misin?" 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 ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri " @@ -21056,6 +21284,18 @@ msgstr "" "Sistem ön ayarı oluşturmaya izin vermiyor. \n" "Lütfen yazıcı modelini veya püskürtme ucu çapını yeniden girin." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Yazıcı Oluşturma Başarılı" @@ -21309,36 +21549,6 @@ msgstr "" "Lütfen yukarıdaki Senkronizasyon düğmesine tıklayın ve kalibrasyonu yeniden " "başlatın." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "ön ayardaki meme boyutu: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "hafızaya alınan meme boyutu: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"Ön ayardaki nozül tipinin boyutu hafızaya alınan nozül ile tutarlı değil. " -"Son zamanlarda nozulunuzu değiştirdiniz mi?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "püskürtme ucu[%d] ön ayarda: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "nozul[%d] hafızaya alındı: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Ön ayardaki püskürtme ucu tipiniz hafızaya alınan püskürtme ucuyla tutarlı " -"değil. Son zamanlarda nozulunuzu değiştirdiniz mi?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -22292,26 +22502,17 @@ msgstr "Maksimum açı" msgid "Detection radius" msgstr "Algılama yarıçapı" -msgid "Remove selected points" -msgstr "Seçili noktaları kaldır" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Hepsini kaldır" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Noktaları otomatik olarak üret" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Destek kulağı ekle" - -msgid "Delete a brim ear" -msgstr "Destek kulağı sil" - -msgid "Adjust head diameter" -msgstr "Kafa çapını ayarlayın" - -msgid "Adjust section view" -msgstr "Kesit görünümünü ayarla" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -22323,8 +22524,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Bu nesnenin kenar türünü \"boyalı\" olarak ayarlayın" -msgid " invalid brim ears" -msgstr " geçersi̇z kenarlı kulaklar" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Kenar kulakları" @@ -22604,15 +22805,13 @@ msgstr "" "Orca Slicer'ın çok çeşitli klavye kısayolları ve 3D sahne işlemleri " "sunduğunu biliyor muydunuz?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Tersine çevir\n" -"Tersine çevir özelliğinin çıkıntılarınızın yüzey kalitesini önemli " -"ölçüde artırabileceğini biliyor muydunuz?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22907,6 +23106,85 @@ msgstr "" "sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını " "azaltabileceğini biliyor muydunuz?" +#~ msgid "Erase all painting" +#~ msgstr "Tüm boyamayı sil" + +#~ msgid "Reset cut" +#~ msgstr "Kesimi sıfırla" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Pan ve döndürme işlevlerini fare düğmeleri arasında değiştir" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Etkinleştirildiğinde, sol ve sağ fare düğmelerinin pan ve döndürme " +#~ "işlevlerini yer değiştirir." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "ön ayardaki meme boyutu: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "hafızaya alınan meme boyutu: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "Ön ayardaki nozül tipinin boyutu hafızaya alınan nozül ile tutarlı değil. " +#~ "Son zamanlarda nozulunuzu değiştirdiniz mi?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "püskürtme ucu[%d] ön ayarda: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "nozul[%d] hafızaya alındı: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Ön ayardaki püskürtme ucu tipiniz hafızaya alınan püskürtme ucuyla " +#~ "tutarlı değil. Son zamanlarda nozulunuzu değiştirdiniz mi?" + +#~ msgid "Remove selected points" +#~ msgstr "Seçili noktaları kaldır" + +#~ msgid "Remove all" +#~ msgstr "Hepsini kaldır" + +#~ msgid "Auto-generate points" +#~ msgstr "Noktaları otomatik olarak üret" + +#~ msgid "Add a brim ear" +#~ msgstr "Destek kulağı ekle" + +#~ msgid "Delete a brim ear" +#~ msgstr "Destek kulağı sil" + +#~ msgid "Adjust head diameter" +#~ msgstr "Kafa çapını ayarlayın" + +#~ msgid "Adjust section view" +#~ msgstr "Kesit görünümünü ayarla" + +#~ msgid " invalid brim ears" +#~ msgstr " geçersi̇z kenarlı kulaklar" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Tersine çevir\n" +#~ "Tersine çevir özelliğinin çıkıntılarınızın yüzey kalitesini önemli " +#~ "ölçüde artırabileceğini biliyor muydunuz?" + #~ msgid "Pen size" #~ msgstr "Kalem boyutu" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 85589819de..d8bfad864f 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: orcaslicerua\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2025-03-07 09:30+0200\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" @@ -117,8 +117,8 @@ msgstr "Виконати" msgid "On highlighted overhangs only" msgstr "Тільки на підсвічених нависанняхх" -msgid "Erase all painting" -msgstr "Стерти всі малюнки" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Підсвічувати області нависань" @@ -187,6 +187,9 @@ msgstr "Підсвічувати грані відповідно до кута msgid "No auto support" msgstr "Без автоматичної підтримки" +msgid "Done" +msgstr "Виконано" + msgid "Support Generated" msgstr "Згенеровані підтримки" @@ -339,6 +342,12 @@ msgstr "" msgid "Fixed step drag" msgstr "" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "" @@ -487,6 +496,18 @@ msgstr "Положення зрізу" msgid "Build Volume" msgstr "Робочий об'єм" +msgid "Multiple" +msgstr "Кілька" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Відстань" + msgid "Part" msgstr "Частина" @@ -594,12 +615,6 @@ msgstr "Редагувати з'єднувачі" msgid "Add connectors" msgstr "Додати з'єднання" -msgid "Reset cut" -msgstr "Скинути розрізання" - -msgid "Reset cutting plane and remove connectors" -msgstr "Скиньте площину різання та зніміть з'єднувачі" - msgid "Upper part" msgstr "Верхня частина" @@ -618,6 +633,9 @@ msgstr "Після вирізування" msgid "Cut to parts" msgstr "Розрізати на частини" +msgid "Reset cutting plane and remove connectors" +msgstr "Скиньте площину різання та зніміть з'єднувачі" + msgid "Perform cut" msgstr "Виконати розрізання" @@ -852,6 +870,9 @@ msgstr "Типовий шрифт" msgid "Advanced" msgstr "Розширені" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1509,15 +1530,6 @@ msgstr "" "Особливість 1 скинута, \n" "Особливість 2 тепер особливість 1" -msgid "Warning: please select Plane's feature." -msgstr "Попередження: будь ласка, виберіть характеристику площини." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Попередження: будь ласка, виберіть характеристику точки або кола." - -msgid "Warning: please select two different meshes." -msgstr "Попередження: будь ласка, виберіть дві різні сітки." - msgid "Copy to clipboard" msgstr "Копіювати в буфер обміну" @@ -1569,6 +1581,15 @@ msgstr "" msgid "Point and point assembly" msgstr "" +msgid "Warning: please select two different meshes." +msgstr "Попередження: будь ласка, виберіть дві різні сітки." + +msgid "Warning: please select Plane's feature." +msgstr "Попередження: будь ласка, виберіть характеристику площини." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Попередження: будь ласка, виберіть характеристику точки або кола." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1755,6 +1776,18 @@ msgstr "Це найновіша версія." msgid "Info" msgstr "Інформація" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1821,6 +1854,23 @@ msgstr "" "Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, " "перш ніж її можна буде використовувати у звичайному режимі" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "" @@ -2364,10 +2414,10 @@ msgstr "Автоматично орієнтуйте об'єкт для покр msgid "Edit" msgstr "Редагувати" -msgid "Delete this filament" +msgid "Merge with" msgstr "" -msgid "Merge with" +msgid "Delete this filament" msgstr "" msgid "Select All" @@ -3430,8 +3480,8 @@ msgid "" "This software uses open source components whose copyright and other " "proprietary rights belong to their respective owners" msgstr "" -"Це програмне забезпечення використовує компоненти з відкритим вихідним кодом," -"авторські права та інші\n" +"Це програмне забезпечення використовує компоненти з відкритим вихідним " +"кодом,авторські права та інші\n" "права власності належать їх відповідним власникам" #, c-format, boost-format @@ -4630,9 +4680,6 @@ msgstr "" msgid "Proceed" msgstr "" -msgid "Done" -msgstr "Виконано" - msgid "Retry" msgstr "Повторити спробу" @@ -4894,33 +4941,6 @@ msgstr "Годтримка переходу" msgid "Mixed" msgstr "" -msgid "mm/s" -msgstr "мм/с" - -msgid "mm/s²" -msgstr "мм/с²" - -msgid "Flow rate" -msgstr "Потік" - -msgid "mm³/s" -msgstr "мм³/с" - -msgid "Fan speed" -msgstr "Швидкість вентилятора" - -msgid "°C" -msgstr "" - -msgid "Time" -msgstr "Час" - -msgid "Actual speed profile" -msgstr "" - -msgid "Speed: " -msgstr "Швидкість: " - msgid "Height: " msgstr "Висота: " @@ -4954,6 +4974,33 @@ msgstr "" msgid "PA: " msgstr "" +msgid "mm/s" +msgstr "мм/с" + +msgid "mm/s²" +msgstr "мм/с²" + +msgid "mm³/s" +msgstr "мм³/с" + +msgid "Flow rate" +msgstr "Потік" + +msgid "Fan speed" +msgstr "Швидкість вентилятора" + +msgid "°C" +msgstr "" + +msgid "Time" +msgstr "Час" + +msgid "Speed: " +msgstr "Швидкість: " + +msgid "Actual speed profile" +msgstr "" + msgid "Statistics of All Plates" msgstr "Статистика всіх пластин" @@ -5265,9 +5312,6 @@ msgstr "Орієнтація" msgid "Arrange options" msgstr "Параметри впорядкування" -msgid "Spacing" -msgstr "Відстань" - msgid "0 means auto spacing." msgstr "0 означає автоматичний інтервал." @@ -5402,7 +5446,7 @@ msgstr "Об'єм:" msgid "Size:" msgstr "Розмір:" -#, fuzzy, c-format, boost-format +#, fuzzy, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5785,6 +5829,15 @@ msgstr "Експорт поточної конфігурації до файлі msgid "Export" msgstr "Експорт" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Вихід" @@ -5910,6 +5963,9 @@ msgstr "Вид" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Допомога" @@ -8465,15 +8521,6 @@ msgstr "" "Якщо увімкнено, використовуватиметься вільна камера. Якщо вимкнено, " "використовуватиметься камера з обмеженими можливостями." -msgid "Swap pan and rotate mouse buttons" -msgstr "Поміняти кнопки миші для панорамування й обертання" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Якщо ввімкнено, змінює місцями функції панорамування та обертання між лівою " -"та правою кнопками миші." - msgid "Reverse mouse zoom" msgstr "Зворотне масштабування мишкою" @@ -8481,6 +8528,27 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" "Якщо увімкнено, змінює напрямок масштабування за допомогою коліщатка миші." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "" @@ -8503,6 +8571,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Вимкнено" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Регіон входу" @@ -8657,6 +8778,15 @@ msgstr "Режим розробки" msgid "Skip AMS blacklist check" msgstr "Пропустити перевірку чорного списку AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "" @@ -9687,8 +9817,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 "" "При записі таймлапсу без інструментальної головки рекомендується додати " "“Timelapse Wipe Tower” \n" @@ -10325,6 +10455,32 @@ msgstr "Не зберігати" msgid "Discard" msgstr "Не зберігати" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Натисніть праву кнопку миші, щоб відобразити повний текст." @@ -10874,6 +11030,9 @@ msgstr "Натисніть тут, щоб завантажити його." msgid "Login" msgstr "Логін" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "" @@ -10910,6 +11069,18 @@ msgstr "Показати список клавіш" msgid "Global shortcuts" msgstr "Глобальні ярлики" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11389,9 +11560,6 @@ msgstr "" msgid "Internal Bridge" msgstr "Внутрішній міст" -msgid "Multiple" -msgstr "Кілька" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -13148,9 +13316,6 @@ msgstr "" "4. Застосовувати до всіх - створює другий містовий шар для внутрішніх і " "зовнішніх мостів\n" -msgid "Disabled" -msgstr "Вимкнено" - msgid "External bridge only" msgstr "Тільки зовнішні мости" @@ -13846,6 +14011,18 @@ msgstr "" msgid "Auto For Match" msgstr "" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "" @@ -14317,6 +14494,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Шаблон часткового заповнення" @@ -14430,8 +14618,8 @@ msgstr "" "знайдено, лінія заповнення з'єднується з сегментом периметра лише з одного " "боку, і довжина взятого сегменту периметра обмежена цим параметром, але не " "більше anchor_length_max.\n" -"Встановіть цей параметр рівним нулю, щоб вимкнути периметри прив'язки." -"пов'язані з однією лінією заповнення." +"Встановіть цей параметр рівним нулю, щоб вимкнути периметри " +"прив'язки.пов'язані з однією лінією заповнення." msgid "0 (no open anchors)" msgstr "0 (немає відкритих прив'язок)" @@ -14498,8 +14686,8 @@ msgid "mm/s² or %" msgstr "мм/с² або %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Прискорення заповнення. Якщо значення виражено у відсотках (наприклад, " "100%), воно буде розраховане на основі прискорення за умовчанням." @@ -14633,10 +14821,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» до максимуму на рівні " @@ -15115,6 +15303,30 @@ msgstr "" "прискорення роботи вентилятора.\n" "Для деактивації встановіть значення 0." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "%" + msgid "Time cost" msgstr "Вартість часу" @@ -16684,8 +16896,8 @@ msgid "Role base wipe speed" msgstr "Швидкість протирання залежно від типу" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -16701,8 +16913,8 @@ msgid "" "To minimize the visibility of the seam in a closed loop extrusion, a small " "inward movement is executed before the extruder leaves the loop." msgstr "" -"Щоб звести до мінімуму видимість шва при екструзії із замкнутим контуром," -"Невеликий рух усередину виконується до виходу екструдера з контуру." +"Щоб звести до мінімуму видимість шва при екструзії із замкнутим " +"контуром,Невеликий рух усередину виконується до виходу екструдера з контуру." msgid "Wipe before external loop" msgstr "Протирати перед зовнішнім контуром" @@ -17067,6 +17279,19 @@ msgstr "Очистити від залишків філаменту на під msgid "Enable filament ramming" msgstr "" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Без розріджених шарів (бета)" @@ -17197,8 +17422,8 @@ msgid "" "Only create support for critical regions including sharp tail, cantilever, " "etc." msgstr "" -"Створювати підтримку тільки для критичних областей, включаючи гострий хвіст," -"консоль і т.д." +"Створювати підтримку тільки для критичних областей, включаючи гострий " +"хвіст,консоль і т.д." msgid "Ignore small overhangs" msgstr "" @@ -17405,15 +17630,17 @@ msgid "Threshold angle" msgstr "Кут порога" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Буде створена опора для нависань з кутом нахилу нижче порогу." -"Чим менше це значення, тим крутіше нависання можна надрукувати без підтримки.\n" -"Примітка: Якщо встановлено значення 0, звичайні опори використовують перекриття " -"порогу, тоді як опори дерев повертаються до значення за замовчуванням 30." +"Буде створена опора для нависань з кутом нахилу нижче порогу.Чим менше це " +"значення, тим крутіше нависання можна надрукувати без підтримки.\n" +"Примітка: Якщо встановлено значення 0, звичайні опори використовують " +"перекриття порогу, тоді як опори дерев повертаються до значення за " +"замовчуванням 30." msgid "Threshold overlap" msgstr "Поріг накладання" @@ -17569,8 +17796,8 @@ msgstr "Увімкнути контроль температури" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -17758,9 +17985,9 @@ msgstr "" "Залежно від тривалості операції витирання, швидкості та тривалості " "втягування екструдера/нитки, може знадобитися рух накату для нитки.\n" "\n" -"Якщо встановити значення у параметрі \"Кількість втягування перед витиранням" -"\" нижче, надлишкове втягування буде виконано перед витиранням, інакше воно " -"буде виконано після нього." +"Якщо встановити значення у параметрі \"Кількість втягування перед " +"витиранням\" нижче, надлишкове втягування буде виконано перед витиранням, " +"інакше воно буде виконано після нього." msgid "" "The wiping tower can be used to clean up the residue on the nozzle and " @@ -18530,8 +18757,8 @@ msgid "Debug level" msgstr "Рівень налагодження" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "Встановлює рівень реєстрації налагодження. 0: непереборний, 1: помилка, 2: " "попередження, 3: інформація, 4: налагодження, 5: трасування\n" @@ -19064,13 +19291,13 @@ msgstr "Наданий файл не вдалося прочитати, оскі msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj або ." -"amf (.xml)." +"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj " +"або .amf (.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf або .zip." -"amf." +"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf " +"або .zip.amf." msgid "load_obj: failed to parse" msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат" @@ -20264,8 +20491,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 "" "Ми б перейменували попередні налаштування на «Вибраний вами серійний " @@ -20446,6 +20673,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Створення принтера успішно завершено" @@ -20703,32 +20942,6 @@ msgid "" "Please click the Sync button above and restart the calibration." msgstr "" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "" @@ -21572,26 +21785,17 @@ msgstr "Максимальний кут" msgid "Detection radius" msgstr "Радіус виявлення" -msgid "Remove selected points" -msgstr "Видалити вибрані точки" - -msgid "Remove all" -msgstr "Видалити все" - -msgid "Auto-generate points" -msgstr "Автоматично згенерувати точки" - -msgid "Add a brim ear" -msgstr "Додати краєчок" - -msgid "Delete a brim ear" -msgstr "Видалити краєчок" - -msgid "Adjust head diameter" +msgid "Selected" msgstr "" -msgid "Adjust section view" -msgstr "Налаштувати вид секції" +msgid "Auto-generate" +msgstr "" + +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" + +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -21603,8 +21807,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "" -msgid " invalid brim ears" -msgstr " Неправильні краєчки" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Краєчки" @@ -21871,15 +22075,13 @@ msgstr "" "Чи знаєте ви, що Orca Slicer пропонує широкий спектр комбінацій клавіш для " "роботи з 3D-сценами?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Reverse on odd\n" -"Чи знали ви, що функція Реверс по непарних периметрах може значно " -"покращити якість поверхні ваших нависань?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22173,6 +22375,52 @@ msgstr "" "ABS, відповідне підвищення температури гарячого ліжка може зменшити " "ймовірність деформації?" +#~ msgid "Erase all painting" +#~ msgstr "Стерти всі малюнки" + +#~ msgid "Reset cut" +#~ msgstr "Скинути розрізання" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Поміняти кнопки миші для панорамування й обертання" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Якщо ввімкнено, змінює місцями функції панорамування та обертання між " +#~ "лівою та правою кнопками миші." + +#~ msgid "Remove selected points" +#~ msgstr "Видалити вибрані точки" + +#~ msgid "Remove all" +#~ msgstr "Видалити все" + +#~ msgid "Auto-generate points" +#~ msgstr "Автоматично згенерувати точки" + +#~ msgid "Add a brim ear" +#~ msgstr "Додати краєчок" + +#~ msgid "Delete a brim ear" +#~ msgstr "Видалити краєчок" + +#~ msgid "Adjust section view" +#~ msgstr "Налаштувати вид секції" + +#~ msgid " invalid brim ears" +#~ msgstr " Неправильні краєчки" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Reverse on odd\n" +#~ "Чи знали ви, що функція Реверс по непарних периметрах може значно " +#~ "покращити якість поверхні ваших нависань?" + #~ msgid "Pen size" #~ msgstr "Розмір пера" @@ -23183,9 +23431,6 @@ msgstr "" #~ msgid "Set Position" #~ msgstr "Встановити позицію" -#~ msgid "%" -#~ msgstr "%" - #, boost-format #~ msgid "%1%" #~ msgstr "%1%" diff --git a/localization/i18n/vi/OrcaSlicer_vi.po b/localization/i18n/vi/OrcaSlicer_vi.po index 3cd500544f..44213ae93f 100644 --- a/localization/i18n/vi/OrcaSlicer_vi.po +++ b/localization/i18n/vi/OrcaSlicer_vi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2025-10-02 17:43+0700\n" "Last-Translator: \n" "Language-Team: hainguyen.ts13@gmail.com\n" @@ -116,8 +116,8 @@ msgstr "Thực hiện" msgid "On highlighted overhangs only" msgstr "Chỉ trên các overhang được làm nổi bật" -msgid "Erase all painting" -msgstr "Xóa tất cả vẽ" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "Tô sáng vùng overhang" @@ -186,6 +186,9 @@ msgstr "Tô sáng các mặt theo góc overhang." msgid "No auto support" msgstr "Không tự động support" +msgid "Done" +msgstr "Hoàn thành" + msgid "Support Generated" msgstr "Đã tạo support" @@ -338,6 +341,12 @@ msgstr "Chọn phần" msgid "Fixed step drag" msgstr "Kéo bước cố định" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "Co giãn một mặt" @@ -486,6 +495,18 @@ msgstr "Vị trí cắt" msgid "Build Volume" msgstr "Thể tích in" +msgid "Multiple" +msgstr "Nhiều" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "Khoảng cách" + msgid "Part" msgstr "Phần" @@ -593,12 +614,6 @@ msgstr "Chỉnh sửa connector" msgid "Add connectors" msgstr "Thêm connector" -msgid "Reset cut" -msgstr "Đặt lại cắt" - -msgid "Reset cutting plane and remove connectors" -msgstr "Đặt lại mặt cắt và xóa connector" - msgid "Upper part" msgstr "Phần trên" @@ -617,6 +632,9 @@ msgstr "Sau khi cắt" msgid "Cut to parts" msgstr "Cắt thành phần" +msgid "Reset cutting plane and remove connectors" +msgstr "Đặt lại mặt cắt và xóa connector" + msgid "Perform cut" msgstr "Thực hiện cắt" @@ -846,6 +864,9 @@ msgstr "Font mặc định" msgid "Advanced" msgstr "Nâng cao" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1490,15 +1511,6 @@ msgstr "" "Đặc trưng 1 đã được đặt lại, \n" "đặc trưng 2 đã trở thành đặc trưng 1" -msgid "Warning: please select Plane's feature." -msgstr "Cảnh báo: vui lòng chọn đặc trưng mặt phẳng." - -msgid "Warning: please select Point's or Circle's feature." -msgstr "Cảnh báo: vui lòng chọn đặc trưng điểm hoặc đường tròn." - -msgid "Warning: please select two different meshes." -msgstr "Cảnh báo: vui lòng chọn hai mesh khác nhau." - msgid "Copy to clipboard" msgstr "Sao chép vào clipboard" @@ -1550,6 +1562,15 @@ msgstr "(Moving)" msgid "Point and point assembly" msgstr "Point and point assembly" +msgid "Warning: please select two different meshes." +msgstr "Cảnh báo: vui lòng chọn hai mesh khác nhau." + +msgid "Warning: please select Plane's feature." +msgstr "Cảnh báo: vui lòng chọn đặc trưng mặt phẳng." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Cảnh báo: vui lòng chọn đặc trưng điểm hoặc đường tròn." + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1740,6 +1761,18 @@ msgstr "Đây là phiên bản mới nhất." msgid "Info" msgstr "Thông tin" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1803,6 +1836,23 @@ msgstr "" "Phiên bản Orca Slicer quá cũ và cần được cập nhật lên phiên bản mới nhất " "trước khi có thể sử dụng bình thường." +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "Retrieving printer information, please try again later." @@ -2359,12 +2409,12 @@ msgstr "Tự động định hướng vật thể để cải thiện chất lư msgid "Edit" msgstr "Chỉnh sửa" -msgid "Delete this filament" -msgstr "Delete this filament" - msgid "Merge with" msgstr "Merge with" +msgid "Delete this filament" +msgstr "Delete this filament" + msgid "Select All" msgstr "Chọn tất cả" @@ -4666,9 +4716,6 @@ msgstr "Stop Drying" msgid "Proceed" msgstr "Proceed" -msgid "Done" -msgstr "Hoàn thành" - msgid "Retry" msgstr "Thử lại" @@ -4931,33 +4978,6 @@ msgstr "Chuyển tiếp support" msgid "Mixed" msgstr "Mixed" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "Flow rate" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "Tốc độ quạt" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "Thời gian" - -msgid "Actual speed profile" -msgstr "Actual speed profile" - -msgid "Speed: " -msgstr "Tốc độ: " - msgid "Height: " msgstr "Chiều cao: " @@ -4991,6 +5011,33 @@ msgstr "" msgid "PA: " msgstr "PA: " +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "Flow rate" + +msgid "Fan speed" +msgstr "Tốc độ quạt" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "Thời gian" + +msgid "Speed: " +msgstr "Tốc độ: " + +msgid "Actual speed profile" +msgstr "Actual speed profile" + msgid "Statistics of All Plates" msgstr "Thống kê tất cả các plate" @@ -5324,9 +5371,6 @@ msgstr "Định hướng" msgid "Arrange options" msgstr "Tùy chọn sắp xếp" -msgid "Spacing" -msgstr "Khoảng cách" - msgid "0 means auto spacing." msgstr "0 nghĩa là tự động khoảng cách." @@ -5461,7 +5505,7 @@ msgstr "Thể tích:" msgid "Size:" msgstr "Kích thước:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5860,6 +5904,15 @@ msgstr "Xuất cấu hình hiện tại ra file" msgid "Export" msgstr "Xuất" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "Thoát" @@ -5987,6 +6040,9 @@ msgstr "Xem" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "Trợ giúp" @@ -8563,20 +8619,33 @@ msgstr "" "Nếu được bật, sử dụng camera tự do. Nếu không được bật, sử dụng camera bị " "ràng buộc." -msgid "Swap pan and rotate mouse buttons" -msgstr "Hoán đổi nút chuột kéo và xoay" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "" -"Nếu được bật, hoán đổi chức năng kéo và xoay của nút chuột trái và phải." - msgid "Reverse mouse zoom" msgstr "Đảo ngược thu phóng chuột" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Nếu được bật, đảo ngược hướng thu phóng bằng con lăn chuột." +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "Clear my choice on..." @@ -8600,6 +8669,59 @@ msgid "" msgstr "" "Clear my choice for synchronizing printer preset after loading the file." +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "Tắt" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "Login region" @@ -8751,6 +8873,15 @@ msgstr "Chế độ phát triển" msgid "Skip AMS blacklist check" msgstr "Bỏ qua kiểm tra danh sách đen AMS" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "Allow Abnormal Storage" @@ -9839,8 +9970,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 "" "Khi ghi timelapse không có đầu công cụ, khuyến nghị thêm \"Timelapse Wipe " "Tower\" \n" @@ -10459,6 +10590,32 @@ msgstr "Không lưu" msgid "Discard" msgstr "Loại bỏ" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "Nhấp chuột phải để hiển thị toàn bộ văn bản." @@ -11035,6 +11192,9 @@ msgstr "Nhấp vào đây để tải xuống." msgid "Login" msgstr "Đăng nhập" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[Action Required] " @@ -11071,6 +11231,18 @@ msgstr "Hiển thị danh sách phím tắt" msgid "Global shortcuts" msgstr "Phím tắt toàn cục" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11553,9 +11725,6 @@ msgstr " can not be placed in the " msgid "Internal Bridge" msgstr "Cầu bên trong" -msgid "Multiple" -msgstr "Nhiều" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" @@ -12163,8 +12332,8 @@ msgstr "" "Orca Slicer có thể tải file G-code lên máy chủ máy in. Trường này nên chứa " "tên máy chủ, địa chỉ IP hoặc URL của phiên bản máy chủ máy in. Máy chủ in " "đằng sau HAProxy với xác thực cơ bản được bật có thể được truy cập bằng cách " -"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://username:" -"password@your-octopi-address/" +"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://" +"username:password@your-octopi-address/" msgid "Device UI" msgstr "Giao diện thiết bị" @@ -13337,9 +13506,6 @@ msgstr "" "4. Áp dụng cho tất cả - tạo lớp cầu thứ hai cho cả cầu bên trong và hướng ra " "ngoài\n" -msgid "Disabled" -msgstr "Tắt" - msgid "External bridge only" msgstr "Chỉ cầu bên ngoài" @@ -14007,6 +14173,18 @@ msgstr "Auto For Flush" msgid "Auto For Match" msgstr "Auto For Match" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "Flush temperature" @@ -14501,6 +14679,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "Sử dụng nhiều đường cho mẫu infill, nếu được hỗ trợ bởi mẫu infill." +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "Mẫu infill thưa" @@ -14675,8 +14864,8 @@ msgid "mm/s² or %" msgstr "mm/s² hoặc %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "Gia tốc của infill thưa. Nếu giá trị được biểu thị dưới dạng phần trăm (ví " "dụ 100%), nó sẽ được tính dựa trên gia tốc mặc định." @@ -14809,14 +14998,14 @@ msgstr "Tốc độ quạt đầy tại lớp" 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 "" "Tốc độ quạt sẽ được tăng tuyến tính từ không tại lớp " -"\"close_fan_the_first_x_layers\" đến tối đa tại lớp \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn " +"\"close_fan_the_first_x_layers\" đến tối đa tại lớp " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn " "\"close_fan_the_first_x_layers\", trong trường hợp đó quạt sẽ chạy ở tốc độ " "tối đa được phép tại lớp \"close_fan_the_first_x_layers\" + 1." @@ -15314,6 +15503,30 @@ msgstr "" "nhanh hơn.\n" "Đặt thành 0 để vô hiệu hóa." +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "Chi phí thời gian" @@ -16878,8 +17091,8 @@ msgid "Role base wipe speed" msgstr "Tốc độ lau dựa trên vai trò" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -17266,6 +17479,19 @@ msgstr "Xả filament còn lại vào prime tower." msgid "Enable filament ramming" msgstr "Bật ramming filament" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "Không có lớp thưa (beta)" @@ -17604,15 +17830,16 @@ msgid "Threshold angle" msgstr "Góc ngưỡng" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Hỗ trợ sẽ được tạo cho các phần nhô có góc dốc thấp hơn ngưỡng." -"Giá trị này càng nhỏ, phần nhô có thể in không cần hỗ trợ càng dốc.\n" -"Lưu ý: Nếu đặt thành 0, hỗ trợ thường sẽ dùng Chồng lấp ngưỡng thay thế, " -"còn hỗ trợ dạng cây sẽ quay về giá trị mặc định là 30." +"Hỗ trợ sẽ được tạo cho các phần nhô có góc dốc thấp hơn ngưỡng.Giá trị này " +"càng nhỏ, phần nhô có thể in không cần hỗ trợ càng dốc.\n" +"Lưu ý: Nếu đặt thành 0, hỗ trợ thường sẽ dùng Chồng lấp ngưỡng thay thế, còn " +"hỗ trợ dạng cây sẽ quay về giá trị mặc định là 30." msgid "Threshold overlap" msgstr "Chồng lấp ngưỡng" @@ -17775,8 +18002,8 @@ msgstr "Kích hoạt điều khiển nhiệt độ" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -18751,11 +18978,11 @@ msgid "Debug level" msgstr "Mức gỡ lỗi" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgid "Enable timelapse for print" msgstr "Bật timelapse cho in" @@ -19299,13 +19526,13 @@ msgstr "File được cung cấp không thể đọc được vì nó trống" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Định dạng file không xác định. File đầu vào phải có phần mở rộng .stl, ." -"obj, .amf(.xml)." +"Định dạng file không xác định. File đầu vào phải có phần mở " +"rộng .stl, .obj, .amf(.xml)." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf hoặc ." -"zip.amf." +"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf " +"hoặc .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: phân tích thất bại" @@ -20528,8 +20755,8 @@ msgstr "" "Bạn có muốn viết lại nó không?" 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 "" "Chúng tôi sẽ đổi tên cài đặt sẵn thành \"Nhà cung cấp Loại Serial @máy in " @@ -20707,6 +20934,18 @@ msgstr "" "The system preset does not allow creation. \n" "Please re-enter the printer model or nozzle diameter." +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "Máy in đã được tạo thành công" @@ -20954,36 +21193,6 @@ msgstr "" "The nozzle type does not match the actual printer nozzle type.\n" "Please click the Sync button above and restart the calibration." -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "nozzle size in preset: %d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "nozzle size memorized: %d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "nozzle[%d] in preset: %.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "nozzle[%d] memorized: %.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Printing %1s material with %2s nozzle may cause nozzle damage." @@ -21900,26 +22109,17 @@ msgstr "Góc tối đa" msgid "Detection radius" msgstr "Bán kính phát hiện" -msgid "Remove selected points" -msgstr "Xóa điểm đã chọn" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "Xóa tất cả" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "Tự động tạo điểm" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "Thêm tai vành" - -msgid "Delete a brim ear" -msgstr "Xóa tai vành" - -msgid "Adjust head diameter" -msgstr "Điều chỉnh đường kính đầu" - -msgid "Adjust section view" -msgstr "Điều chỉnh chế độ xem phần" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -21931,8 +22131,8 @@ msgstr "" msgid "Set the brim type of this object to \"painted\"" msgstr "Đặt loại vành của đối tượng này thành \"được vẽ\"" -msgid " invalid brim ears" -msgstr " tai vành không hợp lệ" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "Tai vành" @@ -22209,15 +22409,13 @@ msgstr "" "Bạn có biết rằng Orca Slicer cung cấp nhiều phím tắt và thao tác cảnh 3D " "không?" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"Đảo ngược trên lẻ\n" -"Bạn có biết rằng tính năng Đảo ngược trên lẻ có thể cải thiện đáng kể " -"chất lượng bề mặt của phần nhô của bạn không?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -22510,6 +22708,84 @@ msgstr "" "Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn " "nóng một cách thích hợp có thể giảm xác suất cong vênh không?" +#~ msgid "Erase all painting" +#~ msgstr "Xóa tất cả vẽ" + +#~ msgid "Reset cut" +#~ msgstr "Đặt lại cắt" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "Hoán đổi nút chuột kéo và xoay" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "" +#~ "Nếu được bật, hoán đổi chức năng kéo và xoay của nút chuột trái và phải." + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "nozzle size in preset: %d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "nozzle size memorized: %d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "nozzle[%d] in preset: %.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "nozzle[%d] memorized: %.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" + +#~ msgid "Remove selected points" +#~ msgstr "Xóa điểm đã chọn" + +#~ msgid "Remove all" +#~ msgstr "Xóa tất cả" + +#~ msgid "Auto-generate points" +#~ msgstr "Tự động tạo điểm" + +#~ msgid "Add a brim ear" +#~ msgstr "Thêm tai vành" + +#~ msgid "Delete a brim ear" +#~ msgstr "Xóa tai vành" + +#~ msgid "Adjust head diameter" +#~ msgstr "Điều chỉnh đường kính đầu" + +#~ msgid "Adjust section view" +#~ msgstr "Điều chỉnh chế độ xem phần" + +#~ msgid " invalid brim ears" +#~ msgstr " tai vành không hợp lệ" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Đảo ngược trên lẻ\n" +#~ "Bạn có biết rằng tính năng Đảo ngược trên lẻ có thể cải thiện đáng " +#~ "kể chất lượng bề mặt của phần nhô của bạn không?" + #~ msgid "Pen size" #~ msgstr "Kích thước bút" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index ba2f5cfc79..1418ff083c 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: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2026-02-28 00:59\n" "Last-Translator: Handle \n" "Language-Team: \n" @@ -110,8 +110,8 @@ msgstr "执行" msgid "On highlighted overhangs only" msgstr "仅对高亮悬垂区生效" -msgid "Erase all painting" -msgstr "擦除所有绘制" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "高亮悬垂区域" @@ -180,6 +180,9 @@ msgstr "根据当前设置的悬垂角度来高亮片面。" msgid "No auto support" msgstr "无自动支撑" +msgid "Done" +msgstr "完成" + msgid "Support Generated" msgstr "已生成支撑" @@ -330,6 +333,12 @@ msgstr "零件选择" msgid "Fixed step drag" msgstr "固定拖动步长" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "单面缩放" @@ -478,6 +487,18 @@ msgstr "切割位置" msgid "Build Volume" msgstr "打印体积" +msgid "Multiple" +msgstr "多个" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "间距" + msgid "Part" msgstr "零件" @@ -585,12 +606,6 @@ msgstr "编辑连接件" msgid "Add connectors" msgstr "添加连接件" -msgid "Reset cut" -msgstr "重置" - -msgid "Reset cutting plane and remove connectors" -msgstr "重置切割平面并移除连接器" - msgid "Upper part" msgstr "上半部分" @@ -609,6 +624,9 @@ msgstr "切割后" msgid "Cut to parts" msgstr "切割为零件" +msgid "Reset cutting plane and remove connectors" +msgstr "重置切割平面并移除连接器" + msgid "Perform cut" msgstr "执行切割" @@ -833,6 +851,9 @@ msgstr "默认字体" msgid "Advanced" msgstr "高级" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1472,15 +1493,6 @@ msgid "" "feature 2 has been feature 1" msgstr "特征1已经被重置,特征2变成特征1" -msgid "Warning: please select Plane's feature." -msgstr "警告:请选择面特征。" - -msgid "Warning: please select Point's or Circle's feature." -msgstr "警告:请选择点或圆特征。" - -msgid "Warning: please select two different meshes." -msgstr "警告:请选择两个不同的网格。" - msgid "Copy to clipboard" msgstr "复制到剪贴板" @@ -1532,6 +1544,15 @@ msgstr "(移动中)" msgid "Point and point assembly" msgstr "点对点装配" +msgid "Warning: please select two different meshes." +msgstr "警告:请选择两个不同的网格。" + +msgid "Warning: please select Plane's feature." +msgstr "警告:请选择面特征。" + +msgid "Warning: please select Point's or Circle's feature." +msgstr "警告:请选择点或圆特征。" + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1718,6 +1739,18 @@ msgstr "已经是最新版本。" msgid "Info" msgstr "信息" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1777,6 +1810,23 @@ msgid "" "version before it can be used normally." msgstr "此逆戟鲸切片器的版本过低,需更新至最新版本方可正常使用" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "正在获取打印机信息,请稍后重试。" @@ -2326,12 +2376,12 @@ msgstr "自动调整对象朝向以提高打印质量。" msgid "Edit" msgstr "编辑" -msgid "Delete this filament" -msgstr "移除此耗材" - msgid "Merge with" msgstr "与其合并" +msgid "Delete this filament" +msgstr "移除此耗材" + msgid "Select All" msgstr "全选" @@ -4513,9 +4563,6 @@ msgstr "停止干燥" msgid "Proceed" msgstr "继续" -msgid "Done" -msgstr "完成" - msgid "Retry" msgstr "重试" @@ -4776,33 +4823,6 @@ msgstr "支撑转换层" msgid "Mixed" msgstr "混合" -msgid "mm/s" -msgstr "毫米/秒" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "流量" - -msgid "mm³/s" -msgstr "毫米立方/秒" - -msgid "Fan speed" -msgstr "风扇速度" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "时间" - -msgid "Actual speed profile" -msgstr "实际速度曲线" - -msgid "Speed: " -msgstr "速度: " - msgid "Height: " msgstr "层高: " @@ -4836,6 +4856,33 @@ msgstr "" msgid "PA: " msgstr "PA:" +msgid "mm/s" +msgstr "毫米/秒" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "毫米立方/秒" + +msgid "Flow rate" +msgstr "流量" + +msgid "Fan speed" +msgstr "风扇速度" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "时间" + +msgid "Speed: " +msgstr "速度: " + +msgid "Actual speed profile" +msgstr "实际速度曲线" + msgid "Statistics of All Plates" msgstr "所有盘切片信息" @@ -5152,9 +5199,6 @@ msgstr "调整朝向" msgid "Arrange options" msgstr "自动摆放选项" -msgid "Spacing" -msgstr "间距" - msgid "0 means auto spacing." msgstr "0 表示自动间距。" @@ -5289,7 +5333,7 @@ msgstr "体积:" msgid "Size:" msgstr "尺寸:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5675,6 +5719,15 @@ msgstr "导出当前选择的预设" msgid "Export" msgstr "导出" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "退出程序" @@ -5800,6 +5853,9 @@ msgstr "视图" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "帮助" @@ -6141,8 +6197,8 @@ msgid "" "The .gcode.3mf file contains no G-code data. Please slice it with Orca " "Slicer and export a new .gcode.3mf file." msgstr "" -".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新的." -"gcode.3mf文件。" +".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新" +"的.gcode.3mf文件。" #, c-format, boost-format msgid "File '%s' was lost! Please download it again." @@ -8230,19 +8286,33 @@ msgstr "使用自由视角" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "如果启用,使用自由视角。如果未启用,使用约束视角。" -msgid "Swap pan and rotate mouse buttons" -msgstr "交换鼠标按钮的平移与旋转功能" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "启用后,将左键和右键的平移与旋转功能对调" - msgid "Reverse mouse zoom" msgstr "反转鼠标缩放" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "如果启用,使用鼠标滚轮缩放的方向会反转。" +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "清除我的选择..." @@ -8265,6 +8335,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "加载文件后清除我对同步打印机预设的选择。" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "禁用" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "登录区域" @@ -8408,6 +8531,15 @@ msgstr "开发者模式" msgid "Skip AMS blacklist check" msgstr "跳过AMS黑名单检查" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "允许异常存储" @@ -9433,8 +9565,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 "" "在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n" "右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。" @@ -10029,6 +10161,32 @@ msgstr "不保存" msgid "Discard" msgstr "放弃" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "单击鼠标右键显示全文。" @@ -10570,6 +10728,9 @@ msgstr "点此下载" msgid "Login" msgstr "登录" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[需要操作] " @@ -10606,6 +10767,18 @@ msgstr "显示键盘快捷键列表" msgid "Global shortcuts" msgstr "全局快捷键" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11070,9 +11243,6 @@ msgstr "不能放置在" msgid "Internal Bridge" msgstr "内部搭桥" -msgid "Multiple" -msgstr "多个" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "计算 %1%的线宽失败。无法获得 \"%2%\" 的值" @@ -12651,9 +12821,6 @@ msgstr "" "存在多个具有不同桥接角度的区域,则该岛屿的最后一个区域将被选为角度参考\n" "4. 全部应用 - 为内部和面向外部的桥接生成第二桥接层\n" -msgid "Disabled" -msgstr "禁用" - msgid "External bridge only" msgstr "仅外部桥接" @@ -13251,6 +13418,18 @@ msgstr "自动冲洗" msgid "Auto For Match" msgstr "自动匹配" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "冲洗温度" @@ -13709,6 +13888,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "如果填充图案支持,使用多线进行填充。" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "稀疏填充图案" @@ -13869,8 +14059,8 @@ msgid "mm/s² or %" msgstr "mm/s² 或 %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "稀疏填充的加速度。如果该值表示为百分比(例如100%),则将根据默认加速度进行计" "算。" @@ -13996,10 +14186,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 "" "风扇速度将从“禁用第一层”的零转速,线性上升到“全风扇速度层”的最大转速。\n" "如果低于“禁用风扇第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将" @@ -14455,6 +14645,30 @@ msgstr "" "快提升转速。\n" "设为 0 以禁用。" +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "耗时" @@ -15905,8 +16119,8 @@ msgid "Role base wipe speed" msgstr "自动擦拭速度" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -16255,6 +16469,19 @@ msgstr "冲刷剩余的耗材丝进入擦拭塔" msgid "Enable filament ramming" msgstr "启用耗材尖端成型" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "无稀疏层 (实验功能)" @@ -16572,15 +16799,15 @@ msgid "Threshold angle" msgstr "阈值角度" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"将会为倾斜角度低于阈值的悬垂生成支撑。" -"该值越小,可在不使用支撑的情况下打印的悬垂就越陡。\n" -"注意:若设置为 0,普通支撑将改用阈值支撑比例," -"而树状支撑将回退到默认值 30。" +"将会为倾斜角度低于阈值的悬垂生成支撑。该值越小,可在不使用支撑的情况下打印的" +"悬垂就越陡。\n" +"注意:若设置为 0,普通支撑将改用阈值支撑比例,而树状支撑将回退到默认值 30。" msgid "Threshold overlap" msgstr "阈值支撑比例" @@ -16729,8 +16956,8 @@ msgstr "激活温度控制" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -17630,11 +17857,11 @@ msgid "Debug level" msgstr "调试等级" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" -"设置调试日志的等级。0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"设置调试日志的等级。0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgid "Enable timelapse for print" msgstr "为打印启用延时摄影" @@ -18363,10 +18590,10 @@ msgid "" msgstr "" "请从我们的wiki中找到动态流量校准的详细信息。\n" "\n" -"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选" -"了“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多" -"耗材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生" -"良好的效果。\n" +"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选了" +"“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多耗" +"材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生良" +"好的效果。\n" "\n" "有些情况可能导致校准结果不可靠,例如打印板的附着力不足。清洗构建或者使用胶水" "可以增强打印板的附着力。您可以在我们的wiki上找到更多相关信息。\n" @@ -19296,8 +19523,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" @@ -19459,6 +19686,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "不允许创建系统级预设。请重新输入打印机型号或喷嘴直径。" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "创建打印机成功" @@ -19692,32 +19931,6 @@ msgstr "" "喷嘴类型与打印机实际喷嘴类型不匹配。\n" "请单击上面的同步按钮并重新启动校准。" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "预设喷嘴尺寸:%d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "已记住喷嘴尺寸:%d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "预设中的喷嘴类型与已记住的喷嘴尺寸不一致。您最近有更换喷嘴吗?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "预设中的 [%d] 喷嘴:%.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "[%d] 喷嘴已记住:%.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "您预设中的喷嘴类型与已记住的喷嘴不一致。您最近有更换喷嘴吗?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Printing %1s material with %2s nozzle may cause nozzle damage." @@ -20191,8 +20404,8 @@ msgid "" "to this wiki: Printing Tips for High Temp / Engineering materials." msgstr "" "打印此耗材时,可能有喷嘴堵塞、渗漏、翘曲和层间强度低的风险。为了获得更好的结" -"果,请参考此英文wiki:Printing Tips for High Temp / Engineering " -"materials(“高温/工程材料的打印技巧”)" +"果,请参考此英文wiki:Printing Tips for High Temp / Engineering materials" +"(“高温/工程材料的打印技巧”)" msgid "" "To get better transparent or translucent results with the corresponding " @@ -20260,8 +20473,8 @@ msgid "" "wiki: PVA Printing Guide." msgstr "" "这是一种水溶性支撑耗材,通常只用作支撑结构,不用于模型本体。打印此类耗材需要" -"满足较多条件,为了获得更好的打印质量,请参考这个英文wiki:PVA Printing " -"Guide(“PVA打印指南”)" +"满足较多条件,为了获得更好的打印质量,请参考这个英文wiki:PVA Printing Guide" +"(“PVA打印指南”)" msgid "" "This is a non-water-soluble support filament, and usually it is only for the " @@ -20555,26 +20768,17 @@ msgstr "最大角度" msgid "Detection radius" msgstr "检测半径" -msgid "Remove selected points" -msgstr "删除已选择的点" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "删除所有点" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "自动生成点" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "加入一个耳状Brim" - -msgid "Delete a brim ear" -msgstr "删除一个耳状Brim" - -msgid "Adjust head diameter" -msgstr "调整喷头直径" - -msgid "Adjust section view" -msgstr "调整剖面视图" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -20584,8 +20788,8 @@ msgstr "警告:Brim类型未设置为绘制模式,耳状Brim将不会生效 msgid "Set the brim type of this object to \"painted\"" msgstr "将此对象的边缘类型设置为\"绘制\"" -msgid " invalid brim ears" -msgstr " 个无效耳状Brim" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "耳状帽檐" @@ -20847,14 +21051,13 @@ msgstr "" "如何使用键盘快捷键\n" "您知道吗?Orca Slicer提供了广泛的键盘快捷键和3D场景操作。" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"奇数层反转\n" -"您知道吗?奇数层反转功能可以显著提高您悬垂的表面质量。" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -21122,6 +21325,78 @@ msgstr "" "避免翘曲\n" "您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。" +#~ msgid "Erase all painting" +#~ msgstr "擦除所有绘制" + +#~ msgid "Reset cut" +#~ msgstr "重置" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "交换鼠标按钮的平移与旋转功能" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "启用后,将左键和右键的平移与旋转功能对调" + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "预设喷嘴尺寸:%d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "已记住喷嘴尺寸:%d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "预设中的喷嘴类型与已记住的喷嘴尺寸不一致。您最近有更换喷嘴吗?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "预设中的 [%d] 喷嘴:%.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "[%d] 喷嘴已记住:%.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "您预设中的喷嘴类型与已记住的喷嘴不一致。您最近有更换喷嘴吗?" + +#~ msgid "Remove selected points" +#~ msgstr "删除已选择的点" + +#~ msgid "Remove all" +#~ msgstr "删除所有点" + +#~ msgid "Auto-generate points" +#~ msgstr "自动生成点" + +#~ msgid "Add a brim ear" +#~ msgstr "加入一个耳状Brim" + +#~ msgid "Delete a brim ear" +#~ msgstr "删除一个耳状Brim" + +#~ msgid "Adjust head diameter" +#~ msgstr "调整喷头直径" + +#~ msgid "Adjust section view" +#~ msgstr "调整剖面视图" + +#~ msgid " invalid brim ears" +#~ msgstr " 个无效耳状Brim" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "奇数层反转\n" +#~ "您知道吗?奇数层反转功能可以显著提高您悬垂的表面质量。" + #~ msgid "Pen size" #~ msgstr "画笔尺寸" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index 5b695ea81b..1b10eaded1 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-05-13 09:31-0300\n" +"POT-Creation-Date: 2026-05-22 02:24+0800\n" "PO-Revision-Date: 2025-11-28 13:48-0600\n" "Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n" "Language-Team: \n" @@ -115,8 +115,8 @@ msgstr "套用" msgid "On highlighted overhangs only" msgstr "僅對高亮懸空區生效" -msgid "Erase all painting" -msgstr "擦除所有自訂支撐" +msgid "Erase all" +msgstr "" msgid "Highlight overhang areas" msgstr "突顯出懸空區域" @@ -185,6 +185,9 @@ msgstr "根據懸空角度突顯出表面。" msgid "No auto support" msgstr "無自動支撐" +msgid "Done" +msgstr "完成" + msgid "Support Generated" msgstr "已產生支撐" @@ -334,6 +337,12 @@ msgstr "選擇零件" msgid "Fixed step drag" msgstr "以固定間距拖曳" +msgid "Context Menu" +msgstr "" + +msgid "Toggle Auto-Drop" +msgstr "" + msgid "Single sided scaling" msgstr "單側縮放" @@ -482,6 +491,18 @@ msgstr "切割位置" msgid "Build Volume" msgstr "列印體積" +msgid "Multiple" +msgstr "多個" + +msgid "Count" +msgstr "" + +msgid "Gap" +msgstr "" + +msgid "Spacing" +msgstr "間距" + msgid "Part" msgstr "零件" @@ -589,12 +610,6 @@ msgstr "編輯連接件" msgid "Add connectors" msgstr "新增連接件" -msgid "Reset cut" -msgstr "重設切割" - -msgid "Reset cutting plane and remove connectors" -msgstr "重設切割面且移除連接件" - msgid "Upper part" msgstr "上半部分" @@ -613,6 +628,9 @@ msgstr "切割後" msgid "Cut to parts" msgstr "切割為零件" +msgid "Reset cutting plane and remove connectors" +msgstr "重設切割面且移除連接件" + msgid "Perform cut" msgstr "執行切割" @@ -837,6 +855,9 @@ msgstr "預設字型" msgid "Advanced" msgstr "進階" +msgid "Reset all options except the text and operation" +msgstr "" + msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." @@ -1475,15 +1496,6 @@ msgstr "" "特徵 1 已重設,\n" "特徵 2 已變為特徵 1" -msgid "Warning: please select Plane's feature." -msgstr "警告:請選擇平面的特徵。" - -msgid "Warning: please select Point's or Circle's feature." -msgstr "警告:請選擇點或圓的特徵。" - -msgid "Warning: please select two different meshes." -msgstr "警告:請選擇兩個不同的網格。" - msgid "Copy to clipboard" msgstr "複製到剪貼簿" @@ -1535,6 +1547,15 @@ msgstr "(移動中)" msgid "Point and point assembly" msgstr "點對點裝配" +msgid "Warning: please select two different meshes." +msgstr "警告:請選擇兩個不同的網格。" + +msgid "Warning: please select Plane's feature." +msgstr "警告:請選擇平面的特徵。" + +msgid "Warning: please select Point's or Circle's feature." +msgstr "警告:請選擇點或圓的特徵。" + msgid "" "It is recommended to assemble the objects first,\n" "because the objects is restriced to bed \n" @@ -1723,6 +1744,18 @@ msgstr "已經是最新版本。" msgid "Info" msgstr "資訊" +msgid "Loading printer & filament profiles" +msgstr "" + +msgid "Creating main window" +msgstr "" + +msgid "Loading current preset" +msgstr "" + +msgid "Showing main window" +msgstr "" + msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" @@ -1782,6 +1815,23 @@ msgid "" "version before it can be used normally." msgstr "Orca Slicer 版本過舊,需要更新到最新版本才能正常使用" +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u): %s" +msgstr "" + +#, c-format, boost-format +msgid "" +"Failed to connect to OrcaCloud.\n" +"Please check your network connectivity\n" +"(HTTP %u)" +msgstr "" + +msgid "Cloud Error" +msgstr "" + msgid "Retrieving printer information, please try again later." msgstr "正在取得列印設備資訊,請稍後再試。" @@ -2333,12 +2383,12 @@ msgstr "自動調整物件轉向以提高列印品質。" msgid "Edit" msgstr "編輯" -msgid "Delete this filament" -msgstr "刪除此線材" - msgid "Merge with" msgstr "合併到" +msgid "Delete this filament" +msgstr "刪除此線材" + msgid "Select All" msgstr "全選" @@ -4580,9 +4630,6 @@ msgstr "停止乾燥" msgid "Proceed" msgstr "繼續" -msgid "Done" -msgstr "完成" - msgid "Retry" msgstr "重試" @@ -4843,33 +4890,6 @@ msgstr "支撐轉換層" msgid "Mixed" msgstr "混合" -msgid "mm/s" -msgstr "mm/s" - -msgid "mm/s²" -msgstr "mm/s²" - -msgid "Flow rate" -msgstr "流量" - -msgid "mm³/s" -msgstr "mm³/s" - -msgid "Fan speed" -msgstr "風扇速度" - -msgid "°C" -msgstr "°C" - -msgid "Time" -msgstr "時間" - -msgid "Actual speed profile" -msgstr "實際速度設定檔" - -msgid "Speed: " -msgstr "速度:" - msgid "Height: " msgstr "層高:" @@ -4903,6 +4923,33 @@ msgstr "" msgid "PA: " msgstr "PA:" +msgid "mm/s" +msgstr "mm/s" + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Flow rate" +msgstr "流量" + +msgid "Fan speed" +msgstr "風扇速度" + +msgid "°C" +msgstr "°C" + +msgid "Time" +msgstr "時間" + +msgid "Speed: " +msgstr "速度:" + +msgid "Actual speed profile" +msgstr "實際速度設定檔" + msgid "Statistics of All Plates" msgstr "所有列印板統計資料" @@ -5219,9 +5266,6 @@ msgstr "調整定向" msgid "Arrange options" msgstr "自動擺放選項" -msgid "Spacing" -msgstr "間距" - msgid "0 means auto spacing." msgstr "0 表示自動間距。" @@ -5356,7 +5400,7 @@ msgstr "體積:" msgid "Size:" msgstr "尺寸:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -5743,6 +5787,15 @@ msgstr "匯出目前選擇的設定檔" msgid "Export" msgstr "匯出" +msgid "Sync Presets" +msgstr "" + +msgid "Pull and apply the latest presets from OrcaCloud" +msgstr "" + +msgid "You must be logged in to sync presets from cloud." +msgstr "" + msgid "Quit" msgstr "結束" @@ -5868,6 +5921,9 @@ msgstr "視角" msgid "Preset Bundle" msgstr "" +msgid "Syncing presets from cloud…" +msgstr "" + msgid "Help" msgstr "幫助" @@ -6214,9 +6270,9 @@ msgid "" "The .gcode.3mf file contains no G-code data. Please slice it with Orca " "Slicer and export a new .gcode.3mf file." msgstr "" -".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新的 ." -"gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer 進行" -"切片並匯出新的 .gcode.3mf 檔案。" +".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新" +"的 .gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer " +"進行切片並匯出新的 .gcode.3mf 檔案。" #, c-format, boost-format msgid "File '%s' was lost! Please download it again." @@ -8313,19 +8369,33 @@ msgstr "使用自由鏡頭" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "如果啟用,則使用自由鏡頭。若未啟用,則使用受限鏡頭。" -msgid "Swap pan and rotate mouse buttons" -msgstr "對調滑鼠的平移與旋轉按鍵" - -msgid "" -"If enabled, swaps the left and right mouse buttons pan and rotate functions." -msgstr "啟用後,對調滑鼠左鍵與右鍵的平移與旋轉功能。" - msgid "Reverse mouse zoom" msgstr "反轉滑鼠滾輪縮放方向" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "啟用後,改變滑鼠滾輪縮放方向。" +msgid "Pan" +msgstr "" + +msgid "Left Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the left mouse button should perform." +msgstr "" + +msgid "Middle Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the middle mouse button should perform." +msgstr "" + +msgid "Right Mouse Drag" +msgstr "" + +msgid "Set the action that dragging the right mouse button should perform." +msgstr "" + msgid "Clear my choice on..." msgstr "清除我的選擇於..." @@ -8348,6 +8418,59 @@ msgid "" "Clear my choice for synchronizing printer preset after loading the file." msgstr "清除我在載入檔案後同步列印設備預設的選擇。" +msgid "Graphics" +msgstr "" + +msgid "Anti-aliasing" +msgstr "" + +msgid "MSAA Multiplier" +msgstr "" + +msgid "" +"Set the Multi-Sample Anti-Aliasing level.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" +"Lower values improve performance, at the cost of jagged edges.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" +"\n" +"Requires application restart." +msgstr "" + +msgid "Disabled" +msgstr "停用" + +msgid "FXAA post-processing" +msgstr "" + +msgid "" +"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" +"Useful for disabling or reducing the MSAA setting to improve performance.\n" +"\n" +"Takes effect immediately." +msgstr "" + +msgid "FPS" +msgstr "" + +msgid "FPS cap" +msgstr "" + +msgid "(0 = unlimited)" +msgstr "" + +msgid "" +"Limits viewport frame rate to reduce GPU load and power usage.\n" +"Set to 0 for unlimited frame rate." +msgstr "" + +msgid "Show FPS overlay" +msgstr "" + +msgid "Displays current viewport FPS in the top-right corner." +msgstr "" + msgid "Login region" msgstr "登入區域" @@ -8494,6 +8617,15 @@ msgstr "開發者模式" msgid "Skip AMS blacklist check" msgstr "跳過 AMS 黑名單檢查" +msgid "(Experimental) Keep painted feature after mesh change" +msgstr "" + +msgid "" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Highly experimental! Slow and may create artifact." +msgstr "" + msgid "Allow Abnormal Storage" msgstr "允許異常儲存空間" @@ -9527,8 +9659,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 "" "在錄製無工具頭縮時錄影影片時,建議新增一個「縮時錄影換料塔」\n" "可以通過右鍵點擊構建板的空白位置,選擇『新增標準模型』->『縮時錄影換料塔』來" @@ -10127,6 +10259,32 @@ msgstr "不儲存" msgid "Discard" msgstr "放棄" +msgid "the new profile" +msgstr "" + +#, boost-format +msgid "" +"Switch to\n" +"\"%1%\"\n" +"discarding any changes made in\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings modified in\n" +"\"%1%\"\n" +"will be transferred to\n" +"\"%2%\"." +msgstr "" + +#, boost-format +msgid "" +"All \"New Value\" settings are saved in\n" +"\"%1%\"\n" +"and \"%2%\" will open without any changes." +msgstr "" + msgid "Click the right mouse button to display the full text." msgstr "單擊滑鼠右鍵顯示全文。" @@ -10672,6 +10830,9 @@ msgstr "點擊下載。" msgid "Login" msgstr "登入" +msgid "Login failed. Please try again." +msgstr "" + msgid "[Action Required] " msgstr "[需要操作] " @@ -10708,6 +10869,18 @@ msgstr "顯示鍵盤快捷鍵清單" msgid "Global shortcuts" msgstr "全域快捷鍵" +msgid "Pan View" +msgstr "" + +msgid "Rotate View" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Zoom View" +msgstr "" + msgid "" "Auto orients selected objects or all objects. If there are selected objects, " "it just orients the selected ones. Otherwise, it will orient all objects in " @@ -11171,9 +11344,6 @@ msgstr "無法放置於" msgid "Internal Bridge" msgstr "內部橋接" -msgid "Multiple" -msgstr "多個" - #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "計算 %1% 的線寬失敗。無法獲得「%2%」的值" @@ -12769,9 +12939,6 @@ msgstr "" "將作為角度參考。\n" "4. 套用於所有橋接區域 - 為內部與外部橋接區域都新增第二層橋接層。\n" -msgid "Disabled" -msgstr "停用" - msgid "External bridge only" msgstr "僅外部橋接" @@ -13371,6 +13538,18 @@ msgstr "自動清理" msgid "Auto For Match" msgstr "自動匹配" +msgid "Enable filament dynamic map" +msgstr "" + +msgid "Enable dynamic filament mapping during print." +msgstr "" + +msgid "Has filament switcher" +msgstr "" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "" + msgid "Flush temperature" msgstr "清理溫度" @@ -13819,6 +13998,17 @@ msgid "" "Using multiple lines for the infill pattern, if supported by infill pattern." msgstr "為填充圖案使用多條線,如果填充圖案支援。" +msgid "Z-buckling bias optimization (experimental)" +msgstr "" + +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." +msgstr "" + msgid "Sparse infill pattern" msgstr "稀疏填充圖案" @@ -13980,8 +14170,8 @@ msgid "mm/s² or %" msgstr "mm/s² 或 %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" "稀疏填充的加速度。如果該值表示為百分比(例如 100%),則將根據預設加速度進行計" "算。" @@ -14103,10 +14293,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」層開始,從零速以線性方式逐漸增" "加,直到第「full_fan_speed_layer」層達到最大速度。如果" @@ -14566,6 +14756,30 @@ msgstr "" "譯者補充:風扇啟動時間通常是指風扇從靜止狀態到穩定運轉所需的時間\n" "這個設定可以確保風扇在低轉速時順利啟動,避免因功率不足而無法正常運行。" +msgid "Minimum non-zero part cooling fan speed" +msgstr "" + +msgid "" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" +"Set to 0 to deactivate." +msgstr "" + +msgid "%" +msgstr "" + msgid "Time cost" msgstr "時間成本" @@ -16031,8 +16245,8 @@ msgid "Role base wipe speed" msgstr "自動擦拭速度" msgid "" -"The wipe speed is determined by the speed of the current extrusion role. e." -"g. if a wipe action is executed immediately following an outer wall " +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " "extrusion, the speed of the outer wall extrusion will be utilized for the " "wipe action." msgstr "" @@ -16384,6 +16598,19 @@ msgstr "沖刷剩餘的線材進入換料塔" msgid "Enable filament ramming" msgstr "啟用線材尖端成型" +msgid "Tool change on wipe tower" +msgstr "" + +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." +msgstr "" + msgid "No sparse layers (beta)" msgstr "取消稀疏層(Beta)" @@ -16705,15 +16932,15 @@ msgid "Threshold angle" msgstr "臨界值角度" msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. " -"The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, " -"while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"將會為傾斜角度低於臨界值的懸垂產生支撐。" -"數值越小,代表可以在不使用支撐的情況下列印更陡峭的懸垂結構。\n" -"注意:若設為 0,一般支撐會改用閾值疊加比例," -"而樹狀支撐則會回退到預設值 30。" +"將會為傾斜角度低於臨界值的懸垂產生支撐。數值越小,代表可以在不使用支撐的情況" +"下列印更陡峭的懸垂結構。\n" +"注意:若設為 0,一般支撐會改用閾值疊加比例,而樹狀支撐則會回退到預設值 30。" msgid "Threshold overlap" msgstr "閾值疊加比例" @@ -16863,8 +17090,8 @@ msgstr "啟動溫度控制" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the \"machine_start_gcode" -"\"\n" +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " "chamber heater, if present.\n" @@ -17761,8 +17988,8 @@ msgid "Debug level" msgstr "除錯模式等級" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" -"trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" msgstr "" "設定除錯日誌級別。0:致命錯誤,1:錯誤,2:警告,3:資訊,4:除錯,5:追蹤\n" @@ -19430,8 +19657,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" @@ -19593,6 +19820,18 @@ msgid "" "Please re-enter the printer model or nozzle diameter." msgstr "系統預設不允許建立。 請重新輸入列印設備型號或噴嘴直徑。" +msgid "" +"\n" +"\n" +"Available nozzle profiles for this printer:" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose YES to switch existing preset:" +msgstr "" + msgid "Printer Created Successfully" msgstr "列印設備建立成功" @@ -19828,32 +20067,6 @@ msgstr "" "噴嘴類型與實際列印設備噴嘴類型不匹配。\n" "請單擊上面的同步按鈕並重新啟動校正。" -#, c-format, boost-format -msgid "nozzle size in preset: %d" -msgstr "預設噴嘴尺寸:%d" - -#, c-format, boost-format -msgid "nozzle size memorized: %d" -msgstr "記憶噴嘴尺寸:%d" - -msgid "" -"The size of nozzle type in preset is not consistent with memorized nozzle. " -"Did you change your nozzle lately?" -msgstr "預設的噴嘴類型尺寸與記憶的噴嘴尺寸不一致。您最近更換噴嘴了嗎?" - -#, c-format, boost-format -msgid "nozzle[%d] in preset: %.1f" -msgstr "預設中的噴嘴[%d]:%.1f" - -#, c-format, boost-format -msgid "nozzle[%d] memorized: %.1f" -msgstr "噴嘴[%d] 已記憶:%.1f" - -msgid "" -"Your nozzle type in preset is not consistent with memorized nozzle. Did you " -"change your nozzle lately?" -msgstr "您預設的噴嘴類型與記憶的噴嘴不一致。您最近更換噴嘴了嗎?" - #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." msgstr "Printing %1s material with %2s nozzle may cause nozzle damage." @@ -20692,26 +20905,17 @@ msgstr "最大角度" msgid "Detection radius" msgstr "偵測範圍" -msgid "Remove selected points" -msgstr "移除選定的點" +msgid "Selected" +msgstr "" -msgid "Remove all" -msgstr "刪除全部" +msgid "Auto-generate" +msgstr "" -msgid "Auto-generate points" -msgstr "自動產生點" +msgid "Generate brim ears using Max angle and Detection radius" +msgstr "" -msgid "Add a brim ear" -msgstr "新增邊緣支撐 (Brim)" - -msgid "Delete a brim ear" -msgstr "刪除邊緣支撐 (Brim)" - -msgid "Adjust head diameter" -msgstr "調整噴頭直徑" - -msgid "Adjust section view" -msgstr "調整截圖視角" +msgid "Add or Select" +msgstr "" msgid "" "Warning: The brim type is not set to \"painted\", the brim ears will not " @@ -20721,8 +20925,8 @@ msgstr "警告:邊緣類型未設置「上色」,因此邊緣支撐 (Brim) msgid "Set the brim type of this object to \"painted\"" msgstr "將此物件的邊緣類型設定為\"繪製\"" -msgid " invalid brim ears" -msgstr " 無效的邊緣支撐 (Brim)" +msgid "invalid brim ears" +msgstr "" msgid "Brim Ears" msgstr "邊緣支撐 (Brim)" @@ -20984,14 +21188,13 @@ msgstr "" "如何使用鍵盤快捷鍵\n" "您知道嗎? Orca Slicer 提供了廣泛的鍵盤快捷鍵和 3D 場景操作。" -#: resources/data/hints.ini: [hint:Reverse on odd] +#: resources/data/hints.ini: [hint:Reverse on even] msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Reverse on even\n" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" -"奇數反向\n" -"您知道嗎?奇數反向 功能能大幅提升懸空結構的表面品質。" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -21268,6 +21471,78 @@ msgstr "" "您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n" "可以降低翹曲的機率。" +#~ msgid "Erase all painting" +#~ msgstr "擦除所有自訂支撐" + +#~ msgid "Reset cut" +#~ msgstr "重設切割" + +#~ msgid "Swap pan and rotate mouse buttons" +#~ msgstr "對調滑鼠的平移與旋轉按鍵" + +#~ msgid "" +#~ "If enabled, swaps the left and right mouse buttons pan and rotate " +#~ "functions." +#~ msgstr "啟用後,對調滑鼠左鍵與右鍵的平移與旋轉功能。" + +#, c-format, boost-format +#~ msgid "nozzle size in preset: %d" +#~ msgstr "預設噴嘴尺寸:%d" + +#, c-format, boost-format +#~ msgid "nozzle size memorized: %d" +#~ msgstr "記憶噴嘴尺寸:%d" + +#~ msgid "" +#~ "The size of nozzle type in preset is not consistent with memorized " +#~ "nozzle. Did you change your nozzle lately?" +#~ msgstr "預設的噴嘴類型尺寸與記憶的噴嘴尺寸不一致。您最近更換噴嘴了嗎?" + +#, c-format, boost-format +#~ msgid "nozzle[%d] in preset: %.1f" +#~ msgstr "預設中的噴嘴[%d]:%.1f" + +#, c-format, boost-format +#~ msgid "nozzle[%d] memorized: %.1f" +#~ msgstr "噴嘴[%d] 已記憶:%.1f" + +#~ msgid "" +#~ "Your nozzle type in preset is not consistent with memorized nozzle. Did " +#~ "you change your nozzle lately?" +#~ msgstr "您預設的噴嘴類型與記憶的噴嘴不一致。您最近更換噴嘴了嗎?" + +#~ msgid "Remove selected points" +#~ msgstr "移除選定的點" + +#~ msgid "Remove all" +#~ msgstr "刪除全部" + +#~ msgid "Auto-generate points" +#~ msgstr "自動產生點" + +#~ msgid "Add a brim ear" +#~ msgstr "新增邊緣支撐 (Brim)" + +#~ msgid "Delete a brim ear" +#~ msgstr "刪除邊緣支撐 (Brim)" + +#~ msgid "Adjust head diameter" +#~ msgstr "調整噴頭直徑" + +#~ msgid "Adjust section view" +#~ msgstr "調整截圖視角" + +#~ msgid " invalid brim ears" +#~ msgstr " 無效的邊緣支撐 (Brim)" + +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "奇數反向\n" +#~ "您知道嗎?奇數反向 功能能大幅提升懸空結構的表面品質。" + #~ msgid "Pen size" #~ msgstr "筆刷尺寸" From 16a992b4d5c0188d396f83211b4701490daf47a8 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 22 May 2026 02:27:34 +0800 Subject: [PATCH 22/30] bump profile version --- resources/profiles/Afinia.json | 2 +- resources/profiles/Anker.json | 2 +- resources/profiles/Anycubic.json | 2 +- resources/profiles/Artillery.json | 2 +- resources/profiles/BBL.json | 2 +- resources/profiles/BIQU.json | 2 +- resources/profiles/Blocks.json | 2 +- resources/profiles/CONSTRUCT3D.json | 2 +- resources/profiles/Chuanying.json | 2 +- resources/profiles/Co Print.json | 2 +- resources/profiles/CoLiDo.json | 2 +- resources/profiles/Comgrow.json | 2 +- resources/profiles/Cubicon.json | 2 +- resources/profiles/Custom.json | 2 +- resources/profiles/DeltaMaker.json | 2 +- resources/profiles/Dremel.json | 2 +- resources/profiles/Elegoo.json | 2 +- resources/profiles/Eryone.json | 2 +- resources/profiles/FLSun.json | 2 +- resources/profiles/Flashforge.json | 2 +- resources/profiles/FlyingBear.json | 2 +- resources/profiles/Folgertech.json | 2 +- resources/profiles/Geeetech.json | 2 +- resources/profiles/Ginger Additive.json | 2 +- resources/profiles/InfiMech.json | 2 +- resources/profiles/Kingroon.json | 2 +- resources/profiles/LH.json | 2 +- resources/profiles/LONGER.json | 2 +- resources/profiles/Lulzbot.json | 2 +- resources/profiles/M3D.json | 2 +- resources/profiles/MagicMaker.json | 2 +- resources/profiles/Mellow.json | 2 +- resources/profiles/OpenEYE.json | 2 +- resources/profiles/OrcaArena.json | 2 +- resources/profiles/OrcaFilamentLibrary.json | 2 +- resources/profiles/Peopoly.json | 2 +- resources/profiles/Phrozen.json | 2 +- resources/profiles/Positron3D.json | 2 +- resources/profiles/Prusa.json | 2 +- resources/profiles/Qidi.json | 2 +- resources/profiles/RH3D.json | 2 +- resources/profiles/Raise3D.json | 2 +- resources/profiles/Ratrig.json | 2 +- resources/profiles/RolohaunDesign.json | 2 +- resources/profiles/SecKit.json | 2 +- resources/profiles/Snapmaker.json | 2 +- resources/profiles/Sovol.json | 2 +- resources/profiles/Tiertime.json | 2 +- resources/profiles/Tronxy.json | 2 +- resources/profiles/TwoTrees.json | 2 +- resources/profiles/UltiMaker.json | 2 +- resources/profiles/Vivedino.json | 2 +- resources/profiles/Volumic.json | 2 +- resources/profiles/Voron.json | 2 +- resources/profiles/Voxelab.json | 2 +- resources/profiles/Vzbot.json | 2 +- resources/profiles/WEMAKE3D.json | 2 +- resources/profiles/Wanhao France.json | 2 +- resources/profiles/Wanhao.json | 2 +- resources/profiles/WonderMaker.json | 2 +- resources/profiles/Z-Bolt.json | 2 +- resources/profiles/iQ.json | 2 +- resources/profiles/re3D.json | 2 +- 63 files changed, 63 insertions(+), 63 deletions(-) diff --git a/resources/profiles/Afinia.json b/resources/profiles/Afinia.json index 13cab053a3..e684195301 100644 --- a/resources/profiles/Afinia.json +++ b/resources/profiles/Afinia.json @@ -1,6 +1,6 @@ { "name": "Afinia", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Afinia configurations", "machine_model_list": [ diff --git a/resources/profiles/Anker.json b/resources/profiles/Anker.json index c1a38a5f89..2d578cab61 100644 --- a/resources/profiles/Anker.json +++ b/resources/profiles/Anker.json @@ -1,6 +1,6 @@ { "name": "Anker", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Anker configurations", "machine_model_list": [ diff --git a/resources/profiles/Anycubic.json b/resources/profiles/Anycubic.json index eae65e069a..789f72f3a1 100644 --- a/resources/profiles/Anycubic.json +++ b/resources/profiles/Anycubic.json @@ -1,6 +1,6 @@ { "name": "Anycubic", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Anycubic configurations", "machine_model_list": [ diff --git a/resources/profiles/Artillery.json b/resources/profiles/Artillery.json index 977d5c4d10..bf9e93f525 100644 --- a/resources/profiles/Artillery.json +++ b/resources/profiles/Artillery.json @@ -1,6 +1,6 @@ { "name": "Artillery", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Artillery configurations", "machine_model_list": [ diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 3a77d47b5f..d110bda4b2 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "02.01.00.13", + "version": "02.01.00.14", "force_update": "0", "description": "BBL configurations", "machine_model_list": [ diff --git a/resources/profiles/BIQU.json b/resources/profiles/BIQU.json index cef8049680..4cdfde4ada 100644 --- a/resources/profiles/BIQU.json +++ b/resources/profiles/BIQU.json @@ -1,6 +1,6 @@ { "name": "BIQU", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "BIQU configurations", "machine_model_list": [ diff --git a/resources/profiles/Blocks.json b/resources/profiles/Blocks.json index 6f39b96ef5..5a40e50ce1 100644 --- a/resources/profiles/Blocks.json +++ b/resources/profiles/Blocks.json @@ -1,6 +1,6 @@ { "name": "Blocks", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Blocks configurations", "machine_model_list": [ diff --git a/resources/profiles/CONSTRUCT3D.json b/resources/profiles/CONSTRUCT3D.json index 730b1c3bd4..371c99775e 100644 --- a/resources/profiles/CONSTRUCT3D.json +++ b/resources/profiles/CONSTRUCT3D.json @@ -1,6 +1,6 @@ { "name": "CONSTRUCT3D", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Construct3D configurations", "machine_model_list": [ diff --git a/resources/profiles/Chuanying.json b/resources/profiles/Chuanying.json index 325569339a..8fe61c9bff 100644 --- a/resources/profiles/Chuanying.json +++ b/resources/profiles/Chuanying.json @@ -1,7 +1,7 @@ { "name": "Chuanying", "url": "", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Chuanying configurations", "machine_model_list": [ diff --git a/resources/profiles/Co Print.json b/resources/profiles/Co Print.json index 7184d02328..47b9398af9 100644 --- a/resources/profiles/Co Print.json +++ b/resources/profiles/Co Print.json @@ -1,6 +1,6 @@ { "name": "Co Print", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "CoPrint configurations", "machine_model_list": [ diff --git a/resources/profiles/CoLiDo.json b/resources/profiles/CoLiDo.json index a5bf288f29..88a7776661 100644 --- a/resources/profiles/CoLiDo.json +++ b/resources/profiles/CoLiDo.json @@ -1,6 +1,6 @@ { "name": "CoLiDo", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "CoLiDo configurations", "machine_model_list": [ diff --git a/resources/profiles/Comgrow.json b/resources/profiles/Comgrow.json index 13f8fad50f..45bbe6d8d4 100644 --- a/resources/profiles/Comgrow.json +++ b/resources/profiles/Comgrow.json @@ -1,6 +1,6 @@ { "name": "Comgrow", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Comgrow configurations", "machine_model_list": [ diff --git a/resources/profiles/Cubicon.json b/resources/profiles/Cubicon.json index 94ff81914b..c85e766a66 100644 --- a/resources/profiles/Cubicon.json +++ b/resources/profiles/Cubicon.json @@ -1,6 +1,6 @@ { "name": "Cubicon", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Cubicon configurations", "machine_model_list": [ diff --git a/resources/profiles/Custom.json b/resources/profiles/Custom.json index de265beb0d..a2dae74cab 100644 --- a/resources/profiles/Custom.json +++ b/resources/profiles/Custom.json @@ -1,6 +1,6 @@ { "name": "Custom Printer", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "My configurations", "machine_model_list": [ diff --git a/resources/profiles/DeltaMaker.json b/resources/profiles/DeltaMaker.json index 16fc960347..7942285ce0 100755 --- a/resources/profiles/DeltaMaker.json +++ b/resources/profiles/DeltaMaker.json @@ -1,7 +1,7 @@ { "name": "DeltaMaker", "url": "", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "DeltaMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/Dremel.json b/resources/profiles/Dremel.json index d434911900..8988c73e45 100644 --- a/resources/profiles/Dremel.json +++ b/resources/profiles/Dremel.json @@ -1,6 +1,6 @@ { "name": "Dremel", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Dremel configurations", "machine_model_list": [ diff --git a/resources/profiles/Elegoo.json b/resources/profiles/Elegoo.json index 2aa70618a3..25597355fb 100644 --- a/resources/profiles/Elegoo.json +++ b/resources/profiles/Elegoo.json @@ -1,6 +1,6 @@ { "name": "Elegoo", - "version": "02.03.02.71", + "version": "02.04.00.00", "force_update": "0", "description": "Elegoo configurations", "machine_model_list": [ diff --git a/resources/profiles/Eryone.json b/resources/profiles/Eryone.json index c8645f54c4..9e695f2420 100644 --- a/resources/profiles/Eryone.json +++ b/resources/profiles/Eryone.json @@ -1,6 +1,6 @@ { "name": "Eryone", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Eryone configurations", "machine_model_list": [ diff --git a/resources/profiles/FLSun.json b/resources/profiles/FLSun.json index 17439d0851..6c2da9e7a2 100644 --- a/resources/profiles/FLSun.json +++ b/resources/profiles/FLSun.json @@ -1,6 +1,6 @@ { "name": "FLSun", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "FLSun configurations", "machine_model_list": [ diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json index 2cc425021e..d198488a09 100644 --- a/resources/profiles/Flashforge.json +++ b/resources/profiles/Flashforge.json @@ -1,7 +1,7 @@ { "name": "Flashforge", "url": "", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Flashforge configurations", "machine_model_list": [ diff --git a/resources/profiles/FlyingBear.json b/resources/profiles/FlyingBear.json index fafaad227b..a92eb99002 100644 --- a/resources/profiles/FlyingBear.json +++ b/resources/profiles/FlyingBear.json @@ -1,6 +1,6 @@ { "name": "FlyingBear", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "1", "description": "FlyingBear configurations", "machine_model_list": [ diff --git a/resources/profiles/Folgertech.json b/resources/profiles/Folgertech.json index d8615ab990..00c443f558 100644 --- a/resources/profiles/Folgertech.json +++ b/resources/profiles/Folgertech.json @@ -1,6 +1,6 @@ { "name": "Folgertech", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Folgertech configurations", "machine_model_list": [ diff --git a/resources/profiles/Geeetech.json b/resources/profiles/Geeetech.json index 0dc30266fc..4bee5a1f6a 100644 --- a/resources/profiles/Geeetech.json +++ b/resources/profiles/Geeetech.json @@ -1,6 +1,6 @@ { "name": "Geeetech", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Geeetech configurations", "machine_model_list": [ diff --git a/resources/profiles/Ginger Additive.json b/resources/profiles/Ginger Additive.json index a54bdc3b1f..299f6ee009 100644 --- a/resources/profiles/Ginger Additive.json +++ b/resources/profiles/Ginger Additive.json @@ -1,6 +1,6 @@ { "name": "Ginger Additive", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "1", "description": "Ginger configuration", "machine_model_list": [ diff --git a/resources/profiles/InfiMech.json b/resources/profiles/InfiMech.json index 7131aa62be..d519b846d6 100644 --- a/resources/profiles/InfiMech.json +++ b/resources/profiles/InfiMech.json @@ -1,6 +1,6 @@ { "name": "InfiMech", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "1", "description": "InfiMech configurations", "machine_model_list": [ diff --git a/resources/profiles/Kingroon.json b/resources/profiles/Kingroon.json index 704ad96793..adda5d8537 100644 --- a/resources/profiles/Kingroon.json +++ b/resources/profiles/Kingroon.json @@ -1,7 +1,7 @@ { "name": "Kingroon", "url": "https://kingroon.com/", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "1", "description": "Kingroon configuration files", "machine_model_list": [ diff --git a/resources/profiles/LH.json b/resources/profiles/LH.json index 32df35a0cf..27c489033d 100644 --- a/resources/profiles/LH.json +++ b/resources/profiles/LH.json @@ -1,7 +1,7 @@ { "name": "LH", "url": "https://github.com/lhndo/LH-Stinger", - "version": "01.00.00.00", + "version": "02.04.00.00", "force_update": "0", "description": "LH 3D Printer Configuration", "machine_model_list": [ diff --git a/resources/profiles/LONGER.json b/resources/profiles/LONGER.json index 86572785da..397f95b157 100644 --- a/resources/profiles/LONGER.json +++ b/resources/profiles/LONGER.json @@ -1,6 +1,6 @@ { "name": "LONGER", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "LONGER configurations", "machine_model_list": [ diff --git a/resources/profiles/Lulzbot.json b/resources/profiles/Lulzbot.json index 0f2d77c79e..9d4c5617f9 100644 --- a/resources/profiles/Lulzbot.json +++ b/resources/profiles/Lulzbot.json @@ -1,7 +1,7 @@ { "name": "Lulzbot", "url": "https://ohai.lulzbot.com/group/taz-6/", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Lulzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/M3D.json b/resources/profiles/M3D.json index d8bbdd1e56..830dd2ae7d 100644 --- a/resources/profiles/M3D.json +++ b/resources/profiles/M3D.json @@ -1,6 +1,6 @@ { "name": "M3D", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Configuration for M3D printers", "machine_model_list": [ diff --git a/resources/profiles/MagicMaker.json b/resources/profiles/MagicMaker.json index c537d91a9c..87327300d4 100644 --- a/resources/profiles/MagicMaker.json +++ b/resources/profiles/MagicMaker.json @@ -1,6 +1,6 @@ { "name": "MagicMaker", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "MagicMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/Mellow.json b/resources/profiles/Mellow.json index 1db75c75aa..678fb93480 100644 --- a/resources/profiles/Mellow.json +++ b/resources/profiles/Mellow.json @@ -1,6 +1,6 @@ { "name": "Mellow", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Mellow Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/OpenEYE.json b/resources/profiles/OpenEYE.json index 62861b96ef..e8f05e8fd7 100644 --- a/resources/profiles/OpenEYE.json +++ b/resources/profiles/OpenEYE.json @@ -1,7 +1,7 @@ { "name": "OpenEYE", "url": "http://www.openeye.tech", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "OpenEYE Printers Configurations", "machine_model_list": [ diff --git a/resources/profiles/OrcaArena.json b/resources/profiles/OrcaArena.json index f8507698dc..43b9a4fd68 100644 --- a/resources/profiles/OrcaArena.json +++ b/resources/profiles/OrcaArena.json @@ -1,7 +1,7 @@ { "name": "Orca Arena Printer", "url": "", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Orca Arena configuration files", "machine_model_list": [ diff --git a/resources/profiles/OrcaFilamentLibrary.json b/resources/profiles/OrcaFilamentLibrary.json index 63c3a15596..62ff05b0c5 100644 --- a/resources/profiles/OrcaFilamentLibrary.json +++ b/resources/profiles/OrcaFilamentLibrary.json @@ -1,6 +1,6 @@ { "name": "OrcaFilamentLibrary", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Orca Filament Library", "filament_list": [ diff --git a/resources/profiles/Peopoly.json b/resources/profiles/Peopoly.json index 6f5ecc7917..92502b774c 100644 --- a/resources/profiles/Peopoly.json +++ b/resources/profiles/Peopoly.json @@ -1,6 +1,6 @@ { "name": "Peopoly", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Peopoly configurations", "machine_model_list": [ diff --git a/resources/profiles/Phrozen.json b/resources/profiles/Phrozen.json index 4a2539de23..64db278ab7 100644 --- a/resources/profiles/Phrozen.json +++ b/resources/profiles/Phrozen.json @@ -1,6 +1,6 @@ { "name": "Phrozen", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Phrozen configurations", "machine_model_list": [ diff --git a/resources/profiles/Positron3D.json b/resources/profiles/Positron3D.json index 2341f35959..ff2ba78243 100644 --- a/resources/profiles/Positron3D.json +++ b/resources/profiles/Positron3D.json @@ -1,6 +1,6 @@ { "name": "Positron 3D", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Positron 3D Printer Profile", "machine_model_list": [ diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json index cd52d66c9e..76f0c37877 100644 --- a/resources/profiles/Prusa.json +++ b/resources/profiles/Prusa.json @@ -1,6 +1,6 @@ { "name": "Prusa", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Prusa configurations", "machine_model_list": [ diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json index 63d5f9c371..24ea0eb606 100644 --- a/resources/profiles/Qidi.json +++ b/resources/profiles/Qidi.json @@ -1,6 +1,6 @@ { "name": "Qidi", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Qidi configurations", "machine_model_list": [ diff --git a/resources/profiles/RH3D.json b/resources/profiles/RH3D.json index d8af523447..bb36f17f39 100644 --- a/resources/profiles/RH3D.json +++ b/resources/profiles/RH3D.json @@ -1,6 +1,6 @@ { "name": "RH3D", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "RH3D - printer profiles", "machine_model_list": [ diff --git a/resources/profiles/Raise3D.json b/resources/profiles/Raise3D.json index 086b030a27..0dcae032af 100644 --- a/resources/profiles/Raise3D.json +++ b/resources/profiles/Raise3D.json @@ -1,7 +1,7 @@ { "name": "Raise3D", "url": "", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Raise3D configurations", "machine_model_list": [ diff --git a/resources/profiles/Ratrig.json b/resources/profiles/Ratrig.json index 9ecc22a2c1..4c124544cf 100644 --- a/resources/profiles/Ratrig.json +++ b/resources/profiles/Ratrig.json @@ -1,6 +1,6 @@ { "name": "RatRig", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "RatRig configurations", "machine_model_list": [ diff --git a/resources/profiles/RolohaunDesign.json b/resources/profiles/RolohaunDesign.json index 492cd391e1..facbdebda4 100644 --- a/resources/profiles/RolohaunDesign.json +++ b/resources/profiles/RolohaunDesign.json @@ -1,6 +1,6 @@ { "name": "RolohaunDesign", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "RolohaunDesign Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/SecKit.json b/resources/profiles/SecKit.json index 12b8252786..700b063359 100644 --- a/resources/profiles/SecKit.json +++ b/resources/profiles/SecKit.json @@ -1,6 +1,6 @@ { "name": "SecKit", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "SecKit configurations", "machine_model_list": [ diff --git a/resources/profiles/Snapmaker.json b/resources/profiles/Snapmaker.json index f3a494da74..ce72bffc09 100644 --- a/resources/profiles/Snapmaker.json +++ b/resources/profiles/Snapmaker.json @@ -1,6 +1,6 @@ { "name": "Snapmaker", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Snapmaker configurations", "machine_model_list": [ diff --git a/resources/profiles/Sovol.json b/resources/profiles/Sovol.json index 393c7c7374..a12a336457 100644 --- a/resources/profiles/Sovol.json +++ b/resources/profiles/Sovol.json @@ -1,7 +1,7 @@ { "name": "Sovol", "url": "", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Sovol configurations", "machine_model_list": [ diff --git a/resources/profiles/Tiertime.json b/resources/profiles/Tiertime.json index 761efdb0e1..73f8575b98 100644 --- a/resources/profiles/Tiertime.json +++ b/resources/profiles/Tiertime.json @@ -1,6 +1,6 @@ { "name": "Tiertime", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Tiertime configurations", "machine_model_list": [ diff --git a/resources/profiles/Tronxy.json b/resources/profiles/Tronxy.json index 9f7f49d3a6..1d5bef89ce 100644 --- a/resources/profiles/Tronxy.json +++ b/resources/profiles/Tronxy.json @@ -1,6 +1,6 @@ { "name": "Tronxy", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Tronxy configurations", "machine_model_list": [ diff --git a/resources/profiles/TwoTrees.json b/resources/profiles/TwoTrees.json index 0092fd1711..5063bbce79 100644 --- a/resources/profiles/TwoTrees.json +++ b/resources/profiles/TwoTrees.json @@ -1,6 +1,6 @@ { "name": "TwoTrees", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "1", "description": "TwoTrees configurations", "machine_model_list": [ diff --git a/resources/profiles/UltiMaker.json b/resources/profiles/UltiMaker.json index 27a7909d3c..01e3c68ecc 100644 --- a/resources/profiles/UltiMaker.json +++ b/resources/profiles/UltiMaker.json @@ -1,7 +1,7 @@ { "name": "UltiMaker", "url": "", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "UltiMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/Vivedino.json b/resources/profiles/Vivedino.json index f2632bcb4c..5ccb1958d0 100644 --- a/resources/profiles/Vivedino.json +++ b/resources/profiles/Vivedino.json @@ -1,6 +1,6 @@ { "name": "Vivedino", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Vivedino configurations", "machine_model_list": [ diff --git a/resources/profiles/Volumic.json b/resources/profiles/Volumic.json index ccd0643457..9a6751c628 100644 --- a/resources/profiles/Volumic.json +++ b/resources/profiles/Volumic.json @@ -1,6 +1,6 @@ { "name": "Volumic", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "1", "description": "VOLUMIC configurations", "machine_model_list": [ diff --git a/resources/profiles/Voron.json b/resources/profiles/Voron.json index 10076e88b8..6078a0aecc 100644 --- a/resources/profiles/Voron.json +++ b/resources/profiles/Voron.json @@ -1,6 +1,6 @@ { "name": "Voron", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Voron configurations", "machine_model_list": [ diff --git a/resources/profiles/Voxelab.json b/resources/profiles/Voxelab.json index 0bf0ff33df..e2da594a74 100644 --- a/resources/profiles/Voxelab.json +++ b/resources/profiles/Voxelab.json @@ -1,7 +1,7 @@ { "name": "Voxelab", "url": "", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Voxelab configurations", "machine_model_list": [ diff --git a/resources/profiles/Vzbot.json b/resources/profiles/Vzbot.json index 2adb9808b0..e30720f737 100644 --- a/resources/profiles/Vzbot.json +++ b/resources/profiles/Vzbot.json @@ -1,6 +1,6 @@ { "name": "Vzbot", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Vzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/WEMAKE3D.json b/resources/profiles/WEMAKE3D.json index a265934921..18a91722db 100644 --- a/resources/profiles/WEMAKE3D.json +++ b/resources/profiles/WEMAKE3D.json @@ -1,6 +1,6 @@ { "name": "WEMAKE3D", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "WEMAKE3D configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao France.json b/resources/profiles/Wanhao France.json index c38a0ed597..3b957e5f83 100644 --- a/resources/profiles/Wanhao France.json +++ b/resources/profiles/Wanhao France.json @@ -1,6 +1,6 @@ { "name": "Wanhao France", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "Wanhao France D12 configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao.json b/resources/profiles/Wanhao.json index 8babf55f20..fbd1b366ad 100644 --- a/resources/profiles/Wanhao.json +++ b/resources/profiles/Wanhao.json @@ -1,6 +1,6 @@ { "name": "Wanhao", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "0", "description": "Wanhao configurations", "machine_model_list": [ diff --git a/resources/profiles/WonderMaker.json b/resources/profiles/WonderMaker.json index d006923592..2ecb6d2323 100755 --- a/resources/profiles/WonderMaker.json +++ b/resources/profiles/WonderMaker.json @@ -1,7 +1,7 @@ { "name": "WonderMaker", "url": "", - "version": "02.03.02.60", + "version": "02.04.00.00", "force_update": "0", "description": "WonderMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/Z-Bolt.json b/resources/profiles/Z-Bolt.json index b49dd51fed..c38063472e 100644 --- a/resources/profiles/Z-Bolt.json +++ b/resources/profiles/Z-Bolt.json @@ -1,7 +1,7 @@ { "name": "Z-Bolt", "url": "", - "version": "02.03.02.71", + "version": "02.04.00.00", "force_update": "0", "description": "Z-Bolt configurations", "machine_model_list": [ diff --git a/resources/profiles/iQ.json b/resources/profiles/iQ.json index c0b2570558..ff1ad6fbed 100644 --- a/resources/profiles/iQ.json +++ b/resources/profiles/iQ.json @@ -1,6 +1,6 @@ { "name": "innovatiQ", - "version": "02.03.02.70", + "version": "02.04.00.00", "force_update": "1", "description": "innovatiQ configuration", "machine_model_list": [ diff --git a/resources/profiles/re3D.json b/resources/profiles/re3D.json index 6cc1e1ae87..ef664c9ee2 100644 --- a/resources/profiles/re3D.json +++ b/resources/profiles/re3D.json @@ -1,6 +1,6 @@ { "name": "re3D", - "version": "02.01.01.10", + "version": "02.04.00.00", "force_update": "0", "description": "re3D configurations", "machine_model_list": [ From 1388dc5da89cbc22cfcd00bf6cb92f5b68897176 Mon Sep 17 00:00:00 2001 From: Ioannis Giannakas <59056762+igiannakas@users.noreply.github.com> Date: Fri, 22 May 2026 10:46:00 +0100 Subject: [PATCH 23/30] Reduce Spiral Z generation segment density (#12564) --- src/libslic3r/GCodeWriter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/GCodeWriter.cpp b/src/libslic3r/GCodeWriter.cpp index 3029f1f89c..417a35b2ee 100644 --- a/src/libslic3r/GCodeWriter.cpp +++ b/src/libslic3r/GCodeWriter.cpp @@ -864,10 +864,10 @@ std::string GCodeWriter::_spiral_travel_to_z(double z, const Vec2d &ij_offset, c // Determine number of segments based on Resolution // -------------------------------------------------------------------- const double ref_resolution = 0.01; // reference resolution in mm - const double ref_segments = 16.0; // reference number of segments at reference resolution + const double ref_segments = 8.0; // reference number of segments at reference resolution - // number of linear segments to use for approximating the arc, clamp between 4 and 24 - const int segments = std::clamp(int(std::round(ref_segments * (ref_resolution / m_resolution))), 4, 24); + // number of linear segments to use for approximating the arc, clamp between 4 and 16 + const int segments = std::clamp(int(std::round(ref_segments * (ref_resolution / m_resolution))), 4, 16); // -------------------------------------------------------------------- const double px = m_pos(0) - m_x_offset; // take plate offset into consideration From 3d250dc52c09202c76df1e3da7900c3201ccaca2 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 22 May 2026 19:02:49 +0800 Subject: [PATCH 24/30] Fix crash for preset sync during startup (#13797) --- src/libslic3r/PresetBundle.cpp | 29 +++++++++++++++--- src/slic3r/GUI/GUI_App.cpp | 24 ++++++++------- .../libslic3r/test_preset_bundle_loading.cpp | 30 +++++++++++++++++++ 3 files changed, 69 insertions(+), 14 deletions(-) diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index f14f1eb0a1..5e0ab15849 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -606,13 +606,24 @@ VendorType PresetBundle::get_current_vendor_type() { auto t = VendorType::Unknown; auto config = &printers.get_edited_preset().config; + const auto* printer_model = config->opt("printer_model"); + if (printer_model == nullptr) { + BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ << ": printer_model is " + << (config->has("printer_model") ? "not a string" : "missing") + << ", vendor type is Unknown"; + return t; + } + std::string vendor_name; - for (auto vendor_profile : vendors) { - for (auto vendor_model : vendor_profile.second.models) - if (vendor_model.name == config->opt_string("printer_model")) { + for (const auto& vendor_profile : vendors) { + for (const auto& vendor_model : vendor_profile.second.models) { + if (vendor_model.name == printer_model->value) { vendor_name = vendor_profile.first; break; } + } + if (!vendor_name.empty()) + break; } if (!vendor_name.empty()) { @@ -3779,7 +3790,17 @@ int PresetBundle::get_printer_extruder_count() const { const Preset& printer_preset = this->printers.get_edited_preset(); - int count = printer_preset.config.option("nozzle_diameter")->values.size(); + const auto* nozzle_diameter = printer_preset.config.option("nozzle_diameter"); + if (nozzle_diameter == nullptr) { + BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ << ": nozzle_diameter is missing, using 1 extruder"; + return 1; + } + if (nozzle_diameter->values.empty()) { + BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ << ": nozzle_diameter is empty, using 1 extruder"; + return 1; + } + + int count = int(nozzle_diameter->values.size()); return count; } diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index d9172510b6..6b30dfa9cd 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -5851,16 +5851,20 @@ void GUI_App::reload_settings() return; } BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << __LINE__ << " cloud user preset number is: " << user_presets.size(); - // Check the user presets for any system vendors that need to be installed - for (auto data : user_presets) { - if (!check_preset_parent_available(data)) - add_pending_vendor_preset(data); - } - load_pending_vendors(); - preset_bundle->load_user_presets(*app_config, user_presets, ForwardCompatibilitySubstitutionRule::Enable); - preset_bundle->save_user_presets(*app_config, get_delete_cache_presets()); - // Orca: settings changed, refresh ui to reflect the new preset values - auto refresh_synced_ui = [this] { + auto refresh_synced_ui = [this, user_presets = std::move(user_presets)]() mutable { + if (is_closing() || !preset_bundle || !app_config || !mainframe) + return; + + // Check the user presets for any system vendors that need to be installed + for (auto data : user_presets) { + if (!check_preset_parent_available(data)) + add_pending_vendor_preset(data); + } + load_pending_vendors(); + preset_bundle->load_user_presets(*app_config, user_presets, ForwardCompatibilitySubstitutionRule::Enable); + preset_bundle->save_user_presets(*app_config, get_delete_cache_presets()); + + // Orca: settings changed, refresh ui to reflect the new preset values mainframe->update_side_preset_ui(); for (auto tab : tabs_list) { tab->reload_config(); diff --git a/tests/libslic3r/test_preset_bundle_loading.cpp b/tests/libslic3r/test_preset_bundle_loading.cpp index a00e8f9a63..e2bf930767 100644 --- a/tests/libslic3r/test_preset_bundle_loading.cpp +++ b/tests/libslic3r/test_preset_bundle_loading.cpp @@ -100,3 +100,33 @@ TEST_CASE("Legacy bundle import without bundle metadata stays in the user preset CHECK(fs::equivalent(fs::path(imported->file).parent_path().parent_path(), user_root / PRESET_PRINT_NAME)); } +TEST_CASE("Current vendor type tolerates missing printer model", "[Preset][Bundle]") +{ + PresetBundle bundle; + + VendorProfile orca_vendor("ORCA"); + VendorProfile::PrinterModel model; + model.name = "Orca Test"; + orca_vendor.models.emplace_back(model); + bundle.vendors.emplace("ORCA", std::move(orca_vendor)); + + bundle.printers.get_edited_preset().config.erase("printer_model"); + + CHECK(bundle.get_current_vendor_type() == VendorType::Unknown); +} + +TEST_CASE("Printer extruder count tolerates missing nozzle diameter", "[Preset][Bundle]") +{ + PresetBundle bundle; + DynamicPrintConfig& config = bundle.printers.get_edited_preset().config; + + config.erase("nozzle_diameter"); + CHECK(bundle.get_printer_extruder_count() == 1); + + config.set_key_value("nozzle_diameter", new ConfigOptionFloats()); + CHECK(bundle.get_printer_extruder_count() == 1); + + config.set_key_value("nozzle_diameter", new ConfigOptionFloats({ 0.4, 0.6 })); + CHECK(bundle.get_printer_extruder_count() == 2); +} + From 19ada707da7824d7f2a57dfd78577e5343766437 Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Fri, 22 May 2026 19:03:20 +0800 Subject: [PATCH 25/30] fix: 409 sync push on app start (#13796) revert prev commits --- src/libslic3r/Preset.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index ade6f42c29..62d44be8e3 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -581,14 +581,6 @@ void Preset::load_info(const std::string& file) catch (...) { return; } - - //TODO: workaround for current info file convert, will remove it later - if (this->updated_time == 0) { - this->updated_time = (long long)Slic3r::Utils::get_current_time_utc(); - //this->sync_info = "update"; - BOOST_LOG_TRIVIAL(info) << boost::format("old info file, updated time to %1%") % this->updated_time; - save_info(); - } } void Preset::save_info(std::string file) From def47f895901677477fcd57d3153e97c05dac6ca Mon Sep 17 00:00:00 2001 From: yw4z Date: Fri, 22 May 2026 14:04:03 +0300 Subject: [PATCH 26/30] Mode button fixes / improvements (#13795) * init * update thumb color --- src/slic3r/GUI/ParamsPanel.cpp | 8 ++ src/slic3r/GUI/Tab.hpp | 2 +- src/slic3r/GUI/Widgets/StateColor.cpp | 3 +- src/slic3r/GUI/Widgets/SwitchButton.cpp | 135 +++++++++++++++--------- src/slic3r/GUI/Widgets/SwitchButton.hpp | 6 ++ 5 files changed, 101 insertions(+), 53 deletions(-) diff --git a/src/slic3r/GUI/ParamsPanel.cpp b/src/slic3r/GUI/ParamsPanel.cpp index c694f8647f..d612b56298 100644 --- a/src/slic3r/GUI/ParamsPanel.cpp +++ b/src/slic3r/GUI/ParamsPanel.cpp @@ -664,6 +664,14 @@ void ParamsPanel::update_mode() sync_mode_view(m_mode_view); sync_mode_view(m_current_tab ? dynamic_cast(m_current_tab)->m_mode_view : nullptr); + + auto sync_mode_icon = [&](ScalableButton* mode_icon) { + if (mode_icon == nullptr) + return; + mode_icon->Show(app_mode != comDevelop); + }; + sync_mode_icon(m_mode_icon); + sync_mode_icon(m_current_tab ? dynamic_cast(m_current_tab)->m_mode_icon : nullptr); } void ParamsPanel::msw_rescale() diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp index ec9cfb2db3..e654f6c43b 100644 --- a/src/slic3r/GUI/Tab.hpp +++ b/src/slic3r/GUI/Tab.hpp @@ -146,7 +146,6 @@ protected: //BBS: GUI refactor wxPanel* m_top_panel; - ScalableButton* m_mode_icon; // ORCA m_static_title replacement wxBoxSizer* m_main_sizer; wxBoxSizer* m_top_sizer; wxBoxSizer* m_top_left_sizer; @@ -307,6 +306,7 @@ public: int m_update_cnt = 0; ModeSwitchButton *m_mode_view = nullptr; + ScalableButton* m_mode_icon = nullptr; // ORCA m_static_title replacement SwitchButton *m_extruder_switch = nullptr; MultiSwitchButton *m_variant_combo = nullptr; diff --git a/src/slic3r/GUI/Widgets/StateColor.cpp b/src/slic3r/GUI/Widgets/StateColor.cpp index d400f53de6..2a9d91f59a 100644 --- a/src/slic3r/GUI/Widgets/StateColor.cpp +++ b/src/slic3r/GUI/Widgets/StateColor.cpp @@ -42,7 +42,8 @@ static std::map gDarkColors{ {"#D7E8DE", "#1F2B27"}, // rgb(215, 232, 222) Not Used anymore // Leftover from BBS {"#2B3436", "#808080"}, // rgb(43, 52, 54) Not Used anymore // Leftover from BBS. Was used as main fill color of icons {"#ABABAB", "#ABABAB"}, - {"#D9D9D9", "#2D2D32"}, // rgb(217, 217, 217) Sidebar > Toggle button track color + {"#D9D9D9", "#27272A"}, // rgb(217, 217, 217) Sidebar > Toggle button track color + {"#FFFEFE", "#D9D9D9"}, // rgb(255, 254, 254) Sidebar > Toggle button thumb color {"#EBF9F0", "#293F34"}, //{"#F0F0F0", "#4C4C54"}, // ORCA diff --git a/src/slic3r/GUI/Widgets/SwitchButton.cpp b/src/slic3r/GUI/Widgets/SwitchButton.cpp index 0ff70d4a77..60c9344077 100644 --- a/src/slic3r/GUI/Widgets/SwitchButton.cpp +++ b/src/slic3r/GUI/Widgets/SwitchButton.cpp @@ -220,14 +220,40 @@ void SwitchButton::update() ModeSwitchButton::ModeSwitchButton(wxWindow* parent, wxWindowID id) { background_color = StateColor( - std::make_pair(wxColour(0xF1, 0xF1, 0xF1), (int) StateColor::Disabled), - std::make_pair(wxColour(0xE3, 0xE3, 0xE3), (int) StateColor::Pressed), - std::make_pair(wxColour(0xD9, 0xD9, 0xD9), (int) StateColor::Normal)); + std::make_pair(wxColour("#D9D9D9"), (int) StateColor::Disabled), + std::make_pair(wxColour("#D9D9D9"), (int) StateColor::Normal) + ); border_color = StateColor( - std::make_pair(wxColour(0xEA, 0xEA, 0xEA), (int) StateColor::Disabled), - std::make_pair(wxColour(0xBC, 0xBC, 0xBC), (int) StateColor::Hovered), - std::make_pair(wxColour(0xC8, 0xC8, 0xC8), (int) StateColor::Focused), - std::make_pair(wxColour(0xCE, 0xCE, 0xCE), (int) StateColor::Normal)); + std::make_pair(wxColour("#D9D9D9"), (int) StateColor::Disabled), + std::make_pair(wxColour("#D9D9D9"), (int) StateColor::Hovered | ~StateColor::Focused), + std::make_pair(wxColour("#26A69A"), (int) StateColor::Focused), + std::make_pair(wxColour("#D9D9D9"), (int) StateColor::Normal) + ); + track_background = StateColor( + std::make_pair(wxColour("#009688"), (int) StateColor::Disabled), + std::make_pair(wxColour("#009688"), (int) StateColor::Normal) + ); + track_border = StateColor( + std::make_pair(wxColour("#D9D9D9"), (int) StateColor::Disabled), + std::make_pair(wxColour("#009688"), (int) StateColor::Hovered | ~StateColor::Focused), + std::make_pair(wxColour("#26A69A"), (int) StateColor::Focused), + std::make_pair(wxColour("#009688"), (int) StateColor::Normal) + ); + dot_active = StateColor( + std::make_pair(wxColour("#FFFEFE"), (int) StateColor::Disabled), + std::make_pair(wxColour("#FFFEFE"), (int) StateColor::Normal) + ); + dot_dimmed = StateColor( + std::make_pair(wxColour("#EEEEEE"), (int) StateColor::Disabled), + std::make_pair(wxColour("#EEEEEE"), (int) StateColor::Normal) + ); + text_color = StateColor( + std::make_pair(wxColour("#6B6B6B"), (int) StateColor::Disabled), + std::make_pair(wxColour("#6B6B6B"), (int) StateColor::Normal) + ); + + state_handler.attach(std::vector{&dot_active, &dot_dimmed, &text_color}); + state_handler.update_binds(); StaticBox::Create(parent, id, wxDefaultPosition, wxDefaultSize, 0); SetBackgroundColour(StaticBox::GetParentBackgroundColor(parent)); @@ -263,7 +289,7 @@ void ModeSwitchButton::SelectAndNotify(int selection) void ModeSwitchButton::Rescale() { - const wxSize button_size = FromDIP(wxSize(48, 20)); + const wxSize button_size = FromDIP(wxSize(48, 18)); SetMinSize(button_size); SetMaxSize(button_size); SetSize(button_size); @@ -274,63 +300,70 @@ void ModeSwitchButton::Rescale() bool ModeSwitchButton::Enable(bool enable /* = true */) { const bool changed = StaticBox::Enable(enable); - if (changed) + if (changed){ + wxCommandEvent e(EVT_ENABLE_CHANGED); + e.SetEventObject(this); + GetEventHandler()->ProcessEvent(e); + m_enabled = enable; // IsEnabled() not works because variable changes after paint event Refresh(); + } return changed; } void ModeSwitchButton::doRender(wxDC& dc) { - dc.SetPen(*wxTRANSPARENT_PEN); - dc.SetBrush(wxBrush(GetBackgroundColour())); - dc.DrawRectangle(GetClientRect()); - - const wxRect bounds = GetClientRect().Deflate(1); + const wxRect bounds = GetClientRect(); if (bounds.width <= 0 || bounds.height <= 0) return; - const int states = state_handler.states(); - const bool hovered = (states & StateHandler::Hovered) != 0; - const bool focused = (states & StateHandler::Focused) != 0; - const bool disabled = !IsEnabled(); - - const wxColour track_fill = disabled ? wxColour(0xD0, 0xD0, 0xD4) : - m_pressed ? wxColour(0x5A, 0x5D, 0x64) : wxColour(0x66, 0x69, 0x70); - const wxColour track_border = disabled ? wxColour(0xDD, 0xDD, 0xE0) : - focused ? wxColour("#009688") : - hovered ? wxColour(0x7A, 0x7D, 0x84) : wxColour(0x75, 0x78, 0x7F); - const wxColour active_fill = disabled ? wxColour(0x9E, 0xBE, 0xB9) : - m_pressed ? wxColour(0x00877B) : wxColour("#009688"); - const wxColour active_dot = disabled ? wxColour(0xEC, 0xF4, 0xF2) : wxColour(0xB7, 0xEB, 0xE3); - const wxColour inactive_dot = disabled ? wxColour(0xF2, 0xF2, 0xF4) : wxColour(0xB5, 0xB7, 0xBD); - const wxColour thumb_fill = disabled ? wxColour(0xFA, 0xFA, 0xFA) : *wxWHITE; - const wxColour thumb_border = disabled ? wxColour(0xE7, 0xE7, 0xEA) : wxColour(0xDD, 0xDF, 0xE3); - - dc.SetPen(wxPen(track_border, 1)); - dc.SetBrush(wxBrush(track_fill)); - dc.DrawRoundedRectangle(bounds, bounds.height / 2.0); - - const wxRect thumb = thumb_rect_for(m_selection); - const int fill_right = std::min(bounds.GetRight(), thumb.GetX() + thumb.GetWidth() / 2 + FromDIP(2)); - wxRect active(bounds.x, bounds.y, fill_right - bounds.x + 1, bounds.height); dc.SetPen(*wxTRANSPARENT_PEN); - dc.SetBrush(wxBrush(active_fill)); - dc.DrawRoundedRectangle(active, bounds.height / 2.0); + dc.SetBrush(wxBrush(GetBackgroundColour())); + dc.DrawRectangle(bounds); - const int dot_radius = std::max(FromDIP(1), thumb.height / 7); - for (int idx = 0; idx < 3; ++idx) { - if (idx == m_selection) - continue; + int states = state_handler.states(); + double v_center = bounds.height / 2.0; - const wxRect slot = thumb_rect_for(idx); - const wxPoint center(slot.GetX() + slot.GetWidth() / 2, slot.GetY() + slot.GetHeight() / 2); - dc.SetBrush(wxBrush(idx < m_selection ? active_dot : inactive_dot)); - dc.DrawCircle(center, dot_radius); + // Background + dc.SetPen(wxPen(border_color.colorForStates(states), 1)); + dc.SetBrush(wxBrush(background_color.colorForStates(states))); + dc.DrawRoundedRectangle(bounds, v_center); + + if (m_enabled) { + double dot_dist = (bounds.width - bounds.height) * 0.50; + + // Track + dc.SetPen(wxPen(track_border.colorForStates(states), 1)); + dc.SetBrush(wxBrush(track_background.colorForStates(states))); + wxRect track_rc = bounds; + track_rc.width = int(v_center * 2.0 + dot_dist * m_selection); + dc.DrawRoundedRectangle(track_rc, v_center); + + // Dots + dc.SetPen(*wxTRANSPARENT_PEN); + for (int idx = 0; idx < 3; ++idx) { + dc.SetBrush(wxBrush((idx <= m_selection ? dot_active : dot_dimmed).colorForStates(states))); + dc.DrawCircle(wxPoint(v_center + dot_dist * idx, v_center), track_rc.height * (double)(idx == m_selection ? 0.32 : 0.16)); + } } + else { // Developer mode + wxString str = "DEV"; + int kerning = 3; // pixels between chars + dc.SetTextForeground(text_color.colorForStates(states)); - dc.SetPen(wxPen(thumb_border, 1)); - dc.SetBrush(wxBrush(thumb_fill)); - dc.DrawRoundedRectangle(thumb, thumb.height / 2.0); + wxCoord totalWidth = 0; + for (char c : str) + totalWidth += dc.GetTextExtent(wxString(c)).x + kerning; + totalWidth -= kerning; + + wxCoord x = bounds.x + (bounds.width - totalWidth) / 2; + wxCoord y = bounds.y + (bounds.height - dc.GetTextExtent(str).y) / 2 - 1; + + for (char c : str) { + wxString ch(c); + dc.DrawText(ch, x, y); + x += dc.GetTextExtent(ch).x + kerning; + } + } } void ModeSwitchButton::mouseDown(wxMouseEvent& event) diff --git a/src/slic3r/GUI/Widgets/SwitchButton.hpp b/src/slic3r/GUI/Widgets/SwitchButton.hpp index 301287460a..0884fa64aa 100644 --- a/src/slic3r/GUI/Widgets/SwitchButton.hpp +++ b/src/slic3r/GUI/Widgets/SwitchButton.hpp @@ -78,7 +78,13 @@ private: private: int m_selection { 0 }; bool m_pressed { false }; + bool m_enabled { true }; wxString m_tooltips[3]; + StateColor dot_active; + StateColor dot_dimmed; + StateColor text_color; + StateColor track_background; + StateColor track_border; }; class MultiSwitchButton : public StaticBox From 464ca4c7656b6a1cb787f3142e715ea22afa2da0 Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Fri, 22 May 2026 19:05:28 +0800 Subject: [PATCH 27/30] fix: detached presets not showing up (#13793) * fix: detached presets not showing up * slightly better code clarity * remove cloud_prefix --- src/libslic3r/Preset.cpp | 54 ++++++++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 21 deletions(-) diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 62d44be8e3..cd58e90e97 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -2178,19 +2178,29 @@ bool PresetCollection::load_user_preset(std::string name, std::mapsecond; + } else { + const auto inherits_iter = preset_values.find(BBL_JSON_KEY_INHERITS); + const bool preset_inherits_from_parent = inherits_iter != preset_values.end() && !inherits_iter->second.empty(); + if (preset_inherits_from_parent) { + // This indicates that there is inherits exists but there is no base_id + BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ + << boost::format("can not find base_id, not loading for user preset %1%") % canonical_name; + unlock(); + return false; + } } - std::string cloud_base_id = preset_values[BBL_JSON_KEY_BASE_ID]; //filament_id std::string cloud_filament_id; if ((m_type == Preset::TYPE_FILAMENT) && preset_values.find(BBL_JSON_KEY_FILAMENT_ID) != preset_values.end()) { cloud_filament_id = preset_values[BBL_JSON_KEY_FILAMENT_ID]; - BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << " " << canonical_name << " filament_id: " << cloud_filament_id << " base_id: " << cloud_base_id; + BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << " " << canonical_name << " filament_id: " << cloud_filament_id << " base_id: " << based_id; } DynamicPrintConfig new_config, cloud_config; @@ -2263,7 +2273,7 @@ bool PresetCollection::load_user_preset(std::string name, std::mapversion = cloud_version.value(); iter->user_id = cloud_user_id; iter->setting_id = cloud_setting_id; - iter->base_id = cloud_base_id; + iter->base_id = based_id; iter->filament_id = cloud_filament_id; update_alias(*iter); //presets_loaded.emplace_back(*it->second); @@ -2282,7 +2292,7 @@ bool PresetCollection::load_user_preset(std::string name, std::map(BBL_JSON_KEY_INHERITS)->value.empty()) { - if (alias_name.empty()) { - size_t end_pos = preset_name.find_first_of("@"); - if (end_pos != std::string::npos) { - alias_name = preset_name.substr(0, end_pos); - boost::trim_right(alias_name); - } + std::string bare_preset_name = get_preset_bare_name(preset.name); + std::string alias_name = bare_preset_name; + + const bool is_root_filament_preset = + m_type == Preset::Type::TYPE_FILAMENT && + preset.config.has(BBL_JSON_KEY_INHERITS) && + preset.config.option(BBL_JSON_KEY_INHERITS)->value.empty(); + if (is_root_filament_preset) { + const size_t suffix_separator_pos = bare_preset_name.find_first_of("@"); + if (suffix_separator_pos != std::string::npos) { + alias_name = bare_preset_name.substr(0, suffix_separator_pos); + boost::trim_right(alias_name); + if (alias_name.empty()) + alias_name = bare_preset_name; } } - else { - alias_name = preset_name; - } preset.alias = std::move(alias_name); m_map_alias_to_profile_name[preset.alias].push_back(preset.name); From ffde56ccbae3531278e4287cabfd6529885b3274 Mon Sep 17 00:00:00 2001 From: Zuhaib Siddique Date: Fri, 22 May 2026 07:18:53 -0700 Subject: [PATCH 28/30] Ignore SIGPIPE at startup to prevent crashes on dropped printer connections (#13788) Ignore SIGPIPE at startup to prevent crash on dropped printer connection Writing to a closed printer network socket raised SIGPIPE, whose default action terminated the whole process (exit 141, no crash report). Set SIGPIPE to SIG_IGN once at main() entry (POSIX only) so such writes return EPIPE to the existing networking error handling instead of killing the app. Fixes #13787 --- src/OrcaSlicer.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/OrcaSlicer.cpp b/src/OrcaSlicer.cpp index 880eaffa4b..7107e1ba1e 100644 --- a/src/OrcaSlicer.cpp +++ b/src/OrcaSlicer.cpp @@ -23,6 +23,7 @@ #include #include #include +#include #if defined(__linux__) || defined(__LINUX__) #include @@ -7459,6 +7460,13 @@ extern "C" { #else /* _MSC_VER */ int main(int argc, char **argv) { +#ifndef _WIN32 + // Ignore SIGPIPE so a write to a closed socket (e.g. a dropped printer + // network connection) returns EPIPE to the caller instead of terminating + // the whole process. Without this, losing the printer link kills + // OrcaSlicer with SIGPIPE (exit 141) and produces no crash report. + std::signal(SIGPIPE, SIG_IGN); +#endif return CLI().run(argc, argv); } #endif /* _MSC_VER */ From 6f6fc6ddfe4bb7fe2af2bf42c3a1488f9fab49da Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 22 May 2026 23:52:00 +0800 Subject: [PATCH 29/30] Fixes a possible null dereference in DeviceManager::check_pushing() when the selected machine is missing or stale during timer refresh. (#13802) * Fix selected-machine null deref in device pushing check --- src/slic3r/GUI/DeviceCore/DevManager.cpp | 40 ++++++++++++++++++------ 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/src/slic3r/GUI/DeviceCore/DevManager.cpp b/src/slic3r/GUI/DeviceCore/DevManager.cpp index 0e197a236b..63311b99af 100644 --- a/src/slic3r/GUI/DeviceCore/DevManager.cpp +++ b/src/slic3r/GUI/DeviceCore/DevManager.cpp @@ -1,4 +1,7 @@ #include + +#include + #include "DevManager.h" #include "DevUtil.h" @@ -151,11 +154,15 @@ namespace Slic3r { keep_alive(); MachineObject* obj = this->get_selected_machine(); + if (!obj) { + BOOST_LOG_TRIVIAL(warning) << "DeviceManager::check_pushing selected machine not found"; + return; + } std::chrono::system_clock::time_point start = std::chrono::system_clock::now(); auto internal = std::chrono::duration_cast(start - obj->last_update_time); - if (obj && !obj->is_support_mqtt_alive) + if (!obj->is_support_mqtt_alive) { if (internal.count() > TIMEOUT_FOR_STRAT && internal.count() < 1000 * 60 * 60 * 300) { @@ -916,18 +923,33 @@ namespace Slic3r const auto cloud_provider = Slic3r::GUI::wxGetApp().get_printer_cloud_provider(); if (Slic3r::GUI::wxGetApp().is_user_login(cloud_provider)) { - m_manager->check_pushing(); - try - { - agent->refresh_connection(cloud_provider); + try { + m_manager->check_pushing(); + } catch (const std::exception& e) { + BOOST_LOG_TRIVIAL(error) << "DeviceManagerRefresher::on_timer check_pushing exception=" + << e.what(); + } catch (...) { + BOOST_LOG_TRIVIAL(error) << "DeviceManagerRefresher::on_timer check_pushing unknown exception"; } - catch (...) - { - ; + + try { + agent->refresh_connection(cloud_provider); + } catch (const std::exception& e) { + BOOST_LOG_TRIVIAL(error) << "DeviceManagerRefresher::on_timer refresh_connection exception=" + << e.what(); + } catch (...) { + BOOST_LOG_TRIVIAL(error) << "DeviceManagerRefresher::on_timer refresh_connection unknown exception"; } } // certificate - agent->install_device_cert(obj->get_dev_id(), obj->is_lan_mode_printer()); + try { + agent->install_device_cert(obj->get_dev_id(), obj->is_lan_mode_printer()); + } catch (const std::exception& e) { + BOOST_LOG_TRIVIAL(error) << "DeviceManagerRefresher::on_timer install_device_cert exception=" + << e.what(); + } catch (...) { + BOOST_LOG_TRIVIAL(error) << "DeviceManagerRefresher::on_timer install_device_cert unknown exception"; + } } } From f717b46435988fe1af76003030da7ae79ec3c791 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 22 May 2026 23:52:36 +0800 Subject: [PATCH 30/30] Feature/update flatpak 2.4 (#13799) * update flatpak to reflect recent deps changes as well as upgrade runtime to 50 * support building from worktree --- .github/workflows/build_all.yml | 2 +- build_flatpak.sh | 16 ++++++++-------- scripts/build_flatpak_with_docker.sh | 16 +++++++++++++--- .../com.orcaslicer.OrcaSlicer.metainfo.xml | 6 ++++++ scripts/flatpak/com.orcaslicer.OrcaSlicer.yml | 4 +++- scripts/flatpak/setup_env_ubuntu24.04.sh | 2 +- 6 files changed, 32 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index ee325b7ef7..79ffafa0f1 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -142,7 +142,7 @@ jobs: flatpak: name: "Flatpak" container: - image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-49 + image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-50 options: --privileged volumes: - /usr/local/lib/android:/usr/local/lib/android diff --git a/build_flatpak.sh b/build_flatpak.sh index 0dd07041be..b805bb3422 100755 --- a/build_flatpak.sh +++ b/build_flatpak.sh @@ -199,22 +199,22 @@ echo -e "${GREEN}All required dependencies found${NC}" # Install runtime and SDK if requested if [[ "$INSTALL_RUNTIME" == true ]]; then echo -e "${YELLOW}Installing GNOME runtime and SDK...${NC}" - flatpak install --user -y flathub org.gnome.Platform//49 - flatpak install --user -y flathub org.gnome.Sdk//49 + flatpak install --user -y flathub org.gnome.Platform//50 + flatpak install --user -y flathub org.gnome.Sdk//50 fi # Check if required runtime is available -if ! flatpak info --user org.gnome.Platform//49 &> /dev/null; then - echo -e "${RED}Error: GNOME Platform 49 runtime is not installed.${NC}" +if ! flatpak info --user org.gnome.Platform//50 &> /dev/null; then + echo -e "${RED}Error: GNOME Platform 50 runtime is not installed.${NC}" echo "Run with -i flag to install it automatically, or install manually:" - echo "flatpak install --user flathub org.gnome.Platform//49" + echo "flatpak install --user flathub org.gnome.Platform//50" exit 1 fi -if ! flatpak info --user org.gnome.Sdk//49 &> /dev/null; then - echo -e "${RED}Error: GNOME SDK 49 is not installed.${NC}" +if ! flatpak info --user org.gnome.Sdk//50 &> /dev/null; then + echo -e "${RED}Error: GNOME SDK 50 is not installed.${NC}" echo "Run with -i flag to install it automatically, or install manually:" - echo "flatpak install --user flathub org.gnome.Sdk//49" + echo "flatpak install --user flathub org.gnome.Sdk//50" exit 1 fi diff --git a/scripts/build_flatpak_with_docker.sh b/scripts/build_flatpak_with_docker.sh index 898ec2c56a..16dfdbb955 100755 --- a/scripts/build_flatpak_with_docker.sh +++ b/scripts/build_flatpak_with_docker.sh @@ -22,7 +22,7 @@ ARCH="$(uname -m)" NO_DEBUG_INFO=false FORCE_PULL=false FORCE_CLEAN=true -CONTAINER_IMAGE="ghcr.io/flathub-infra/flatpak-github-actions:gnome-49" +CONTAINER_IMAGE="ghcr.io/flathub-infra/flatpak-github-actions:gnome-50" normalize_arch() { case "$1" in @@ -142,6 +142,16 @@ fi DOCKER_RUN_ARGS=(run --rm -i --privileged) +# When building from a git worktree, $PROJECT_ROOT/.git is a file pointing to the +# main repo's git dir (outside $PROJECT_ROOT). The git commands and flatpak-builder +# inside the container need that path to resolve, so bind-mount the common git dir +# read-only at its original absolute path. No-op for a normal clone. +GIT_COMMON_DIR="$(git -C "$PROJECT_ROOT" rev-parse --path-format=absolute --git-common-dir 2>/dev/null || true)" +if [ -n "$GIT_COMMON_DIR" ] && [ "$GIT_COMMON_DIR" != "$PROJECT_ROOT/.git" ]; then + echo " Git worktree detected; mounting common git dir read-only: $GIT_COMMON_DIR" + DOCKER_RUN_ARGS+=(-v "$GIT_COMMON_DIR":"$GIT_COMMON_DIR":ro) +fi + # Pass build parameters as env vars so the inner script doesn't need # variable expansion from the outer shell (avoids quoting issues). echo "=== Starting Flatpak build inside container ===" @@ -175,8 +185,8 @@ git config --global --add safe.directory '/src/.flatpak-builder/git/*' # Install required SDK extensions (not pre-installed in the container image) flatpak install -y --noninteractive --arch="$BUILD_ARCH" flathub \ - org.gnome.Platform//49 \ - org.gnome.Sdk//49 \ + org.gnome.Platform//50 \ + org.gnome.Sdk//50 \ org.freedesktop.Sdk.Extension.llvm21//25.08 || true install_end=$(date +%s) diff --git a/scripts/flatpak/com.orcaslicer.OrcaSlicer.metainfo.xml b/scripts/flatpak/com.orcaslicer.OrcaSlicer.metainfo.xml index 8436a478cc..9ec11fa930 100644 --- a/scripts/flatpak/com.orcaslicer.OrcaSlicer.metainfo.xml +++ b/scripts/flatpak/com.orcaslicer.OrcaSlicer.metainfo.xml @@ -45,6 +45,12 @@ #00695C + + https://github.com/OrcaSlicer/OrcaSlicer/releases/tag/nightly-builds + +

See the release page for detailed changelog.

+
+
https://github.com/OrcaSlicer/OrcaSlicer/releases/tag/v2.3.2 diff --git a/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml b/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml index bb42b48607..c8f396217b 100644 --- a/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml +++ b/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml @@ -1,6 +1,6 @@ app-id: com.orcaslicer.OrcaSlicer runtime: org.gnome.Platform -runtime-version: "49" +runtime-version: "50" sdk: org.gnome.Sdk sdk-extensions: - org.freedesktop.Sdk.Extension.llvm21 @@ -115,7 +115,9 @@ modules: - -DwxUSE_ZLIB=sys - -DwxUSE_LIBJPEG=sys - -DwxUSE_LIBTIFF=OFF + - -DwxUSE_LIBWEBP=builtin - -DwxUSE_EXPAT=sys + - -DwxUSE_NANOSVG=OFF - -DCMAKE_EXE_LINKER_FLAGS=-fuse-ld=lld - -DCMAKE_SHARED_LINKER_FLAGS=-fuse-ld=lld - -DCMAKE_MODULE_LINKER_FLAGS=-fuse-ld=lld diff --git a/scripts/flatpak/setup_env_ubuntu24.04.sh b/scripts/flatpak/setup_env_ubuntu24.04.sh index 68bf325497..a0ccbb9b32 100755 --- a/scripts/flatpak/setup_env_ubuntu24.04.sh +++ b/scripts/flatpak/setup_env_ubuntu24.04.sh @@ -3,7 +3,7 @@ sudo apt update sudo apt install build-essential flatpak flatpak-builder gnome-software-plugin-flatpak -y flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo -flatpak install flathub org.gnome.Platform//48 org.gnome.Sdk//48 +flatpak install flathub org.gnome.Platform//50 org.gnome.Sdk//50 org.freedesktop.Sdk.Extension.llvm21//25.08 ##